diff --git a/Rich/Panoptes/CMakeLists.txt b/Rich/Panoptes/CMakeLists.txt index 0f558dd40383691621296492f0fbdacead4f78bb..823594b1d5c5a290155df713c18451ae43f0d0f9 100644 --- a/Rich/Panoptes/CMakeLists.txt +++ b/Rich/Panoptes/CMakeLists.txt @@ -21,6 +21,10 @@ if(NOT USE_DD4HEP) Panoptes.rich_ref_index_calib_2024_data Panoptes.rich_ref_index_calib_2023_data Panoptes.rich_ref_index_calib_2022_data + Panoptes.rich_ref_index_calib_2024_data_trunk_geom + Panoptes.rich_ref_index_calib_2023_data_trunk_geom + Panoptes.rich_ref_index_calib_2022_data_trunk_geom + Panoptes.rich_ref_index_calib_2024_MC_trunk_geom Panoptes.rich_photon_counting_2024_data Panoptes.rich_daq_mon_2024_data Panoptes.rich_daq_mon_2023_data diff --git a/Rich/Panoptes/options/RichRefIndexCalib.py b/Rich/Panoptes/options/RichRefIndexCalib.py index 1a664c9ee56752c5d2a76195003f994337da66b6..46bd3787a689666b976e6d4527c5ba9f54b67153 100644 --- a/Rich/Panoptes/options/RichRefIndexCalib.py +++ b/Rich/Panoptes/options/RichRefIndexCalib.py @@ -91,6 +91,9 @@ min_p = min(minPRads) # runCalAtStop = not isQMTTest runCalAtStop = True +# Enable quadrant fits +QuadFits = "trunk_geom" not in myName + if noUT: from RecoConf.hlt2_tracking import make_hlt2_tracks_without_UT as track_maker else: @@ -104,6 +107,7 @@ with ( RefIndexCalib.bind( OutputLevel=out_level, CreatePDFSummary=not isQMTTest, + EnableQuadrantFits=(QuadFits, QuadFits), OKToPublish=not isQMTTest, RichFitTypes=(ckFitForm, ckFitForm), UseRunningAverage=RunningAv, diff --git a/Rich/Panoptes/tests/options/2022-data.py b/Rich/Panoptes/tests/options/2022-data.py index 2419a57054fd8865e76810a39c8bcf3e7632b41b..198bc132ffb06f65c658ef873add60e1a2641cb2 100644 --- a/Rich/Panoptes/tests/options/2022-data.py +++ b/Rich/Panoptes/tests/options/2022-data.py @@ -18,6 +18,12 @@ jonPath = "/usera/jonesc/NFS/data/RunIII/Hlt2/LHCb/RefIndexCalib/2022/" if os.path.exists(jonPath): options.input_files = [jonPath + "data-{i:04d}.mdf".format(i=i) for i in range(38)] -options.simulation = False options.evt_max = 1000 options.print_freq = 100 + +# Get test name +myName = os.getenv("QMTTEST_NAME", "RichRefIndexCalib") + +# If required force use of trunk geom +if "trunk_geom" in myName: + options.geometry_version = "run3/trunk" diff --git a/Rich/Panoptes/tests/options/2023-data.py b/Rich/Panoptes/tests/options/2023-data.py index 2eeee1e7d4df07e2cb936042d7480d33e8d28c33..ed03e7276f8489b56f18d6b8b132b0f2fa9de2e6 100644 --- a/Rich/Panoptes/tests/options/2023-data.py +++ b/Rich/Panoptes/tests/options/2023-data.py @@ -23,6 +23,12 @@ if os.path.exists(jonPath): jonPath + "data-{i:04d}.mdf".format(i=i) for i in range(10, 107) ] -options.simulation = False options.evt_max = 1000 options.print_freq = 100 + +# Get test name +myName = os.getenv("QMTTEST_NAME", "RichRefIndexCalib") + +# If required force use of trunk geom +if "trunk_geom" in myName: + options.geometry_version = "run3/trunk" diff --git a/Rich/Panoptes/tests/options/2024-data.py b/Rich/Panoptes/tests/options/2024-data.py index 7dca9fe1200edda9a82398063014344dfe92ce37..56e071b686c3fbc10a9443066a6435a1e4088405 100644 --- a/Rich/Panoptes/tests/options/2024-data.py +++ b/Rich/Panoptes/tests/options/2024-data.py @@ -22,10 +22,16 @@ if os.path.exists(jonPath): jonPath + "data-{i:04d}.mdf".format(i=i) for i in range(0, 4) ] -options.simulation = False options.evt_max = 1000 options.print_freq = 100 +# Get test name +myName = os.getenv("QMTTEST_NAME", "RichRefIndexCalib") + +# If required force use of trunk geom +if "trunk_geom" in myName: + options.geometry_version = "run3/trunk" + # Due to issues with hit sorting in FT disable Mat corrections # See for more details https://gitlab.cern.ch/lhcb/Panoptes/-/issues/7 from PyConf.Algorithms import PrStoreSciFiHits diff --git a/Rich/Panoptes/tests/options/2024-mc.py b/Rich/Panoptes/tests/options/2024-mc.py index 8d916906bcdf0c05b20fa925b001e1952d10294f..6b064abb81b5b0cfaad726ad0432483424e62e34 100644 --- a/Rich/Panoptes/tests/options/2024-mc.py +++ b/Rich/Panoptes/tests/options/2024-mc.py @@ -19,3 +19,12 @@ if os.path.exists(jonPath): options.input_files = [ jonPath + "30000000_42604869_{i:08d}.digi".format(i=i) for i in range(0, 80) ] + +# Get test name +myName = os.getenv("QMTTEST_NAME", "RichRefIndexCalib") + +# If required force use of trunk geom +if "trunk_geom" in myName: + options.geometry_version = "run3/trunk" +else: + options.geometry_version = "run3/2024.Q1.2-v00.00" diff --git a/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2022_data_trunk_geom.qmt b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2022_data_trunk_geom.qmt new file mode 100644 index 0000000000000000000000000000000000000000..206752e19261cd29aa5c3b9346853e286b391cf0 --- /dev/null +++ b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2022_data_trunk_geom.qmt @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<!-- + (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration + + This software is distributed under the terms of the GNU General Public + Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". + + In applying this licence, CERN does not waive the privileges and immunities + granted to it by virtue of its status as an Intergovernmental Organization + or submit itself to any jurisdiction. +--> +<!-- +Run RICH refractive index calibration task +--> +<extension class="GaudiTest.GaudiExeTest" kind="test"> +<argument name="program"><text>gaudirun.py</text></argument> +<argument name="use_temp_dir"><enumeral>true</enumeral></argument> +<argument name="timeout"><integer>1800</integer></argument> +<argument name="args"><set> + <text>$PANOPTESROOT/tests/options/2022-data.py</text> + <text>$PANOPTESROOT/options/RequiredDets.py</text> + <text>$PANOPTESROOT/options/Tracking.py</text> + <text>$PANOPTESROOT/options/RichRefIndexCalib.py</text> +</set></argument> +<argument name="reference"><text>../refs/rich_ref_index_calib_2022_data_trunk_geom.ref</text></argument> +<argument name="error_reference"><text>../refs/empty.ref</text></argument> +<argument name="validator"><text> + +from Panoptes.qmtest.exclusions import ref_preprocessor +validateWithReference(preproc = ref_preprocessor) + +from Panoptes.qmtest.exclusions import remove_known_warnings +countErrorLines({"FATAL": 0, "ERROR": 0, "WARNING": 0}, + stdout=remove_known_warnings(stdout)) + +</text></argument> +</extension> diff --git a/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2023_data_trunk_geom.qmt b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2023_data_trunk_geom.qmt new file mode 100644 index 0000000000000000000000000000000000000000..9b9fc4074c0b52e7248311a7a3f1c3255fd99300 --- /dev/null +++ b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2023_data_trunk_geom.qmt @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<!-- + (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration + + This software is distributed under the terms of the GNU General Public + Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". + + In applying this licence, CERN does not waive the privileges and immunities + granted to it by virtue of its status as an Intergovernmental Organization + or submit itself to any jurisdiction. +--> +<!-- +Run RICH refractive index calibration task +--> +<extension class="GaudiTest.GaudiExeTest" kind="test"> +<argument name="program"><text>gaudirun.py</text></argument> +<argument name="use_temp_dir"><enumeral>true</enumeral></argument> +<argument name="timeout"><integer>1800</integer></argument> +<argument name="args"><set> + <text>$PANOPTESROOT/tests/options/2023-data.py</text> + <text>$PANOPTESROOT/options/RequiredDets.py</text> + <text>$PANOPTESROOT/options/Tracking.py</text> + <text>$PANOPTESROOT/options/RichRefIndexCalib.py</text> +</set></argument> +<argument name="reference"><text>../refs/rich_ref_index_calib_2023_data_trunk_geom.ref</text></argument> +<argument name="error_reference"><text>../refs/empty.ref</text></argument> +<argument name="validator"><text> + +from Panoptes.qmtest.exclusions import ref_preprocessor +validateWithReference(preproc = ref_preprocessor) + +from Panoptes.qmtest.exclusions import remove_known_warnings +countErrorLines({"FATAL": 0, "ERROR": 0, "WARNING": 0}, + stdout=remove_known_warnings(stdout)) + +</text></argument> +</extension> diff --git a/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_MC_trunk_geom.qmt b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_MC_trunk_geom.qmt new file mode 100644 index 0000000000000000000000000000000000000000..e00f4e4b0020a015cbd479878e5f2ff201413d7c --- /dev/null +++ b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_MC_trunk_geom.qmt @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<!-- + (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration + + This software is distributed under the terms of the GNU General Public + Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". + + In applying this licence, CERN does not waive the privileges and immunities + granted to it by virtue of its status as an Intergovernmental Organization + or submit itself to any jurisdiction. +--> +<!-- +Run RICH refractive index calibration task +--> +<extension class="GaudiTest.GaudiExeTest" kind="test"> +<argument name="program"><text>gaudirun.py</text></argument> +<argument name="use_temp_dir"><enumeral>true</enumeral></argument> +<argument name="timeout"><integer>1800</integer></argument> +<argument name="args"><set> + <text>$PANOPTESROOT/tests/options/2024-mc.py</text> + <text>$PANOPTESROOT/options/RequiredDets.py</text> + <text>$PANOPTESROOT/options/Tracking.py</text> + <text>$PANOPTESROOT/options/RichRefIndexCalib.py</text> +</set></argument> +<argument name="reference"><text>../refs/rich_ref_index_calib_2024_MC_trunk_geom.ref</text></argument> +<argument name="error_reference"><text>../refs/empty.ref</text></argument> +<argument name="validator"><text> + +from Panoptes.qmtest.exclusions import ref_preprocessor +validateWithReference(preproc = ref_preprocessor) + +from Panoptes.qmtest.exclusions import remove_known_warnings +countErrorLines({"FATAL": 0, "ERROR": 0, "WARNING": 0}, + stdout=remove_known_warnings(stdout)) + +</text></argument> +</extension> diff --git a/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_data_trunk_geom.qmt b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_data_trunk_geom.qmt new file mode 100644 index 0000000000000000000000000000000000000000..c6c9ce0aff7a3efe9e09a344a1727d23088c19b9 --- /dev/null +++ b/Rich/Panoptes/tests/qmtest/rich_ref_index_calib_2024_data_trunk_geom.qmt @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<!-- + (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration + + This software is distributed under the terms of the GNU General Public + Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". + + In applying this licence, CERN does not waive the privileges and immunities + granted to it by virtue of its status as an Intergovernmental Organization + or submit itself to any jurisdiction. +--> +<!-- +Run RICH refractive index calibration task +--> +<extension class="GaudiTest.GaudiExeTest" kind="test"> +<argument name="program"><text>gaudirun.py</text></argument> +<argument name="use_temp_dir"><enumeral>true</enumeral></argument> +<argument name="timeout"><integer>1800</integer></argument> +<argument name="args"><set> + <text>$PANOPTESROOT/tests/options/2024-data.py</text> + <text>$PANOPTESROOT/options/RequiredDets.py</text> + <text>$PANOPTESROOT/options/Tracking.py</text> + <text>$PANOPTESROOT/options/RichRefIndexCalib.py</text> +</set></argument> +<argument name="reference"><text>../refs/rich_ref_index_calib_2024_data_trunk_geom.ref</text></argument> +<argument name="error_reference"><text>../refs/empty.ref</text></argument> +<argument name="validator"><text> + +from Panoptes.qmtest.exclusions import ref_preprocessor +validateWithReference(preproc = ref_preprocessor) + +from Panoptes.qmtest.exclusions import remove_known_warnings +countErrorLines({"FATAL": 0, "ERROR": 0, "WARNING": 0}, + stdout=remove_known_warnings(stdout)) + +</text></argument> +</extension> diff --git a/Rich/Panoptes/tests/refs/rich_daq_mon_2024_data.ref b/Rich/Panoptes/tests/refs/rich_daq_mon_2024_data.ref index 5e703e7b00c7702a68758c2690b1315e81302390..4f870dddc6ff4491a81e4b82517fd817c68deb31 100644 --- a/Rich/Panoptes/tests/refs/rich_daq_mon_2024_data.ref +++ b/Rich/Panoptes/tests/refs/rich_daq_mon_2024_data.ref @@ -24,7 +24,7 @@ BXTypeMonitors INFO 1D histograms in directory "BXTypeMo | /RICH/BXTypeMonitors/Rich1/bottom/nHitsBXIDBe | "Rich1 bottom Number of hits from ID trig..." | 978 | 2557.4 | 1339.6 | 1.4249 | 7.152 | | /RICH/BXTypeMonitors/Rich1/nHitsBXIDBeamCross | "Rich1 Number of hits from ID trigger (Be..." | 978 | 5180.2 | 2620.9 | 1.1883 | 4.3193 | | /RICH/BXTypeMonitors/Rich1/nHitsBXIDBeamGas | "Rich1 Number of hits from ID trigger (Be..." | 21 | 169.29 | 304.47 | 2.7354 | 6.8648 | - | /RICH/BXTypeMonitors/Rich1/nHitsBXIDEmptyEmpt | "Rich1 Number of hits from ID trigger (Em..." | 1 | 15 | 0.0000 |-nan |-nan | + | /RICH/BXTypeMonitors/Rich1/nHitsBXIDEmptyEmpt | "Rich1 Number of hits from ID trigger (Em..." | 1 | 15 | 0.0000 | 0 | 0 | | /RICH/BXTypeMonitors/Rich1/top/nHitsBXIDBeamC | "Rich1 top Number of hits from ID trigger..." | 978 | 2623.2 | 1352.1 | 1.06 | 3.0612 | | /RICH/BXTypeMonitors/Rich2/ASide-left/nHitsBX | "Rich2 ASide-left Number of hits from ID ..." | 978 | 1502.6 | 685.19 | 0.41653 | -0.098288 | | /RICH/BXTypeMonitors/Rich2/CSide-right/nHitsB | "Rich2 CSide-right Number of hits from ID..." | 978 | 1441.2 | 657.74 | 0.41064 | -0.10354 | @@ -33,7 +33,7 @@ BXTypeMonitors INFO 1D histograms in directory "BXTypeMo | /RICH/BXTypeMonitors/Rich2/Occupancy_ee | "Rich2 MaPMT nHits;PMT index" | 40 | 1033.7 | 725.20 | 0.40373 | -1.1863 | | /RICH/BXTypeMonitors/Rich2/nHitsBXIDBeamCross | "Rich2 Number of hits from ID trigger (Be..." | 978 | 2943.4 | 1320.8 | 0.38564 | -0.18044 | | /RICH/BXTypeMonitors/Rich2/nHitsBXIDBeamGas | "Rich2 Number of hits from ID trigger (Be..." | 21 | 127.86 | 201.02 | 2.1954 | 3.3845 | - | /RICH/BXTypeMonitors/Rich2/nHitsBXIDEmptyEmpt | "Rich2 Number of hits from ID trigger (Em..." | 1 | 45 | 0.0000 |-nan |-nan | + | /RICH/BXTypeMonitors/Rich2/nHitsBXIDEmptyEmpt | "Rich2 Number of hits from ID trigger (Em..." | 1 | 45 | 0.0000 | 0 | 0 | BXTypeMonitorsLumi INFO 1D histograms in directory "BXTypeMonitorsLumi" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/BXTypeMonitorsLumi/Rich1/Occupancy_bb | "Rich1 MaPMT nHits;PMT index" | 128372 | 1254.1 | 651.45 | 0.084366 | -1.5703 | diff --git a/Rich/Panoptes/tests/refs/rich_photon_counting_2024_data.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_photon_counting_2024_data.ref.x86_64_v3-opt index 829fe13be98e225dcc2b186e63ac0cdfb997fcbd..0e697cea41a6e7f5333748c9987bcc95a5cd1e5d 100644 --- a/Rich/Panoptes/tests/refs/rich_photon_counting_2024_data.ref.x86_64_v3-opt +++ b/Rich/Panoptes/tests/refs/rich_photon_counting_2024_data.ref.x86_64_v3-opt @@ -1,683 +1,666 @@ RichPhotonCountingLong INFO ====================================================================================================================== RichPhotonCountingLong INFO Finalizing -RichPhotonCountingLong INFO Starting Final photon counting for run 303772 -RichPhotonCountingLong INFO Rich1Gas photon yield for Run 303772 = [ 1.78682e+01 +- 2.271e-01 ] -RichPhotonCountingLong INFO Rich2Gas photon yield for Run 303772 = [ 1.20686e+01 +- 1.790e-01 ] -RichPhotonCountingLong INFO Finished Final photon counting for run 303772 +RichPhotonCountingLong INFO Starting Final photon counting for run 297489 +RichPhotonCountingLong INFO Rich1Gas photon yield for Run 297489 = [ 1.54661e+01 +- 4.141e-01 ] +RichPhotonCountingLong INFO Rich2Gas photon yield for Run 297489 = [ 1.26290e+01 +- 2.808e-01 ] +RichPhotonCountingLong INFO Finished Final photon counting for run 297489 RichPhotonCountingLong INFO +-----------+-------------+-------------+ RichPhotonCountingLong INFO | Run | Used Events | Late Events | RichPhotonCountingLong INFO +-----------+-------------+-------------+ -RichPhotonCountingLong INFO | 303772 | 3076 | 0 | +RichPhotonCountingLong INFO | 297489 | 4963 | 0 | RichPhotonCountingLong INFO +-----------+-------------+-------------+ RichPhotonCountingLong INFO Finalized ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_658dc11a INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 3076 | 16079 | 5.2272 | - | "nTracksSelected" | 3076 | 16079 | 5.2272 | + | "nTracksInput" | 4963 | 8236 | 1.6595 | + | "nTracksSelected" | 4963 | 8236 | 1.6595 | DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 5000 | - | "Nb events removed" | 1924 | + | "Nb events removed" | 37 | FTRawBankDecoder INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No end fragment found. Ignoring the cluster." | 623 | + | "No end fragment found. Ignoring the cluster." | 286 | HLTControlFlowMgr INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Processed events" | 5000 | MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#banks in raw event" | 5000 | 4225159 | 845.03 | 0.17547 | 845.00 | 846.00 | - | "event size statistics (KBytes)" | 5049 | 367001 | 72.688 | 18.004 | 32.000 | 227.00 | + | "#banks in raw event" | 5000 | 3146349 | 629.27 | 0.44386 | 629.00 | 630.00 | + | "event size statistics (KBytes)" | 5101 | 162018 | 31.762 | 11.963 | 23.000 | 91.000 | PrForwardTrackingVelo_bccedddd INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 2999 | 397515 | 132.55 | - | "Created long tracks" | 2999 | 1825 | 0.60854 | - | "Empty input tracks" | 77 | - | "Input tracks" | 2999 | 413727 | 137.95 | - | "Number of candidate bins per track" | 397515 | 262940 | 0.66146 | 1.4144 | 0.0000 | 24.000 | - | "Number of complete candidates/track 1st Loop" | 121845 | 1532 | 0.012573 | 0.11172 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 120781 | 333 | 0.0027571 | 0.052435 | 0.0000 | 1.0000 | - | "Number of x candidates per track 1st Loop" | 121845 | 21293 | 0.17475 | 0.43801 | - | "Number of x candidates per track 2nd Loop" | 120781 | 108410 | 0.89757 | 1.2028 | - | "Percentage second loop execution" | 121845 | 120781 | 0.99127 | - | "Removed duplicates" | 2999 | 36 | 0.012004 | -PrForwardTrackingVelo_bccedddd.P... INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 1143 | 4306 | 3.7673 | - | "#tracks with hits added" | 1143 | + | "Accepted input tracks" | 2863 | 242662 | 84.758 | + | "Created long tracks" | 2863 | 935 | 0.32658 | + | "Empty input tracks" | 2100 | + | "Input tracks" | 2863 | 251676 | 87.906 | + | "Number of candidate bins per track" | 242662 | 207456 | 0.85492 | 2.1011 | 0.0000 | 28.000 | + | "Number of complete candidates/track 1st Loop" | 66612 | 766 | 0.011499 | 0.10718 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 66159 | 202 | 0.0030533 | 0.055172 | 0.0000 | 1.0000 | + | "Number of x candidates per track 1st Loop" | 66612 | 18394 | 0.27614 | 0.60081 | + | "Number of x candidates per track 2nd Loop" | 66159 | 93684 | 1.4160 | 1.9003 | + | "Percentage second loop execution" | 66612 | 66159 | 0.99320 | + | "Removed duplicates" | 2863 | 30 | 0.010479 | PrHybridSeeding_99a57e68 INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Created T2x1 three-hit combinations in case 0" | 888970 | 475031 | 0.53436 | 0.54361 | 0.0000 | 3.0000 | - | "Created T2x1 three-hit combinations in case 1" | 592647 | 324595 | 0.54770 | 0.54571 | 0.0000 | 4.0000 | - | "Created T2x1 three-hit combinations in case 2" | 561036 | 299318 | 0.53351 | 0.55077 | 0.0000 | 4.0000 | - | "Created XZ tracks (part 0)" | 9228 | 73056 | 7.9168 | 7.6241 | 0.0000 | 64.000 | - | "Created XZ tracks (part 1)" | 9228 | 66595 | 7.2166 | 6.9635 | 0.0000 | 71.000 | - | "Created XZ tracks in case 0" | 6152 | 44909 | 7.2999 | 6.8810 | 0.0000 | 63.000 | - | "Created XZ tracks in case 1" | 6152 | 57963 | 9.4218 | 8.3126 | 0.0000 | 71.000 | - | "Created XZ tracks in case 2" | 6152 | 36779 | 5.9784 | 6.1491 | 0.0000 | 64.000 | - | "Created full hit combinations in case 0" | 78176 | 78176 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 1" | 65679 | 65679 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 2" | 48580 | 48580 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created seed tracks" | 6152 | 51159 | 8.3158 | 5.1883 | 0.0000 | 34.000 | - | "Created seed tracks (part 0)" | 3076 | 31307 | 10.178 | 6.5345 | 0.0000 | 38.000 | - | "Created seed tracks (part 1)" | 3076 | 29762 | 9.6756 | 6.2093 | 0.0000 | 42.000 | - | "Created seed tracks in case 0" | 6152 | 19244 | 3.1281 | 2.4057 | 0.0000 | 17.000 | - | "Created seed tracks in case 1" | 6152 | 43628 | 7.0917 | 4.5578 | 0.0000 | 31.000 | - | "Created seed tracks in case 2" | 6152 | 56371 | 9.1630 | 5.8386 | 0.0000 | 42.000 | - | "Created seed tracks in recovery step" | 3076 | 4698 | 1.5273 | 1.8956 | 0.0000 | 18.000 | - | "Created two-hit combinations in case 0" | 1119361 | 4710786 | 4.2085 | 3.6988 | 0.0000 | 84.000 | - | "Created two-hit combinations in case 1" | 1164156 | 3024473 | 2.5980 | 2.4557 | 0.0000 | 53.000 | - | "Created two-hit combinations in case 2" | 1091313 | 3101814 | 2.8423 | 2.6897 | 0.0000 | 67.000 | -PrKalmanFilterForward_f27368e1 INFO Number of counters : 7 + | "Created T2x1 three-hit combinations in case 0" | 392148 | 212590 | 0.54212 | 0.54585 | 0.0000 | 3.0000 | + | "Created T2x1 three-hit combinations in case 1" | 269114 | 150861 | 0.56058 | 0.54624 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 242858 | 131700 | 0.54229 | 0.55179 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 14889 | 40649 | 2.7301 | 7.8493 | 0.0000 | 157.00 | + | "Created XZ tracks (part 1)" | 14889 | 36952 | 2.4818 | 6.9425 | 0.0000 | 113.00 | + | "Created XZ tracks in case 0" | 9926 | 24326 | 2.4507 | 7.0013 | 0.0000 | 140.00 | + | "Created XZ tracks in case 1" | 9926 | 32870 | 3.3115 | 8.7953 | 0.0000 | 157.00 | + | "Created XZ tracks in case 2" | 9926 | 20405 | 2.0557 | 6.1286 | 0.0000 | 117.00 | + | "Created full hit combinations in case 0" | 43252 | 43252 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 37007 | 37007 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 26735 | 26735 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 9926 | 28073 | 2.8282 | 5.5089 | 0.0000 | 69.000 | + | "Created seed tracks (part 0)" | 4963 | 17002 | 3.4258 | 6.8172 | 0.0000 | 86.000 | + | "Created seed tracks (part 1)" | 4963 | 16034 | 3.2307 | 6.2773 | 0.0000 | 66.000 | + | "Created seed tracks in case 0" | 9926 | 9858 | 0.99315 | 2.0624 | 0.0000 | 28.000 | + | "Created seed tracks in case 1" | 9926 | 23504 | 2.3679 | 4.4982 | 0.0000 | 55.000 | + | "Created seed tracks in case 2" | 9926 | 30311 | 3.0537 | 5.8740 | 0.0000 | 74.000 | + | "Created seed tracks in recovery step" | 4963 | 2725 | 0.54906 | 1.7261 | 0.0000 | 20.000 | + | "Created two-hit combinations in case 0" | 484356 | 1894360 | 3.9111 | 3.9934 | 0.0000 | 74.000 | + | "Created two-hit combinations in case 1" | 529017 | 1261058 | 2.3838 | 2.6246 | 0.0000 | 55.000 | + | "Created two-hit combinations in case 2" | 469188 | 1236436 | 2.6353 | 2.8939 | 0.0000 | 66.000 | +PrKalmanFilterForward_f27368e1 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Add states failed" | 1 | 0 | 0.0000 | - | "Pre outlier chi2 cut" | 306 | - | "chi2 cut" | 410 | - | "nIterations" | 1825 | 4188 | 2.2948 | - | "nOutlierIterations" | 1519 | 2239 | 1.4740 | - | "nTracksInput" | 3076 | 1825 | 0.59330 | - | "nTracksOutput" | 3076 | 1108 | 0.36021 | + | "Pre outlier chi2 cut" | 215 | + | "chi2 cut" | 228 | + | "nIterations" | 935 | 2123 | 2.2706 | + | "nOutlierIterations" | 720 | 1056 | 1.4667 | + | "nTracksInput" | 4963 | 935 | 0.18839 | + | "nTracksOutput" | 4963 | 492 | 0.099134 | PrKalmanFilterMatch_38a80cbf INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 734 | - | "chi2 cut" | 2103 | - | "nIterations" | 16079 | 32749 | 2.0368 | - | "nOutlierIterations" | 15345 | 19844 | 1.2932 | - | "nTracksInput" | 3076 | 16079 | 5.2272 | - | "nTracksOutput" | 3076 | 13242 | 4.3049 | + | "Pre outlier chi2 cut" | 447 | + | "chi2 cut" | 1065 | + | "nIterations" | 8236 | 16741 | 2.0327 | + | "nOutlierIterations" | 7789 | 9592 | 1.2315 | + | "nTracksInput" | 4963 | 8236 | 1.6595 | + | "nTracksOutput" | 4963 | 6724 | 1.3548 | PrMatchNN_236943c6 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 2950 | 310791.8 | 105.35 | - | "#MatchingMLP" | 37539 | 33154.01 | 0.88319 | - | "#MatchingTracks" | 2950 | 16079 | 5.4505 | -PrMatchNN_236943c6.PrAddUTHitsTool INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 11893 | 45108 | 3.7928 | - | "#tracks with hits added" | 11893 | + | "#MatchingChi2" | 2092 | 203398.2 | 97.227 | + | "#MatchingMLP" | 20298 | 17527.2 | 0.86349 | + | "#MatchingTracks" | 2092 | 8236 | 3.9369 | PrResidualSciFiHits_a436bb23 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Empty Long tracks" | 241 | + | "Empty Long tracks" | 3235 | PrStoreSciFiHits_1bfccf57 INFO Number of counters : 25 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Average X in T1U" | 1149769 |3.054601e+07 | 26.567 | 1196.1 | -2656.0 | 2656.2 | - | "Average X in T1V" | 1094452 |9.776835e+07 | 89.331 | 1148.1 | -2656.7 | 2656.6 | - | "Average X in T1X1" | 1119361 |5.911609e+07 | 52.812 | 1201.8 | -2646.6 | 2646.7 | - | "Average X in T1X2" | 1176422 |2.495555e+07 | 21.213 | 1163.2 | -2646.6 | 2646.3 | - | "Average X in T2U" | 1089722 |3.630414e+07 | 33.315 | 1189.3 | -2656.2 | 2656.2 | - | "Average X in T2V" | 1105107 |1.98284e+07 | 17.943 | 1184.1 | -2656.6 | 2656.3 | - | "Average X in T2X1" | 1044675 | 719734.6 | 0.68896 | 1189.1 | -2646.4 | 2646.4 | - | "Average X in T2X2" | 1188030 | 7501435 | 6.3142 | 1160.2 | -2646.4 | 2646.1 | - | "Average X in T3U" | 1184547 |-3.738851e+07 | -31.564 | 1385.8 | -3187.9 | 3187.7 | - | "Average X in T3V" | 1257502 |9.632551e+07 | 76.601 | 1369.6 | -3189.0 | 3188.8 | - | "Average X in T3X1" | 1146776 | 872621.1 | 0.76093 | 1405.6 | -3176.8 | 3176.7 | - | "Average X in T3X2" | 1344490 |3.328843e+07 | 24.759 | 1378.5 | -3175.6 | 3176.0 | - | "Hits in T1U" | 12304 | 1149769 | 93.447 | 35.338 | 0.0000 | 231.00 | - | "Hits in T1V" | 12304 | 1094452 | 88.951 | 34.561 | 0.0000 | 268.00 | - | "Hits in T1X1" | 12304 | 1119361 | 90.975 | 35.354 | 0.0000 | 285.00 | - | "Hits in T1X2" | 12304 | 1176422 | 95.613 | 35.776 | 0.0000 | 302.00 | - | "Hits in T2U" | 12304 | 1089722 | 88.566 | 32.590 | 0.0000 | 231.00 | - | "Hits in T2V" | 12304 | 1105107 | 89.817 | 33.301 | 0.0000 | 285.00 | - | "Hits in T2X1" | 12304 | 1044675 | 84.905 | 31.334 | 0.0000 | 216.00 | - | "Hits in T2X2" | 12304 | 1188030 | 96.556 | 34.700 | 0.0000 | 230.00 | - | "Hits in T3U" | 12304 | 1184547 | 96.273 | 34.932 | 0.0000 | 265.00 | - | "Hits in T3V" | 12304 | 1257502 | 102.20 | 36.647 | 1.0000 | 275.00 | - | "Hits in T3X1" | 12304 | 1146776 | 93.204 | 33.335 | 0.0000 | 234.00 | - | "Hits in T3X2" | 12304 | 1344490 | 109.27 | 38.184 | 1.0000 | 258.00 | - | "Total number of hits" | 3076 |1.390085e+07 | 4519.1 | 1480.8 | 167.00 | 7174.0 | + | "Average X in T1U" | 514621 |-1.226473e+07 | -23.833 | 1107.7 | -2655.6 | 2655.9 | + | "Average X in T1V" | 510324 |1.223044e+07 | 23.966 | 1080.9 | -2657.2 | 2656.0 | + | "Average X in T1X1" | 484356 |-1.257697e+07 | -25.966 | 1116.0 | -2646.8 | 2645.6 | + | "Average X in T1X2" | 535399 | -4542572 | -8.4845 | 1091.7 | -2646.6 | 2646.0 | + | "Average X in T2U" | 507208 | -6244965 | -12.312 | 1129.8 | -2655.8 | 2655.7 | + | "Average X in T2V" | 523738 |-1.431855e+07 | -27.339 | 1119.8 | -2657.0 | 2655.4 | + | "Average X in T2X1" | 481638 |-1.510715e+07 | -31.366 | 1130.4 | -2646.6 | 2645.6 | + | "Average X in T2X2" | 546398 | -7071058 | -12.941 | 1105.6 | -2646.2 | 2645.6 | + | "Average X in T3U" | 545528 |-2.251427e+07 | -41.271 | 1319.7 | -3187.4 | 3187.9 | + | "Average X in T3V" | 573565 | -2605213 | -4.5421 | 1314.9 | -3189.9 | 3187.7 | + | "Average X in T3X1" | 520766 | -9465402 | -18.176 | 1331.5 | -3176.3 | 3175.9 | + | "Average X in T3X2" | 622746 | -5955182 | -9.5628 | 1295.9 | -3176.9 | 3175.4 | + | "Hits in T1U" | 19852 | 514621 | 25.923 | 40.223 | 0.0000 | 304.00 | + | "Hits in T1V" | 19852 | 510324 | 25.706 | 40.007 | 0.0000 | 232.00 | + | "Hits in T1X1" | 19852 | 484356 | 24.398 | 38.016 | 0.0000 | 243.00 | + | "Hits in T1X2" | 19852 | 535399 | 26.970 | 41.570 | 0.0000 | 271.00 | + | "Hits in T2U" | 19852 | 507208 | 25.549 | 39.089 | 0.0000 | 239.00 | + | "Hits in T2V" | 19852 | 523738 | 26.382 | 40.467 | 0.0000 | 267.00 | + | "Hits in T2X1" | 19852 | 481638 | 24.261 | 37.219 | 0.0000 | 285.00 | + | "Hits in T2X2" | 19852 | 546398 | 27.524 | 41.897 | 0.0000 | 257.00 | + | "Hits in T3U" | 19852 | 545528 | 27.480 | 41.683 | 0.0000 | 267.00 | + | "Hits in T3V" | 19852 | 573565 | 28.892 | 43.525 | 0.0000 | 241.00 | + | "Hits in T3X1" | 19852 | 520766 | 26.232 | 39.691 | 0.0000 | 232.00 | + | "Hits in T3X2" | 19852 | 622746 | 31.369 | 45.543 | 0.0000 | 274.00 | + | "Total number of hits" | 4963 | 6366287 | 1282.7 | 1912.4 | 25.000 | 8506.0 | PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# RawBank::UT banks" | 3076 | 640520 | 208.23 | - | "# RawBank::UTError banks" | 3076 | 23655 | 7.6902 | - |*"Non-unique UT clusters in event" | 3076 | 0 |( 0.000000 +- 0.000000)% | + | "# RawBank::UT banks" | 4963 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 4963 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 4963 | 0 |( 0.000000 +- 0.000000)% | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 3076 | 3149258 | 1023.8 | 1128.9 | 0.0000 | 8852.0 | - | "# Rich1Gas Segments" | 3076 | 6365 | 2.0692 | 1.8388 | 0.0000 | 11.000 | - | "# Rich2Gas Photons" | 3076 | 2824992 | 918.40 | 809.86 | 0.0000 | 5521.0 | - | "# Rich2Gas Segments" | 3076 | 13920 | 4.5254 | 3.0032 | 0.0000 | 19.000 | - | "# Selected Tracks" | 3076 | 13951 | 4.5354 | 3.0058 | 0.0000 | 19.000 | - |*"RICH selection efficiency" | 14033 | 13951 |( 99.41566 +- 0.06434041)% | + | "# Rich1Gas Photons" | 4963 | 1629417 | 328.31 | 894.31 | 0.0000 | 8666.0 | + | "# Rich1Gas Segments" | 4963 | 2685 | 0.54100 | 1.1943 | 0.0000 | 9.0000 | + | "# Rich2Gas Photons" | 4963 | 1590406 | 320.45 | 754.10 | 0.0000 | 7358.0 | + | "# Rich2Gas Segments" | 4963 | 6895 | 1.3893 | 2.5632 | 0.0000 | 18.000 | + | "# Selected Tracks" | 4963 | 6900 | 1.3903 | 2.5663 | 0.0000 | 18.000 | + |*"RICH selection efficiency" | 6960 | 6900 |( 99.13793 +- 0.1108119)% | TBTCMatch_3c8e6ced INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 12937 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 12937 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 12937 | + |*"BadInput" | 6479 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 6479 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 6479 | TBTC_Forward_f3e0fd41 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 1096 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 1096 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 1096 | + |*"BadInput" | 481 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 481 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 481 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 3076 | 3443076 | 1119.3 | + | "# Converted Clusters" | 4963 | 0 | 0.0000 | VPLightClustersToVPMicroClusters... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 3076 | 5657517 | 1839.2 | + | "# Converted Clusters" | 4963 | 4354398 | 877.37 | VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | - | "Nb of Produced Tracks" | 3076 | 671006 | 218.14 | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | + | "Nb of Produced Tracks" | 4963 | 447651 | 90.198 | FTRawBankDecoder INFO 1D histograms in directory "FTRawBankDecoder" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | no_end_fragment | "No end fragment found;iLink" | 623 | 3377.7 | 1214.2 | 0.28867 | -1.9166 | -RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 137 + | no_end_fragment | "No end fragment found;iLink" | 286 | 3329.9 | 1206.4 | 0.36979 | -1.8632 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 135 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1379739 | 5.5154e-05 | 0.0030105 | -0.0057744 | -1.0356 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1379739 | 5.5154e-05 | 0.0030105 | -0.0057744 | -1.0356 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1379739 | 5.5154e-05 | 0.0030105 | -0.0057744 | -1.0356 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 83 | 0.0014904 | 0.0021501 | 0.18068 | -0.88779 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41772 | 0.00024246 | 0.0029444 | -0.04176 | -0.97401 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 300 | 0.00043612 | 0.0023144 | -0.26496 | 0.0739 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00020788 | 0.0025265 | 0.13918 | -0.35612 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2974 | 0.00024818 | 0.0025976 | -0.019442 | -0.56094 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13908 | 0.0002342 | 0.0027820 | 0.00028017 | -0.78013 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 146945 | 0.00058829 | 0.0029374 | -0.18139 | -0.95583 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 490036 | 4.6088e-05 | 0.0030344 | -0.0062867 | -1.0614 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 429500 |-0.00011301 | 0.0030220 | 0.051923 | -1.0426 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253271 |-0.00011902 | 0.0029859 | 0.053541 | -1.006 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 83 | 0.0014904 | 0.0021501 | 0.18068 | -0.88779 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41772 | 0.00024246 | 0.0029444 | -0.04176 | -0.97401 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 300 | 0.00043612 | 0.0023144 | -0.26496 | 0.0739 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00020788 | 0.0025265 | 0.13918 | -0.35612 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2974 | 0.00024818 | 0.0025976 | -0.019442 | -0.56094 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13908 | 0.0002342 | 0.0027820 | 0.00028017 | -0.78013 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 146945 | 0.00058829 | 0.0029374 | -0.18139 | -0.95583 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 490036 | 4.6088e-05 | 0.0030344 | -0.0062867 | -1.0614 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 429500 |-0.00011301 | 0.0030220 | 0.051923 | -1.0426 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253271 |-0.00011902 | 0.0029859 | 0.053541 | -1.006 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2853761 | 5.3416e-05 | 0.0030091 | -0.0042251 | -1.0345 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2853761 | 5.3416e-05 | 0.0030091 | -0.0042251 | -1.0345 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2853761 | 5.3416e-05 | 0.0030091 | -0.0042251 | -1.0345 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2853761 | 3.1455 | 1.8208 | 0.00066662 | -1.19 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2853761 | 0.042884 | 0.0099138 | -0.8793 | 0.24709 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1474022 | 5.1777e-05 | 0.0030077 | -0.0027629 | -1.0335 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1474022 | 5.1777e-05 | 0.0030077 | -0.0027629 | -1.0335 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1474022 | 5.1777e-05 | 0.0030077 | -0.0027629 | -1.0335 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | -0.0018255 | 0.00084315 | 0.20709 | -0.56831 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 62405 | 0.00020349 | 0.0029290 | -0.04627 | -0.95231 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 |-0.00030314 | 0.0020177 | 0.13164 | 0.11258 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 666 |-0.00021427 | 0.0025137 | 0.16361 | -0.40337 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2785 | 2.592e-05 | 0.0027317 | 0.055118 | -0.74853 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13233 | 0.00022505 | 0.0028265 | -0.035674 | -0.81257 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 131556 | 0.00058151 | 0.0029648 | -0.1715 | -0.9763 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487671 | 6.6224e-05 | 0.0030271 | -0.0090608 | -1.0563 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 477438 |-8.7122e-05 | 0.0030173 | 0.039956 | -1.0461 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 298121 |-0.00011307 | 0.0029807 | 0.054512 | -0.99675 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | -0.0018255 | 0.00084315 | 0.20709 | -0.56831 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 62405 | 0.00020349 | 0.0029290 | -0.04627 | -0.95231 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 |-0.00030314 | 0.0020177 | 0.13164 | 0.11258 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 666 |-0.00021427 | 0.0025137 | 0.16361 | -0.40337 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2785 | 2.592e-05 | 0.0027317 | 0.055118 | -0.74853 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13233 | 0.00022505 | 0.0028265 | -0.035674 | -0.81257 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 131556 | 0.00058151 | 0.0029648 | -0.1715 | -0.9763 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487671 | 6.6224e-05 | 0.0030271 | -0.0090608 | -1.0563 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 477438 |-8.7122e-05 | 0.0030173 | 0.039956 | -1.0461 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 298121 |-0.00011307 | 0.0029807 | 0.054512 | -0.99675 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1386001 | 2.545e-05 | 0.0018662 | -0.0009963 | -0.93069 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1386001 | 2.545e-05 | 0.0018662 | -0.0009963 | -0.93069 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1315494 | 1.5756e-05 | 0.0018737 | 0.0046905 | -0.94568 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 70507 | 0.00016593 | 0.0017482 | -0.067125 | -0.67281 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15380 |-2.1515e-05 | 0.0017104 | 0.0049033 | -0.63155 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7038 | 0.00025987 | 0.0018790 | -0.12153 | -0.95229 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2733 | 0.00024077 | 0.0018334 | -0.056285 | -0.89325 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1122 | 0.00018683 | 0.0017965 | -0.11926 | -0.78031 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50114 | 0.00020837 | 0.0017703 | -0.068034 | -0.75716 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129711 | 7.0981e-06 | 0.0018545 | 0.014404 | -0.90807 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 209174 |-9.3287e-05 | 0.0018451 | 0.066176 | -0.88056 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 243286 |-0.00010403 | 0.0018706 | 0.070788 | -0.91983 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 269637 |-7.1796e-05 | 0.0018875 | 0.050453 | -0.9678 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 253849 | 1.3641e-05 | 0.0019004 | 0.00072157 | -1.0023 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 105414 | 0.00036598 | 0.0018806 | -0.19543 | -0.9575 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 28036 | 0.00028001 | 0.0018694 | -0.14848 | -0.94238 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2032 | 9.1461e-05 | 0.0016717 | -0.023224 | -0.46667 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1090 | 4.2368e-05 | 0.0017051 | -0.043633 | -0.54884 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 672 | 6.6216e-06 | 0.0017119 | -0.060491 | -0.65469 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 363 | 7.1346e-05 | 0.0015911 | 0.18579 | -0.39665 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4392 | 0.00019024 | 0.0016795 | -0.10431 | -0.52192 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8987 | 0.0001557 | 0.0017017 | -0.052123 | -0.55508 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12508 | 0.00019435 | 0.0017480 | -0.054071 | -0.68798 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13422 | 0.0001527 | 0.0017717 | -0.056243 | -0.72888 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12169 | 0.00015159 | 0.0017662 | -0.071384 | -0.73484 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8401 | 0.00018861 | 0.0017966 | -0.10897 | -0.75373 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4108 | 0.00024594 | 0.0017677 | -0.11225 | -0.67613 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2363 | 0.00010489 | 0.0017398 | -0.032835 | -0.62069 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17412 |-6.1423e-06 | 0.0017056 | 0.00027023 | -0.61057 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8128 | 0.00023123 | 0.0018585 | -0.10639 | -0.91021 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3405 | 0.00019375 | 0.0018121 | -0.048878 | -0.84635 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1485 | 0.00015564 | 0.0017442 | -0.048082 | -0.69901 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 54506 | 0.00020684 | 0.0017628 | -0.070455 | -0.73902 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 138698 | 1.8869e-05 | 0.0018433 | 0.0074693 | -0.88469 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 221682 |-7.2645e-05 | 0.0018398 | 0.055628 | -0.87049 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 256708 |-8.4536e-05 | 0.0018645 | 0.059541 | -0.90931 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 281806 |-5.7973e-05 | 0.0018810 | 0.041661 | -0.95673 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 262250 | 2.0463e-05 | 0.0018967 | -0.003992 | -0.9945 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 109522 | 0.00036141 | 0.0018765 | -0.19196 | -0.94881 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30399 | 0.00026595 | 0.0018599 | -0.13804 | -0.92247 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1410803 | 1.7652e-05 | 0.0018678 | 0.0028407 | -0.92872 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1410803 | 1.7652e-05 | 0.0018678 | 0.0028407 | -0.92872 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1338639 | 8.7861e-06 | 0.0018756 | 0.0076153 | -0.94383 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 72164 | 0.00014393 | 0.0017479 | -0.048728 | -0.67838 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1113 | 4.3435e-05 | 0.0018358 | 0.042054 | -0.87169 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 111117 | 2.0958e-05 | 0.0018244 | 0.011612 | -0.84152 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33875 | 0.00020504 | 0.0017565 | -0.072407 | -0.70604 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13139 |-5.7043e-05 | 0.0017164 | 0.019048 | -0.61558 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2689 | 0.00025829 | 0.0019177 | -0.11784 | -0.97634 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8015 | 0.00028532 | 0.0018802 | -0.1429 | -0.95306 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32814 | 0.00032217 | 0.0019020 | -0.18076 | -0.96263 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 142862 | 0.00030702 | 0.0018865 | -0.16816 | -0.96804 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 286696 |-5.7819e-05 | 0.0018998 | 0.045924 | -0.99105 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 267548 |-9.8926e-05 | 0.0018919 | 0.065407 | -0.96672 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 246713 |-9.9967e-05 | 0.0018722 | 0.067124 | -0.92237 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 192058 |-5.3864e-05 | 0.0018414 | 0.042486 | -0.87723 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 161 |-0.00039218 | 0.0018506 | 0.26429 | -0.80892 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8066 | 9.2024e-05 | 0.0017411 | -0.028092 | -0.64224 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3605 | 9.4801e-05 | 0.0016642 | -0.089006 | -0.43801 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1883 | 0.0001041 | 0.0016799 | -0.068021 | -0.51019 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 373 | 0.00010387 | 0.0018080 | -0.023759 | -0.77373 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 949 | 0.00020711 | 0.0017547 | -0.016678 | -0.6709 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2130 | 2.7092e-05 | 0.0016927 | 0.030887 | -0.59473 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4914 | 0.00019277 | 0.0017899 | -0.072633 | -0.77568 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9685 | 0.00010707 | 0.0017907 | -0.035196 | -0.78346 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13564 | 0.00020792 | 0.0017603 | -0.056373 | -0.6996 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14223 | 0.00012652 | 0.0017392 | -0.054303 | -0.67194 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12611 | 0.00018172 | 0.0017384 | -0.059296 | -0.6664 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1274 |-1.0158e-05 | 0.0018432 | 0.067049 | -0.87579 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119183 | 2.6419e-05 | 0.0018182 | 0.0081904 | -0.82768 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37480 | 0.00019311 | 0.0017471 | -0.072075 | -0.67936 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15022 |-3.4445e-05 | 0.0017122 | 0.0061226 | -0.60404 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3062 | 0.00023951 | 0.0019053 | -0.10512 | -0.95606 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8964 | 0.00027608 | 0.0018659 | -0.12885 | -0.9254 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34944 | 0.00030271 | 0.0018903 | -0.16465 | -0.94814 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 147776 | 0.00030309 | 0.0018834 | -0.16473 | -0.96266 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 296381 |-5.1107e-05 | 0.0018957 | 0.042011 | -0.98396 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 281112 |-7.7207e-05 | 0.0018845 | 0.054138 | -0.9525 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 260936 |-8.1847e-05 | 0.0018629 | 0.055542 | -0.90698 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 204669 |-3.5429e-05 | 0.0018346 | 0.032734 | -0.86412 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 2796804 | 2.1515e-05 | 0.0018670 | 0.00093694 | -0.9297 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 2796804 | 2.1515e-05 | 0.0018670 | 0.00093694 | -0.9297 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 2654133 | 1.2241e-05 | 0.0018747 | 0.006162 | -0.94475 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 142671 | 0.00015474 | 0.0017480 | -0.057763 | -0.67582 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 2796804 | 3.1417 | 1.8149 | -0.001152 | -1.183 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 2796804 | 0.024996 | 0.0055824 | -0.65394 | -0.45175 | -RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 137 + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 695814 | 7.0512e-05 | 0.0030477 | -0.014031 | -1.0748 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 695814 | 7.0512e-05 | 0.0030477 | -0.014031 | -1.0748 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 695814 | 7.0512e-05 | 0.0030477 | -0.014031 | -1.0748 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22261 | 0.00025422 | 0.0029843 | -0.057234 | -1.0189 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 171 | 0.00074038 | 0.0020939 | 0.15063 | -0.17074 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 380 | 0.00024865 | 0.0028050 | 0.13092 | -0.65344 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1744 | 0.00017541 | 0.0029441 | -0.071 | -0.93601 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4158 | 0.00028278 | 0.0028744 | 0.0061177 | -0.90803 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 64687 | 0.00064214 | 0.0029909 | -0.21291 | -0.98283 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 254774 | 0.00010292 | 0.0030589 | -0.029141 | -1.0911 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 220999 |-0.00013624 | 0.0030504 | 0.061795 | -1.0708 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 126640 | -0.0001162 | 0.0030261 | 0.047331 | -1.0533 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22261 | 0.00025422 | 0.0029843 | -0.057234 | -1.0189 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 171 | 0.00074038 | 0.0020939 | 0.15063 | -0.17074 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 380 | 0.00024865 | 0.0028050 | 0.13092 | -0.65344 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1744 | 0.00017541 | 0.0029441 | -0.071 | -0.93601 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4158 | 0.00028278 | 0.0028744 | 0.0061177 | -0.90803 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 64687 | 0.00064214 | 0.0029909 | -0.21291 | -0.98283 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 254774 | 0.00010292 | 0.0030589 | -0.029141 | -1.0911 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 220999 |-0.00013624 | 0.0030504 | 0.061795 | -1.0708 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 126640 | -0.0001162 | 0.0030261 | 0.047331 | -1.0533 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1470927 | 5.6733e-05 | 0.0030468 | -0.0080168 | -1.0728 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1470927 | 5.6733e-05 | 0.0030468 | -0.0080168 | -1.0728 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1470927 | 5.6733e-05 | 0.0030468 | -0.0080168 | -1.0728 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1470927 | 3.1356 | 1.8219 | 0.0084939 | -1.1973 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1470927 | 0.042793 | 0.0099492 | -0.87572 | 0.24142 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 775113 | 4.4279e-05 | 0.0030460 | -0.0025866 | -1.0709 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 775113 | 4.4279e-05 | 0.0030460 | -0.0025866 | -1.0709 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 775113 | 4.4279e-05 | 0.0030460 | -0.0025866 | -1.0709 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 43 | 0.000715 | 0.0020683 | -0.90587 | 1.2158 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 33079 | 0.00019674 | 0.0029637 | -0.044132 | -0.99583 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | 0.0015368 | 0.0024256 | 0.24164 | -0.71941 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 137 | 0.00032389 | 0.0027312 | 0.14375 | -0.76689 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 699 |-9.6806e-05 | 0.0025589 | 0.18775 | -0.60178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3647 | 0.00041018 | 0.0028668 | -0.10179 | -0.85498 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59589 | 0.00070389 | 0.0029942 | -0.22752 | -0.99315 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 270857 | 5.2843e-05 | 0.0030504 | -0.0070312 | -1.0783 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250316 | -0.0001195 | 0.0030625 | 0.054022 | -1.0811 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 156724 | -0.0001156 | 0.0030216 | 0.051863 | -1.0456 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 43 | 0.000715 | 0.0020683 | -0.90587 | 1.2158 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 33079 | 0.00019674 | 0.0029637 | -0.044132 | -0.99583 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | 0.0015368 | 0.0024256 | 0.24164 | -0.71941 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 137 | 0.00032389 | 0.0027312 | 0.14375 | -0.76689 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 699 |-9.6806e-05 | 0.0025589 | 0.18775 | -0.60178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3647 | 0.00041018 | 0.0028668 | -0.10179 | -0.85498 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59589 | 0.00070389 | 0.0029942 | -0.22752 | -0.99315 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 270857 | 5.2843e-05 | 0.0030504 | -0.0070312 | -1.0783 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250316 | -0.0001195 | 0.0030625 | 0.054022 | -1.0811 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 156724 | -0.0001156 | 0.0030216 | 0.051863 | -1.0456 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 780089 | 1.779e-05 | 0.0018850 | -0.0010025 | -0.96419 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 780089 | 1.779e-05 | 0.0018850 | -0.0010025 | -0.96419 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 750869 | 7.7046e-06 | 0.0018905 | 0.0044501 | -0.97473 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29220 | 0.00020867 | 0.0017663 | -0.081602 | -0.72332 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6829 |-2.8596e-05 | 0.0017903 | 0.026771 | -0.7854 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2266 | 0.00031891 | 0.0019118 | -0.22933 | -0.92794 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1002 | 8.8859e-05 | 0.0019404 | -0.13174 | -0.98375 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 470 | 3.1142e-05 | 0.0019442 | -0.099846 | -1.0138 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26619 | 0.00026793 | 0.0017819 | -0.089385 | -0.79147 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 74592 | 6.529e-06 | 0.0018647 | 0.0041302 | -0.91299 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 119943 |-9.5107e-05 | 0.0018580 | 0.066985 | -0.90529 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 136989 |-0.00013004 | 0.0018928 | 0.081959 | -0.96069 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 157887 |-0.00012515 | 0.0019062 | 0.073891 | -0.99572 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 151694 | 5.2916e-06 | 0.0019111 |-0.00029118 | -1.0272 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 59223 | 0.00040213 | 0.0018837 | -0.21127 | -0.95707 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13355 | 0.00034547 | 0.0018530 | -0.19719 | -0.90569 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 775 | 9.2463e-05 | 0.0016814 | -0.023779 | -0.45339 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 233 |-3.3249e-19 | 0.0018846 | -0.19684 | -0.87287 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 131 | 7.1522e-05 | 0.0017911 | 0.0013387 | -0.79904 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29 | -0.000835 | 0.0018501 | 0.37492 | -1.6498 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1536 | 0.0002873 | 0.0016589 | -0.08036 | -0.49546 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3662 | 0.00020261 | 0.0017009 | -0.042657 | -0.61372 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5422 | 0.00023673 | 0.0017538 | -0.072568 | -0.73363 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5972 | 0.00025412 | 0.0017823 | -0.099988 | -0.72935 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5707 | 0.00019576 | 0.0018130 | -0.083839 | -0.80044 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3638 | 0.00011481 | 0.0017857 | -0.062478 | -0.7992 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1472 | 0.00027171 | 0.0017962 | -0.1829 | -0.80541 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 643 | 0.00016645 | 0.0018112 | -0.068119 | -0.68251 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7604 |-1.2994e-05 | 0.0017771 | 0.018527 | -0.74846 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2499 | 0.00028639 | 0.0019115 | -0.22433 | -0.92057 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1133 | 8.5774e-05 | 0.0019147 | -0.11191 | -0.95248 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 499 | 7.9119e-06 | 0.0019468 | -0.087046 | -1.0383 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 28155 | 0.00026903 | 0.0017751 | -0.089233 | -0.77641 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 78254 | 1.8447e-05 | 0.0018557 | -0.00107 | -0.89702 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 125365 |-7.5724e-05 | 0.0018537 | 0.056964 | -0.89874 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 142961 |-0.00010396 | 0.0018880 | 0.067329 | -0.95158 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 163594 |-0.00010813 | 0.0019027 | 0.064288 | -0.9891 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 155332 | 8.4806e-06 | 0.0019077 | -0.0023915 | -1.0214 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 60695 | 0.0003991 | 0.0018818 | -0.21025 | -0.95394 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13998 | 0.00033682 | 0.0018514 | -0.19067 | -0.89732 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 792992 | 2.9517e-05 | 0.0018769 | -0.0053774 | -0.94725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 792992 | 2.9517e-05 | 0.0018769 | -0.0053774 | -0.94725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 762329 | 1.89e-05 | 0.0018822 | 0.00072769 | -0.95792 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30663 | 0.00022785 | 0.0017636 | -0.098624 | -0.70033 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 374 | 0.00012688 | 0.0018290 | 0.061511 | -0.89999 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 58502 | 5.9958e-05 | 0.0018248 | -0.007643 | -0.84724 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15898 | 0.00028356 | 0.0017773 | -0.13593 | -0.75829 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5786 |-7.8827e-05 | 0.0017224 | 0.01832 | -0.67092 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 748 | 0.00024164 | 0.0018950 | -0.065085 | -0.94133 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3647 | 0.00052399 | 0.0018402 | -0.25223 | -0.86081 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19129 | 0.00028721 | 0.0019136 | -0.1418 | -1.0029 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87851 | 0.00029772 | 0.0018970 | -0.16116 | -0.98904 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 171558 |-4.5023e-05 | 0.0019001 | 0.033037 | -1.0035 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 153977 |-0.00010194 | 0.0019022 | 0.067294 | -0.97769 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 137867 |-0.00010165 | 0.0018741 | 0.065334 | -0.92306 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 106992 |-4.7851e-05 | 0.0018414 | 0.038058 | -0.8754 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86 |-7.8333e-05 | 0.0017592 | 0.22415 | -0.81566 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3240 | 0.00016983 | 0.0017019 | -0.063077 | -0.59585 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1426 | 0.000231 | 0.0017515 | -0.058275 | -0.62782 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 564 | 7.0833e-06 | 0.0015646 | 0.055782 | -0.47109 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 162 | 5.0556e-05 | 0.0015680 | 0.038593 | 0.088734 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 380 | 0.00037505 | 0.0017634 | -0.12347 | -0.76737 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1169 | 0.00015509 | 0.0017108 | -0.063381 | -0.65507 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2055 | 0.0001381 | 0.0018484 | -0.10639 | -0.84493 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4107 | 0.00021132 | 0.0018071 | -0.099802 | -0.78419 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5896 | 0.00024755 | 0.0017833 | -0.12182 | -0.73426 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6363 | 0.00025941 | 0.0017625 | -0.10433 | -0.6899 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5215 | 0.0002852 | 0.0017574 | -0.12825 | -0.68072 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 460 | 9.0043e-05 | 0.0018184 | 0.091431 | -0.89146 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 61742 | 6.6878e-05 | 0.0018175 | -0.011904 | -0.83329 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17324 | 0.00027865 | 0.0017750 | -0.12873 | -0.74729 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6350 | -7.03e-05 | 0.0017076 | 0.018804 | -0.64981 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 910 | 0.00020385 | 0.0018365 | -0.036085 | -0.80141 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4027 | 0.00051029 | 0.0018337 | -0.2399 | -0.85546 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20298 | 0.00027878 | 0.0019016 | -0.13571 | -0.98478 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 89906 | 0.00029437 | 0.0018962 | -0.15982 | -0.98639 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 175665 |-3.7419e-05 | 0.0018979 | 0.028564 | -0.99873 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 159873 | -8.234e-05 | 0.0018974 | 0.055063 | -0.96966 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 144230 |-7.6617e-05 | 0.0018688 | 0.051309 | -0.91306 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 112207 |-2.7668e-05 | 0.0018381 | 0.026679 | -0.86835 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1573081 | 2.3713e-05 | 0.0018809 | -0.0032385 | -0.95568 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1573081 | 2.3713e-05 | 0.0018809 | -0.0032385 | -0.95568 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1513198 | 1.3358e-05 | 0.0018863 | 0.0025433 | -0.96628 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 59883 | 0.00021842 | 0.0017649 | -0.090254 | -0.7118 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1573081 | 3.1433 | 1.8139 | -0.0034865 | -1.1771 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1573081 | 0.024923 | 0.0056071 | -0.63516 | -0.47509 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 131 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1186258 | 5.2342e-05 | 0.0030091 | -0.003783 | -1.0347 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1186258 | 5.2342e-05 | 0.0030091 | -0.003783 | -1.0347 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1186258 | 5.2342e-05 | 0.0030091 | -0.003783 | -1.0347 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 51 | 0.0016567 | 0.0022444 | 0.092904 | -0.94101 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 36548 | 0.00023645 | 0.0029422 | -0.039934 | -0.96848 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 206 | 0.00072183 | 0.0021244 | -0.043269 | -0.02833 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 819 | -0.0002428 | 0.0025162 | 0.15778 | -0.36769 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2545 | 0.000168 | 0.0026061 | 0.0087631 | -0.5612 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 11580 | 0.00019599 | 0.0027628 | 0.0090535 | -0.75333 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 123367 | 0.00060023 | 0.0029384 | -0.18349 | -0.95718 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 421759 | 4.43e-05 | 0.0030325 | -0.00459 | -1.0603 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 370125 |-0.00011226 | 0.0030170 | 0.051831 | -1.0383 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 219258 |-0.00012609 | 0.0029884 | 0.05731 | -1.0091 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 51 | 0.0016567 | 0.0022444 | 0.092904 | -0.94101 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 36548 | 0.00023645 | 0.0029422 | -0.039934 | -0.96848 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 206 | 0.00072183 | 0.0021244 | -0.043269 | -0.02833 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 819 | -0.0002428 | 0.0025162 | 0.15778 | -0.36769 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2545 | 0.000168 | 0.0026061 | 0.0087631 | -0.5612 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 11580 | 0.00019599 | 0.0027628 | 0.0090535 | -0.75333 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 123367 | 0.00060023 | 0.0029384 | -0.18349 | -0.95718 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 421759 | 4.43e-05 | 0.0030325 | -0.00459 | -1.0603 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 370125 |-0.00011226 | 0.0030170 | 0.051831 | -1.0383 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 219258 |-0.00012609 | 0.0029884 | 0.05731 | -1.0091 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2414527 | 5.1511e-05 | 0.0030067 | -0.0026753 | -1.032 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2414527 | 5.1511e-05 | 0.0030067 | -0.0026753 | -1.032 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2414527 | 5.1511e-05 | 0.0030067 | -0.0026753 | -1.032 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2414527 | 3.1526 | 1.8202 | -0.0060403 | -1.19 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2414527 | 0.042882 | 0.0099134 | -0.87745 | 0.24057 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1228269 | 5.0706e-05 | 0.0030045 | -0.0015995 | -1.0295 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1228269 | 5.0706e-05 | 0.0030045 | -0.0015995 | -1.0295 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1228269 | 5.0706e-05 | 0.0030045 | -0.0015995 | -1.0295 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | -0.0018255 | 0.00084315 | 0.20709 | -0.56831 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 52795 | 0.00020657 | 0.0029241 | -0.042956 | -0.9476 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 |-0.00030314 | 0.0020177 | 0.13164 | 0.11258 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 655 |-0.00022388 | 0.0025312 | 0.17322 | -0.43184 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2493 | 6.7741e-05 | 0.0027258 | 0.044366 | -0.73902 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 11301 | 0.00022478 | 0.0028291 | -0.037319 | -0.80593 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107661 | 0.00055836 | 0.0029563 | -0.15989 | -0.97245 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 404488 | 7.259e-05 | 0.0030264 | -0.009463 | -1.0541 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 400521 |-8.8647e-05 | 0.0030180 | 0.040803 | -1.0464 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 248208 |-0.00010973 | 0.0029731 | 0.051314 | -0.98802 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22 | -0.0018255 | 0.00084315 | 0.20709 | -0.56831 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 52795 | 0.00020657 | 0.0029241 | -0.042956 | -0.9476 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 |-0.00030314 | 0.0020177 | 0.13164 | 0.11258 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 655 |-0.00022388 | 0.0025312 | 0.17322 | -0.43184 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2493 | 6.7741e-05 | 0.0027258 | 0.044366 | -0.73902 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 11301 | 0.00022478 | 0.0028291 | -0.037319 | -0.80593 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107661 | 0.00055836 | 0.0029563 | -0.15989 | -0.97245 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 404488 | 7.259e-05 | 0.0030264 | -0.009463 | -1.0541 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 400521 |-8.8647e-05 | 0.0030180 | 0.040803 | -1.0464 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 248208 |-0.00010973 | 0.0029731 | 0.051314 | -0.98802 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1039431 | 2.454e-05 | 0.0018658 | 0.0014674 | -0.93142 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1039431 | 2.454e-05 | 0.0018658 | 0.0014674 | -0.93142 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 980910 | 1.3987e-05 | 0.0018748 | 0.0077893 | -0.94918 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58521 | 0.00016185 | 0.0017391 | -0.063658 | -0.65541 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13241 |-1.7375e-05 | 0.0017068 | 0.00066172 | -0.61383 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6103 | 0.00025514 | 0.0018863 | -0.11462 | -0.96438 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2400 | 0.00024187 | 0.0018335 | -0.047131 | -0.92452 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1022 | 0.00017797 | 0.0018023 | -0.11846 | -0.78593 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41696 | 0.00019328 | 0.0017685 | -0.061029 | -0.75037 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101351 |-2.0544e-05 | 0.0018488 | 0.031579 | -0.89813 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 156216 |-9.3852e-05 | 0.0018539 | 0.068858 | -0.89927 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 180651 |-9.7785e-05 | 0.0018750 | 0.068494 | -0.92743 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 198151 |-6.4664e-05 | 0.0018890 | 0.048013 | -0.97496 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 182232 | 3.8601e-05 | 0.0019000 | -0.0092398 | -1.0066 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 74433 | 0.00032864 | 0.0018969 | -0.17605 | -0.98436 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23414 | 0.00026913 | 0.0018718 | -0.13676 | -0.95073 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1677 | 6.318e-05 | 0.0016656 | -0.0049543 | -0.48276 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 915 | 3.0313e-05 | 0.0017054 | -0.10098 | -0.53064 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 569 | -1.958e-05 | 0.0017211 | -0.062174 | -0.67859 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 297 | 9.3683e-05 | 0.0016221 | 0.24816 | -0.49442 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3625 | 0.00019059 | 0.0016723 | -0.096465 | -0.48657 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7453 | 0.00014786 | 0.0016911 | -0.043968 | -0.54956 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10344 | 0.00017761 | 0.0017391 | -0.047028 | -0.66567 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11123 | 0.00015735 | 0.0017597 | -0.052954 | -0.71241 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10003 | 0.00016904 | 0.0017516 | -0.074059 | -0.7111 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7029 | 0.00018056 | 0.0017899 | -0.10769 | -0.72715 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3464 | 0.00023604 | 0.0017690 | -0.10548 | -0.67615 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2022 | 8.2593e-05 | 0.0017268 | -0.040368 | -0.60021 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14918 | -6.682e-06 | 0.0017016 |-0.00081343 | -0.59708 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7018 | 0.00022619 | 0.0018655 | -0.10574 | -0.91786 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2969 | 0.0001903 | 0.0018149 | -0.041457 | -0.87543 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1319 | 0.00015742 | 0.0017604 | -0.043535 | -0.72945 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 45321 | 0.00019306 | 0.0017606 | -0.063549 | -0.73046 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 108804 |-6.1355e-06 | 0.0018365 | 0.023015 | -0.87345 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 166560 |-7.2223e-05 | 0.0018465 | 0.057292 | -0.88517 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 191774 |-7.6529e-05 | 0.0018670 | 0.056302 | -0.91395 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 208154 |-4.8912e-05 | 0.0018809 | 0.038114 | -0.96124 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 189261 | 4.4992e-05 | 0.0018954 | -0.014047 | -0.99616 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 77897 | 0.00032436 | 0.0018913 | -0.17255 | -0.97257 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25436 | 0.00025357 | 0.0018609 | -0.12687 | -0.92789 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1069103 | 1.345e-05 | 0.0018664 | 0.0066519 | -0.92647 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1069103 | 1.345e-05 | 0.0018664 | 0.0066519 | -0.92647 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1009186 | 3.6571e-06 | 0.0018750 | 0.011921 | -0.9431 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 59917 | 0.0001402 | 0.0017462 | -0.044854 | -0.67558 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 978 | 8.7149e-06 | 0.0018197 | 0.058249 | -0.83275 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 90021 |-3.4297e-06 | 0.0018216 | 0.023163 | -0.83494 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28771 | 0.00020843 | 0.0017608 | -0.070518 | -0.71454 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11469 |-5.9881e-05 | 0.0017139 | 0.024423 | -0.60632 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2392 | 0.00024989 | 0.0019207 | -0.13289 | -0.97127 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7176 | 0.00026762 | 0.0018779 | -0.12886 | -0.94838 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26824 | 0.00027625 | 0.0018962 | -0.15621 | -0.95769 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 99964 | 0.00032214 | 0.0018896 | -0.17381 | -0.96735 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 210564 |-4.9801e-05 | 0.0018996 | 0.042579 | -0.99404 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 199748 |-9.5538e-05 | 0.0018923 | 0.066071 | -0.97079 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 184875 |-9.4732e-05 | 0.0018732 | 0.064925 | -0.92582 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 146404 |-7.7528e-05 | 0.0018435 | 0.055862 | -0.88227 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 148 | -0.000341 | 0.0018730 | 0.25573 | -0.87754 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6710 | 0.00010057 | 0.0017417 | -0.024214 | -0.64418 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3011 | 9.8401e-05 | 0.0016801 | -0.087105 | -0.46173 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1591 | 8.5374e-05 | 0.0016888 | -0.052931 | -0.53533 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 351 | 0.00012321 | 0.0017895 | -0.045066 | -0.7213 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 806 | 0.00024516 | 0.0017539 | -0.064971 | -0.66832 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1894 | 1.4684e-05 | 0.0016862 | 0.020548 | -0.57592 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4184 | 0.0001424 | 0.0017812 | -0.049895 | -0.75412 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7942 | 0.0001032 | 0.0017713 | -0.031267 | -0.75201 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11186 | 0.00020147 | 0.0017580 | -0.044139 | -0.70493 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11749 | 0.00012536 | 0.0017349 | -0.054865 | -0.66207 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10345 | 0.00018771 | 0.0017496 | -0.061185 | -0.68496 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1126 |-3.4384e-05 | 0.0018300 | 0.079799 | -0.84825 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 96731 | 4.8111e-06 | 0.0018156 | 0.018774 | -0.82141 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31782 | 0.00019657 | 0.0017526 | -0.070455 | -0.68922 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13060 |-4.0111e-05 | 0.0017112 | 0.013451 | -0.599 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2743 | 0.00023378 | 0.0019050 | -0.12069 | -0.94471 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7982 | 0.0002652 | 0.0018649 | -0.12276 | -0.9218 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28718 | 0.00025739 | 0.0018831 | -0.14118 | -0.93924 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 104148 | 0.00031444 | 0.0018854 | -0.16799 | -0.96062 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 218506 |-4.3062e-05 | 0.0018944 | 0.038596 | -0.98502 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 210934 |-7.2708e-05 | 0.0018840 | 0.054648 | -0.95494 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 196624 |-7.5647e-05 | 0.0018627 | 0.052535 | -0.90808 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 156749 |-5.4751e-05 | 0.0018371 | 0.043858 | -0.86954 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 2108534 | 1.8912e-05 | 0.0018661 | 0.004097 | -0.92892 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 2108534 | 1.8912e-05 | 0.0018661 | 0.004097 | -0.92892 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1990096 | 8.7457e-06 | 0.0018749 | 0.0098852 | -0.9461 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 118438 | 0.00015084 | 0.0017428 | -0.054109 | -0.66588 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 2108534 | 3.1377 | 1.8146 | 0.0026062 | -1.1819 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 2108534 | 0.025018 | 0.0055665 | -0.65443 | -0.44961 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 499140 | 6.5292e-05 | 0.0030423 | -0.01102 | -1.0685 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 499140 | 6.5292e-05 | 0.0030423 | -0.01102 | -1.0685 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 499140 | 6.5292e-05 | 0.0030423 | -0.01102 | -1.0685 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15674 | 0.0003018 | 0.0029660 | -0.075747 | -0.99431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 126 | 0.00075821 | 0.0021015 | 0.0013556 | 0.036103 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 303 | 0.00020243 | 0.0028022 | 0.15152 | -0.69983 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1410 |-6.1931e-05 | 0.0029988 | 0.028966 | -0.96139 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3151 | 0.00029426 | 0.0029337 | 0.011831 | -0.94452 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46660 | 0.00060397 | 0.0029875 | -0.19308 | -0.98089 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 182572 | 9.6733e-05 | 0.0030512 | -0.026537 | -1.0829 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158701 |-0.00013562 | 0.0030514 | 0.061656 | -1.0711 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90543 |-0.00011845 | 0.0030174 | 0.050402 | -1.0484 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15674 | 0.0003018 | 0.0029660 | -0.075747 | -0.99431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 126 | 0.00075821 | 0.0021015 | 0.0013556 | 0.036103 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 303 | 0.00020243 | 0.0028022 | 0.15152 | -0.69983 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1410 |-6.1931e-05 | 0.0029988 | 0.028966 | -0.96139 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3151 | 0.00029426 | 0.0029337 | 0.011831 | -0.94452 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46660 | 0.00060397 | 0.0029875 | -0.19308 | -0.98089 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 182572 | 9.6733e-05 | 0.0030512 | -0.026537 | -1.0829 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158701 |-0.00013562 | 0.0030514 | 0.061656 | -1.0711 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90543 |-0.00011845 | 0.0030174 | 0.050402 | -1.0484 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1050408 | 5.2605e-05 | 0.0030413 | -0.0060192 | -1.067 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1050408 | 5.2605e-05 | 0.0030413 | -0.0060192 | -1.067 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1050408 | 5.2605e-05 | 0.0030413 | -0.0060192 | -1.067 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1050408 | 3.1402 | 1.8228 | 0.0044073 | -1.1993 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1050408 | 0.042819 | 0.0099188 | -0.86638 | 0.21682 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 551268 | 4.1057e-05 | 0.0030404 | -0.0014736 | -1.0657 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 551268 | 4.1057e-05 | 0.0030404 | -0.0014736 | -1.0657 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 551268 | 4.1057e-05 | 0.0030404 | -0.0014736 | -1.0657 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22339 | 0.00021153 | 0.0029711 | -0.050722 | -1.0017 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 90 | 8.3898e-06 | 0.0024173 | 0.49771 | -0.62961 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 506 | 0.00011107 | 0.0025749 | 0.22475 | -0.72999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2907 | 0.00042084 | 0.0028804 | -0.1105 | -0.84946 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 43955 | 0.00066822 | 0.0029923 | -0.20638 | -0.99956 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192258 | 4.729e-05 | 0.0030410 | -0.0045531 | -1.0687 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 178494 |-0.00012612 | 0.0030602 | 0.054144 | -1.0805 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 110719 |-0.00010268 | 0.0030146 | 0.045545 | -1.0413 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22339 | 0.00021153 | 0.0029711 | -0.050722 | -1.0017 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 90 | 8.3898e-06 | 0.0024173 | 0.49771 | -0.62961 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 506 | 0.00011107 | 0.0025749 | 0.22475 | -0.72999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2907 | 0.00042084 | 0.0028804 | -0.1105 | -0.84946 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 43955 | 0.00066822 | 0.0029923 | -0.20638 | -0.99956 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192258 | 4.729e-05 | 0.0030410 | -0.0045531 | -1.0687 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 178494 |-0.00012612 | 0.0030602 | 0.054144 | -1.0805 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 110719 |-0.00010268 | 0.0030146 | 0.045545 | -1.0413 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 520025 | 1.1847e-05 | 0.0018855 | 0.0054992 | -0.9669 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 520025 | 1.1847e-05 | 0.0018855 | 0.0054992 | -0.9669 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 498289 |-5.1113e-07 | 0.0018918 | 0.012342 | -0.97851 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21736 | 0.00021899 | 0.0017634 | -0.084465 | -0.72666 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5537 |-1.6803e-05 | 0.0017792 | 0.027906 | -0.76509 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1626 | 0.00026801 | 0.0019643 | -0.21783 | -1.0081 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 832 |-1.9756e-05 | 0.0019417 | -0.094516 | -1.0103 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 389 | 2.2366e-05 | 0.0019909 | -0.077721 | -1.0829 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21112 | 0.00026872 | 0.0017752 | -0.086011 | -0.7821 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 54768 | -5.742e-05 | 0.0018526 | 0.048017 | -0.89219 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 81311 |-0.00011495 | 0.0018641 | 0.08094 | -0.92124 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 90366 |-0.00012218 | 0.0018966 | 0.074997 | -0.96749 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103276 |-0.00012186 | 0.0019105 | 0.075606 | -1.0084 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 96968 | 3.3754e-05 | 0.0019187 | -0.0096416 | -1.0402 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33548 | 0.0004047 | 0.0018912 | -0.21517 | -0.96315 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8556 | 0.00033168 | 0.0018493 | -0.18963 | -0.90078 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 681 | 6.7922e-05 | 0.0016737 | -0.032546 | -0.43628 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 219 | -2.625e-05 | 0.0018766 | -0.18315 | -0.83338 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 122 | 0.00011667 | 0.0018495 | -0.056766 | -0.8938 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26 | -0.001841 | 0.0011177 | 1.25 | -0.092643 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1190 | 0.00026659 | 0.0016468 | -0.087751 | -0.45004 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2768 | 0.00018982 | 0.0016811 | -0.049986 | -0.60596 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4041 | 0.00025974 | 0.0017578 | -0.069402 | -0.76556 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4301 | 0.00030222 | 0.0017891 | -0.11922 | -0.73688 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4099 | 0.00023495 | 0.0018066 | -0.10126 | -0.80241 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2605 | 0.0001065 | 0.0018098 | -0.046522 | -0.82795 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1143 | 0.00016774 | 0.0017469 | -0.1638 | -0.77089 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 541 | 0.00013902 | 0.0017609 | -0.037239 | -0.63573 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6218 |-5.1309e-06 | 0.0017653 | 0.018824 | -0.72586 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1845 | 0.00022859 | 0.0019553 | -0.20861 | -0.98625 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 954 | 6.709e-06 | 0.0019249 | -0.09106 | -0.98486 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 415 | -2.2e-05 | 0.0019949 | -0.043795 | -1.106 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22302 | 0.0002686 | 0.0017683 | -0.086096 | -0.76591 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57536 |-4.1804e-05 | 0.0018432 | 0.039157 | -0.87755 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 85352 |-8.9674e-05 | 0.0018595 | 0.068296 | -0.91506 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 94667 |-9.0392e-05 | 0.0018921 | 0.057836 | -0.95805 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 107375 |-0.00010141 | 0.0019065 | 0.063878 | -1.0015 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 99573 | 3.6001e-05 | 0.0019155 | -0.010979 | -1.0343 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34691 | 0.00039705 | 0.0018872 | -0.21207 | -0.95802 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9097 | 0.00031947 | 0.0018444 | -0.1794 | -0.88882 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 511239 | 1.9358e-05 | 0.0018713 | 0.0042671 | -0.9392 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 511239 | 1.9358e-05 | 0.0018713 | 0.0042671 | -0.9392 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 488819 | 6.7069e-06 | 0.0018774 | 0.0116 | -0.95081 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 22420 | 0.00022578 | 0.0017558 | -0.093016 | -0.70135 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 263 |-0.00025958 | 0.0016935 | 0.38449 | -0.49328 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43024 | 2.8552e-05 | 0.0018204 | 0.0052186 | -0.83811 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12562 | 0.00026752 | 0.0017701 | -0.11964 | -0.74459 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4704 | -6.687e-05 | 0.0017034 | 0.016536 | -0.63622 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 571 | 0.00024063 | 0.0018841 | -0.068565 | -0.9215 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2243 | 0.00045955 | 0.0018532 | -0.22692 | -0.8598 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11828 | 0.00022406 | 0.0018954 | -0.11068 | -0.97611 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 48501 | 0.00035992 | 0.0018993 | -0.19657 | -0.97787 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 107077 |-4.0265e-05 | 0.0018985 | 0.035729 | -1.0015 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 97901 |-0.00011159 | 0.0018965 | 0.079362 | -0.97131 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 88107 | -0.0001001 | 0.0018701 | 0.073319 | -0.92297 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 72038 |-9.5927e-05 | 0.0018376 | 0.064696 | -0.86889 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 74 |-9.0641e-05 | 0.0017282 | 0.23926 | -0.73416 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2453 | 0.00022806 | 0.0016949 | -0.073538 | -0.58414 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1165 | 0.0001758 | 0.0017296 | -0.01049 | -0.56201 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 472 | 0.00010802 | 0.0015625 | 0.034369 | -0.59864 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 136 | 0.000125 | 0.0015762 | 0.12137 | 0.19035 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 326 | 0.00026935 | 0.0017437 | -0.058881 | -0.73276 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 879 | 0.00019533 | 0.0017324 | -0.099464 | -0.65793 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1460 | 8.0456e-05 | 0.0018644 | -0.096139 | -0.89748 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2874 | 0.00012437 | 0.0017931 | -0.070182 | -0.77256 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4148 | 0.00023333 | 0.0017880 | -0.11171 | -0.7655 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4575 | 0.00026807 | 0.0017593 | -0.089796 | -0.70503 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3858 | 0.00031631 | 0.0017331 | -0.13856 | -0.67044 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 337 |-0.00021814 | 0.0017036 | 0.34864 | -0.56244 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 45477 | 4.1787e-05 | 0.0018130 | -0.0017251 | -0.82388 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13727 | 0.00025852 | 0.0017664 | -0.10893 | -0.72943 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5176 |-4.9811e-05 | 0.0016910 | 0.013582 | -0.62732 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 707 | 0.00021875 | 0.0018304 | -0.036749 | -0.77909 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2569 | 0.00043535 | 0.0018408 | -0.20456 | -0.85048 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12707 | 0.0002219 | 0.0018837 | -0.10957 | -0.9552 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49961 | 0.00035242 | 0.0018989 | -0.19351 | -0.97642 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 109951 |-3.5123e-05 | 0.0018955 | 0.032087 | -0.99574 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 102049 |-9.0593e-05 | 0.0018918 | 0.066148 | -0.96452 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 92682 |-7.1602e-05 | 0.0018644 | 0.057998 | -0.91248 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 75896 |-6.6938e-05 | 0.0018335 | 0.048068 | -0.86279 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1031264 | 1.5588e-05 | 0.0018785 | 0.0048471 | -0.95319 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1031264 | 1.5588e-05 | 0.0018785 | 0.0048471 | -0.95319 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 987108 | 3.0816e-06 | 0.0018847 | 0.011933 | -0.96481 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 44156 | 0.00022241 | 0.0017596 | -0.088776 | -0.71398 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1031264 | 3.1408 | 1.8172 | 0.00076484 | -1.1803 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1031264 | 0.024974 | 0.0055630 | -0.63585 | -0.46832 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4763 | 35.678 | 22.937 | 0.12516 | -1.1316 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 6365 | 66.158 | 10.461 | -0.93095 | -0.36292 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6365 | 75.129 | 9.0017 | -2.2965 | 4.6063 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6365 | 66.037 | 10.481 | -0.93687 | -0.35509 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6365 | 65.963 | 10.458 | -0.9262 | -0.36158 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 6365 | 69.017 | 6.5241 | -0.41025 | 0.5527 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2856 | 22.093 | 14.058 | 0.18639 | -1.0698 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 13920 | 53.89 | 2.1380 | 1.2119 | 3.6588 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 13919 | 45.961 | 4.1663 | 0.010627 | -0.59364 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 13920 | 53.524 | 2.0931 | 1.223 | 3.8789 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 13920 | 53.254 | 2.0699 | 1.1938 | 3.9111 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 13687 | 25.722 | 14.538 | -0.035118 | -1.1185 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1951 | 33.796 | 22.566 | 0.20012 | -1.0808 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 2685 | 61.98 | 10.272 | -0.14448 | -1.0551 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 2685 | 74.412 | 10.101 | -1.9145 | 2.4826 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 2685 | 61.863 | 10.210 | -0.15736 | -1.071 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 2685 | 61.805 | 10.171 | -0.15902 | -1.0741 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 2685 | 68.495 | 6.6624 | -0.48338 | 1.0307 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1256 | 19.858 | 13.502 | 0.30634 | -1.0176 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 6895 | 53.788 | 1.8526 | 0.87529 | 2.6181 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 6894 | 45.583 | 3.9623 | -0.018609 | -0.78016 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 6895 | 53.412 | 1.8028 | 0.8824 | 2.7643 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 6895 | 53.132 | 1.7807 | 0.84668 | 2.9377 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 6762 | 24.671 | 14.181 | 0.0054708 | -1.0962 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 5007 | 246.09 | 167.06 | 0.18806 | -1.1116 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 6365 | 598.29 | 20.412 | -9.1771 | 107.33 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6365 | 568.28 | 23.853 | -4.8057 | 45.613 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6365 | 596.63 | 20.362 | -9.1427 | 107.2 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6365 | 595.62 | 20.295 | -9.183 | 107.87 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 6365 | 490.18 | 55.152 | -0.12994 | -0.28497 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 3050 | 132.3 | 91.123 | 0.22516 | -1.0981 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 13951 | 339.27 | 14.025 | 1.343 | 4.8632 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 13951 | 289.8 | 26.169 | 0.028743 | -0.51981 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 13951 | 336.96 | 13.737 | 1.3549 | 4.9974 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 13951 | 335.24 | 13.546 | 1.3758 | 5.1785 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 13951 | 160.93 | 92.112 | -0.029615 | -1.1269 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 2050 | 229.66 | 160.69 | 0.25757 | -1.0504 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 2685 | 596.69 | 24.189 | -8.5094 | 81.831 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 2685 | 565.36 | 26.462 | -5.28 | 44.26 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 2685 | 595.05 | 24.181 | -8.5113 | 82.287 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 2685 | 594.12 | 24.113 | -8.4889 | 82.049 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 2685 | 483.64 | 54.807 | -0.15887 | 0.044064 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1339 | 119.23 | 86.754 | 0.34938 | -1.0234 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 6899 | 338.62 | 11.985 | 0.91351 | 3.237 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 6899 | 287.41 | 24.838 | -0.020943 | -0.76405 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 6899 | 336.22 | 11.634 | 0.89365 | 3.3217 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 6899 | 334.38 | 11.449 | 0.94167 | 3.4601 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 6899 | 154.08 | 89.948 | 0.0093812 | -1.1094 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 638 | 1079.8 | 21.476 | 0.66886 | 0.51888 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 5951 | 1878.6 | 90.535 | 0.8707 | 2.9855 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 169 | 1079.4 | 22.428 | 0.84681 | 0.88811 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2480 | 1876.8 | 74.491 | 0.42157 | 1.95 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4763 | 24.988 | 16.369 | 0.218 | -1.0085 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 6365 | 58.821 | 4.5113 | -1.2398 | 3.8158 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6365 | 55.829 | 4.5010 | -0.99509 | 2.9604 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6365 | 58.679 | 4.4988 | -1.2449 | 3.8648 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6365 | 58.577 | 4.4946 | -1.2411 | 3.8441 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 6365 | 47.972 | 6.5517 | 0.018536 | -0.38249 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2856 | 14.869 | 9.5930 | 0.2428 | -0.98266 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 13920 | 35.773 | 3.9693 | -0.86503 | 3.2226 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 13919 | 30.582 | 4.1487 | -0.45459 | 1.3468 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 13920 | 35.534 | 3.9329 | -0.88219 | 3.283 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 13920 | 35.354 | 3.9119 | -0.90109 | 3.3321 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 13687 | 17.266 | 9.8713 | 0.016253 | -1.0528 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1951 | 23.22 | 15.772 | 0.29044 | -0.93008 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 2685 | 58.646 | 5.0374 | -1.3807 | 3.9982 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 2685 | 55.535 | 4.9888 | -1.1103 | 3.1173 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 2685 | 58.501 | 5.0310 | -1.3753 | 3.9829 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 2685 | 58.403 | 5.0308 | -1.3699 | 3.9611 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 2685 | 47.478 | 6.5830 | 0.049564 | -0.21756 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1256 | 13.332 | 9.1422 | 0.33419 | -0.98103 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 6895 | 35.743 | 3.7430 | -0.9074 | 3.2603 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 6894 | 30.348 | 3.9003 | -0.36618 | 0.90946 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 6895 | 35.495 | 3.7095 | -0.92754 | 3.337 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 6895 | 35.311 | 3.6873 | -0.93567 | 3.3493 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 6762 | 16.523 | 9.5967 | 0.050397 | -1.0291 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 300128 | -0.014791 | 0.61469 | 2.3087 | 14.348 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 560120 | -0.011119 | 0.76171 | 1.861 | 8.4892 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 560120 | -0.011119 | 0.76171 | 1.861 | 8.4892 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 560120 | -0.011119 | 0.76171 | 1.861 | 8.4892 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 560120 | -0.011119 | 0.76171 | 1.861 | 8.4892 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 536016 | -0.017347 | 0.72144 | 2.0289 | 10.047 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 166816 | 0.0010973 | 7.1394 | 0.87246 | 0.62676 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1227088 | -0.019624 | 7.6598 | 0.658 | 0.24744 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1187344 | -0.0084688 | 7.5144 | 0.70261 | 0.3118 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1227088 | -0.019624 | 7.6598 | 0.658 | 0.24744 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1227088 | -0.019624 | 7.6598 | 0.658 | 0.24744 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 860952 |-9.3674e-05 | 6.7663 | 0.89617 | 1.2283 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 121032 | -0.012271 | 0.65978 | 2.2963 | 12.248 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 236280 | 8.8031e-05 | 0.83733 | 1.7727 | 6.6663 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 236280 | 8.8031e-05 | 0.83733 | 1.7727 | 6.6663 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 236280 | 8.8031e-05 | 0.83733 | 1.7727 | 6.6663 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 236280 | 8.8031e-05 | 0.83733 | 1.7727 | 6.6663 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 225496 | -0.0041757 | 0.79159 | 1.9209 | 7.952 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 69840 |-0.00058706 | 7.1560 | 0.92536 | 0.49424 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 607040 | -0.014353 | 7.6836 | 0.67037 | 0.088763 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 586496 | -0.011927 | 7.5432 | 0.695 | 0.21884 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 607040 | -0.014353 | 7.6836 | 0.67037 | 0.088763 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 607040 | -0.014353 | 7.6836 | 0.67037 | 0.088763 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 418200 | -0.0090749 | 6.7917 | 0.88319 | 1.283 | RichPhotonCountingLong INFO 1D histograms in directory "RichPhotonCountingLong" : 56 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 20699 | 1.8949e+09 | 3.7803e+08 | -0.41544 | 0.1034 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 5331 | 1.8883e+09 | 3.7954e+08 | -0.49154 | 0.24021 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 5061 | 1.8952e+09 | 3.8167e+08 | -0.41344 | 0.1453 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 5174 | 1.8947e+09 | 3.7670e+08 | -0.43411 | 0.053934 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 5133 | 1.9018e+09 | 3.7406e+08 | -0.31443 | -0.058166 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 20699 | 1.8894e+09 | 3.8233e+08 | -0.48193 | 0.26067 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 5331 | 1.8926e+09 | 3.7802e+08 | -0.47473 | 0.20159 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 5061 | 1.8805e+09 | 3.8589e+08 | -0.45955 | 0.095829 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 5174 | 1.889e+09 | 3.8185e+08 | -0.47929 | 0.25209 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 5133 | 1.8952e+09 | 3.8359e+08 | -0.51305 | 0.49315 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 20699 | 2.4501e+09 | 3.1424e+08 | -0.41883 | 0.35525 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 5331 | 2.4494e+09 | 3.1489e+08 | -0.46395 | 0.5323 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 5061 | 2.4463e+09 | 3.1577e+08 | -0.49464 | 0.49263 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 5174 | 2.4528e+09 | 3.1504e+08 | -0.4484 | 0.33366 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 5133 | 2.4518e+09 | 3.1118e+08 | -0.26072 | 0.032924 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton Yield | Run 3..." | 20699 | 21.761 | 21.100 | 0.11769 | 0.40072 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton Yield | Run 3..." | 5331 | 21.692 | 21.045 | 0.14264 | 0.44095 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton Yield | Run 3..." | 5061 | 21.81 | 21.491 | 0.096715 | 0.51487 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton Yield | Run 3..." | 5174 | 21.368 | 21.189 | 0.13432 | 0.4153 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Detected CKPhoton Yield | Run 3..." | 5133 | 22.181 | 20.665 | 0.098275 | 0.2012 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Exp CKTheta | Run 303772;Cheren..." | 2494913 | 0.052952 | 6.8138e-05 | 1.4082 | -0.017049 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec CKTheta | Run 303772;Cheren..." | 2494913 | 0.052571 | 0.0066487 | -0.058364 | -1.0035 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec-Exp CKTheta | Run 303772;de..." | 2494913 | 4.3902e-05 | 0.0030062 | 0.001181 | -1.0313 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec-Exp CKTheta | Run 303772 | ..." | 668869 | 6.163e-05 | 0.0030100 | -0.0037059 | -1.0329 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec-Exp CKTheta | Run 303772 | ..." | 625455 | 3.4331e-05 | 0.0030010 | 0.0064323 | -1.0281 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec-Exp CKTheta | Run 303772 | ..." | 600297 | 3.8184e-05 | 0.0030120 | -0.0031435 | -1.0373 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Rec-Exp CKTheta | Run 303772 | ..." | 600292 | 4.0048e-05 | 0.0030017 | 0.0054805 | -1.0269 | - | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/30 | "Rich1Gas Track Momentum | Run 303772;Tra..." | 6365 | 46290 | 16606. | 1.7542 | 3.1174 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 43567 | 2.6441e+09 | 1.1982e+08 | -0.62359 | 0.42857 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 10863 | 2.6449e+09 | 1.1905e+08 | -0.62738 | 0.42651 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 10980 | 2.6477e+09 | 1.1892e+08 | -0.64561 | 0.51829 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 10637 | 2.6402e+09 | 1.2147e+08 | -0.63849 | 0.45535 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 11087 | 2.6434e+09 | 1.1974e+08 | -0.58106 | 0.31112 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 43567 | 2.6526e+09 | 1.2056e+08 | -0.79835 | 0.84344 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 10863 | 2.6512e+09 | 1.2062e+08 | -0.7746 | 0.77586 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 10980 | 2.6561e+09 | 1.1882e+08 | -0.83345 | 0.97813 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 10637 | 2.651e+09 | 1.2012e+08 | -0.7859 | 0.82134 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 11087 | 2.6522e+09 | 1.2256e+08 | -0.79838 | 0.8034 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 43567 | 2.9854e+09 | 1.9231e+08 | -0.31501 | 0.060658 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 10863 | 2.9876e+09 | 1.9171e+08 | -0.35828 | 0.20083 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 10980 | 2.9883e+09 | 1.9120e+08 | -0.29776 | 0.0037211 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 10637 | 2.9791e+09 | 1.9533e+08 | -0.32122 | 0.022274 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 11087 | 2.9864e+09 | 1.9092e+08 | -0.27935 | 0.010684 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton Yield | Run 3..." | 43567 | 12.872 | 16.333 | -0.34589 | 0.11904 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton Yield | Run 3..." | 10863 | 12.627 | 16.388 | -0.323 | 0.12631 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton Yield | Run 3..." | 10980 | 13.199 | 16.309 | -0.35197 | 0.15065 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton Yield | Run 3..." | 10637 | 13.025 | 16.249 | -0.3306 | 0.10504 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Detected CKPhoton Yield | Run 3..." | 11087 | 12.642 | 16.377 | -0.37621 | 0.092703 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Exp CKTheta | Run 303772;Cheren..." | 1154041 | 0.029604 | 9.9160e-05 | 0.022808 | -1.0492 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec CKTheta | Run 303772;Cheren..." | 1154041 | 0.028151 | 0.0040438 | -0.23726 | -0.95378 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec-Exp CKTheta | Run 303772;de..." | 1154041 | 7.2127e-06 | 0.0018602 | 0.010199 | -0.91491 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec-Exp CKTheta | Run 303772 | ..." | 297630 | 5.4234e-06 | 0.0018611 | 0.0099752 | -0.9196 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec-Exp CKTheta | Run 303772 | ..." | 280445 | 4.3529e-09 | 0.0018546 | 0.012778 | -0.90038 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec-Exp CKTheta | Run 303772 | ..." | 287996 | 1.4196e-05 | 0.0018627 | 0.0082335 | -0.92256 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Rec-Exp CKTheta | Run 303772 | ..." | 287970 | 9.1074e-06 | 0.0018622 | 0.0098054 | -0.91648 | - | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/30 | "Rich2Gas Track Momentum | Run 303772;Tra..." | 13951 | 47908 | 17789. | 1.6096 | 2.3894 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 7753 | 1.6158e+09 | 5.2694e+08 | -0.20546 | -0.29015 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 2005 | 1.6222e+09 | 5.2900e+08 | -0.21948 | -0.23211 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 1940 | 1.595e+09 | 5.3752e+08 | -0.25472 | -0.26697 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 2025 | 1.6338e+09 | 5.1547e+08 | -0.14114 | -0.46522 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckHigh | Run..." | 1783 | 1.6106e+09 | 5.2500e+08 | -0.1919 | -0.23442 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 7753 | 1.6014e+09 | 5.3758e+08 | -0.2476 | -0.25577 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 2005 | 1.6147e+09 | 5.3415e+08 | -0.23485 | -0.25242 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 1940 | 1.57e+09 | 5.5649e+08 | -0.29119 | -0.31703 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 2025 | 1.615e+09 | 5.3682e+08 | -0.18859 | -0.44459 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton BckLow | Run ..." | 1783 | 1.6051e+09 | 5.1965e+08 | -0.26195 | 0.004043 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 7753 | 2.226e+09 | 4.3200e+08 | -0.21602 | 0.083627 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 2005 | 2.2337e+09 | 4.2360e+08 | -0.16638 | -0.057077 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 1940 | 2.2097e+09 | 4.4528e+08 | -0.24221 | -0.090581 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 2025 | 2.24e+09 | 4.2823e+08 | -0.14061 | -0.11098 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton SigNoSub | Ru..." | 1783 | 2.2191e+09 | 4.3021e+08 | -0.31113 | 0.61651 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton Yield | Run 2..." | 7753 | 19.956 | 23.047 | 0.011786 | 0.070648 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton Yield | Run 2..." | 2005 | 20.35 | 23.264 | 0.022517 | 0.0066359 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton Yield | Run 2..." | 1940 | 19.246 | 22.988 | -0.053041 | -0.058034 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton Yield | Run 2..." | 2025 | 20.05 | 22.787 | 0.085657 | 0.21286 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Detected CKPhoton Yield | Run 2..." | 1783 | 20.179 | 23.143 | -0.012893 | 0.1159 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Exp CKTheta | Run 297489;Cheren..." | 1335807 | 0.053204 | 7.4267e-05 | -1.0179 | -0.96393 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec CKTheta | Run 297489;Cheren..." | 1335807 | 0.052637 | 0.0067024 | -0.06975 | -1.0334 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec-Exp CKTheta | Run 297489;de..." | 1335807 | 4.5481e-05 | 0.0030456 | -0.0022411 | -1.0709 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec-Exp CKTheta | Run 297489 | ..." | 373466 | 4.554e-05 | 0.0030493 | -0.0012167 | -1.0726 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec-Exp CKTheta | Run 297489 | ..." | 339803 | 3.1713e-05 | 0.0030495 | 0.0035627 | -1.0745 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec-Exp CKTheta | Run 297489 | ..." | 326618 | 5.4333e-05 | 0.0030420 | -0.011688 | -1.0711 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Rec-Exp CKTheta | Run 297489 | ..." | 295920 | 5.1319e-05 | 0.0030404 | 0.00029002 | -1.0642 | + | /RICH/RichPhotonCountingLong/Rich1Gas/Runs/29 | "Rich1Gas Track Momentum | Run 297489;Tra..." | 2685 | 44967 | 15612. | 1.8958 | 3.968 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 20036 | 2.5908e+09 | 1.5242e+08 | -0.63751 | 0.34512 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 5111 | 2.5881e+09 | 1.5354e+08 | -0.62042 | 0.30657 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 5188 | 2.5891e+09 | 1.5227e+08 | -0.66249 | 0.47219 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 4887 | 2.5942e+09 | 1.5073e+08 | -0.60858 | 0.25688 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckHigh | Run..." | 4850 | 2.5921e+09 | 1.5302e+08 | -0.65602 | 0.33061 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 20036 | 2.6047e+09 | 1.5258e+08 | -0.7486 | 0.60686 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 5111 | 2.6022e+09 | 1.5277e+08 | -0.69724 | 0.48085 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 5188 | 2.6035e+09 | 1.5133e+08 | -0.72596 | 0.4399 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 4887 | 2.6057e+09 | 1.5150e+08 | -0.7145 | 0.56579 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton BckLow | Run ..." | 4850 | 2.6074e+09 | 1.5474e+08 | -0.85745 | 0.94382 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 20036 | 2.9022e+09 | 2.3972e+08 | -0.43468 | -0.042936 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 5111 | 2.8951e+09 | 2.3963e+08 | -0.38187 | -0.083793 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 5188 | 2.8989e+09 | 2.3690e+08 | -0.47572 | 0.024629 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 4887 | 2.9095e+09 | 2.3977e+08 | -0.41521 | -0.10012 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton SigNoSub | Ru..." | 4850 | 2.9058e+09 | 2.4247e+08 | -0.46976 | -0.010362 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton Yield | Run 2..." | 20036 | 13.089 | 17.324 | -0.29258 | 0.1415 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton Yield | Run 2..." | 5111 | 13.328 | 17.330 | -0.3024 | 0.1187 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton Yield | Run 2..." | 5188 | 13.255 | 17.308 | -0.30917 | 0.16395 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton Yield | Run 2..." | 4887 | 12.622 | 17.437 | -0.26996 | 0.088234 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Detected CKPhoton Yield | Run 2..." | 4850 | 13.129 | 17.210 | -0.28689 | 0.20039 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Exp CKTheta | Run 297489;Cheren..." | 659375 | 0.029641 | 9.6546e-05 | 0.17805 | -0.67974 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec CKTheta | Run 297489;Cheren..." | 659375 | 0.028127 | 0.0040719 | -0.22775 | -0.97895 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec-Exp CKTheta | Run 297489;de..." | 659375 | 1.28e-05 | 0.0018730 | 0.0062431 | -0.94002 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec-Exp CKTheta | Run 297489 | ..." | 169068 | 6.248e-07 | 0.0018721 | 0.011954 | -0.94208 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec-Exp CKTheta | Run 297489 | ..." | 172492 | 3.6364e-05 | 0.0018621 | -0.006246 | -0.91864 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec-Exp CKTheta | Run 297489 | ..." | 156392 | 3.4998e-06 | 0.0018836 | 0.0091372 | -0.96028 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Rec-Exp CKTheta | Run 297489 | ..." | 161423 | 9.357e-06 | 0.0018750 | 0.011154 | -0.94022 | + | /RICH/RichPhotonCountingLong/Rich2Gas/Runs/29 | "Rich2Gas Track Momentum | Run 297489;Tra..." | 6899 | 46887 | 16924. | 1.6888 | 2.8491 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 11066974 | 0.10279 | 0.081314 | 1.0512 | 0.73587 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6387804 | 0.049605 | 0.031746 | 1.5695 | 4.1128 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 7553874 | 0.12801 | 0.10911 | 1.2048 | 1.1017 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 3784902 | 0.052958 | 0.036150 | 1.4535 | 3.192 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 8407677 | 1.3163 | 0.97655 | 6.9623 | 91.44 | - | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 5684868 | 1.1237 | 0.42927 | 5.2865 | 60.039 | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 5454204 | 1.385 | 1.3193 | 10.3 | 199.51 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 3342309 | 1.1324 | 0.45279 | 5.1814 | 48.718 | RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 5456446 | 6.0924 | 240.96 | -0.015407 | -0.019329 | - | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 5456446 | -1360 | 66.804 | -0.77828 | 0.15854 | - | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 3076 | 936.13 | 300.08 | -1.1538 | 1.4418 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3076 | 3599.4 | 1676.1 | 0.076755 | 0.9083 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | - | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 11066974 | 5.4257 | 239.81 | 0.0055797 | 0.0082401 | - | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 11066974 | -0.10481 | 260.40 | -0.011427 | -0.85953 | - | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5610528 | 4.7871 | 239.43 | 0.026241 | 0.04065 | - | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5610528 | 1358.6 | 67.479 | 0.7715 | 0.12604 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3266079 | 3905.2 | 84.814 | -0.14757 | -0.9437 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3266079 | 12.29 | 272.96 | 0.015043 | 0.069982 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3121725 | -3902.7 | 83.581 | 0.16197 | -0.89083 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3121725 | 14.989 | 268.79 | 0.0048707 | 0.13055 | - | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 3076 | 789.66 | 216.56 | -1.8307 | 3.3874 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 3076 | 2077.4 | 869.31 | -0.33314 | -0.26669 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1567950 | 2.653 | 1.8857 | 1.5927 | 3.2994 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 861046 | 2.5875 | 1.9066 | 1.9242 | 5.6659 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 2428996 | 2.6298 | 1.8934 | 1.7115 | 4.1484 | - | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6387804 | 8.629 | 463.41 | -0.029928 | -1.5239 | - | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6387804 | 13.573 | 270.63 | 0.010151 | 0.10078 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 3694786 | -6.3116 | 241.06 | -0.02764 | -0.0056357 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 3694786 | -1358.9 | 65.559 | -0.79792 | 0.25708 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 4963 | 359.42 | 487.08 | 1.035 | -0.30411 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3439 | 2213.3 | 2833.9 | 2.1 | 8.2595 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 7553874 | -7.0185 | 239.76 | -0.010029 | 0.017329 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 7553874 | 0.93082 | 255.99 | -0.023116 | -0.85543 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 3859088 | -7.5671 | 239.29 | 0.0061815 | 0.044222 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 3859088 | 1356 | 65.993 | 0.78835 | 0.23847 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1867792 | 3906.6 | 84.057 | -0.15555 | -0.91566 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1867792 | 11.602 | 263.93 | 0.0095413 | 0.22711 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1917110 | -3905.2 | 82.964 | 0.19214 | -0.86555 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1917110 | 14.034 | 266.01 | 0.010153 | 0.20255 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 4963 | 288.65 | 379.17 | 0.8383 | -0.95515 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 2821 | 1352.2 | 1294.1 | 0.84143 | -0.23701 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 935376 | 2.6945 | 2.0489 | 1.7581 | 4.0413 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 497196 | 2.5433 | 2.0215 | 2.1188 | 6.5646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 1432572 | 2.642 | 2.0407 | 1.8779 | 4.8567 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 3784902 | -7.9484 | 466.22 | 0.027524 | -1.5389 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 3784902 | 12.572 | 264.70 | 0.0086346 | 0.21105 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 6365 | 975.52 | 33.585 | 11.292 | 141.78 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 6365 | 2049.5 | 11.110 | 1.4324 | 4.1527 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 6365 | 1077.4 | 37.174 | -8.8726 | 102.79 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 13951 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 13951 | 11353 | 74.061 | 1.1996 | 4.0397 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 13951 | 1858.2 | 76.583 | 1.3543 | 4.9001 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 2685 | 976.8 | 41.551 | 9.5023 | 95.076 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 2685 | 2048.5 | 9.9558 | 1.6473 | 5.6325 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 2685 | 1074.6 | 43.985 | -8.2791 | 79.105 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 6899 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 6899 | 11349 | 63.162 | 0.8124 | 2.5869 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 6899 | 1854.5 | 65.127 | 0.91574 | 3.4048 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 3076 | 4.5354 | 3.0058 | 0.62551 | 0.29333 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 3076 | 4.5621 | 3.0198 | 0.62079 | 0.27525 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 4963 | 1.3903 | 2.5663 | 2.1913 | 4.7578 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 4963 | 1.4024 | 2.5860 | 2.1907 | 4.7626 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4500 | 58323 | 15608. | 0.79322 | -0.21928 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 6102 | 45192 | 14571. | 1.4892 | 1.8886 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6102 | 45522 | 14719. | 1.4543 | 1.7504 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6102 | 45207 | 14577. | 1.4877 | 1.8824 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6102 | 45217 | 14582. | 1.4865 | 1.8777 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 6102 | 46588 | 15139. | 1.3493 | 1.3622 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2123 | 81935 | 10073. | -0.027432 | -1.0873 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 13187 | 46356 | 15243. | 1.3587 | 1.3563 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13186 | 47544 | 15678. | 1.2484 | 0.98113 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13187 | 46403 | 15262. | 1.3542 | 1.34 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13187 | 46438 | 15276. | 1.3508 | 1.3278 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 12954 | 54504 | 16383. | 0.84807 | -0.075463 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1878 | 57013 | 14932. | 0.86756 | 0.0071091 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 2612 | 44026 | 13687. | 1.576 | 2.3403 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 2612 | 44335 | 13835. | 1.5409 | 2.1904 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 2612 | 44039 | 13693. | 1.5745 | 2.3336 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 2612 | 44049 | 13698. | 1.5733 | 2.3285 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2612 | 45340 | 14262. | 1.4348 | 1.7654 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1000 | 81343 | 10191. | 0.011932 | -1.1009 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 6639 | 45591 | 14693. | 1.4193 | 1.6344 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 6638 | 46735 | 15137. | 1.3082 | 1.2341 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 6639 | 45635 | 14712. | 1.4148 | 1.6171 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 6639 | 45669 | 14726. | 1.4114 | 1.6042 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6506 | 53621 | 15943. | 0.90073 | 0.090931 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4744 | 58005 | 15653. | 0.79958 | -0.19924 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 6102 | 45192 | 14571. | 1.4892 | 1.8886 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6102 | 45517 | 14717. | 1.4548 | 1.7525 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6102 | 45206 | 14577. | 1.4877 | 1.8825 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6102 | 45217 | 14582. | 1.4866 | 1.8779 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 6102 | 46563 | 15130. | 1.3516 | 1.3704 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2317 | 81673 | 10193. | -0.025476 | -1.079 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 13218 | 46344 | 15237. | 1.3605 | 1.361 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13218 | 47516 | 15669. | 1.2513 | 0.98888 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13218 | 46389 | 15256. | 1.356 | 1.3448 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13218 | 46424 | 15270. | 1.3526 | 1.3327 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 13218 | 54307 | 16403. | 0.85313 | -0.063221 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1977 | 56688 | 14973. | 0.87343 | 0.02846 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 2612 | 44026 | 13687. | 1.576 | 2.3403 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 2612 | 44330 | 13833. | 1.5415 | 2.1926 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 2612 | 44039 | 13693. | 1.5745 | 2.3337 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 2612 | 44049 | 13698. | 1.5733 | 2.3287 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2612 | 45316 | 14253. | 1.4371 | 1.7744 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1083 | 81066 | 10314. | 0.017607 | -1.0991 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 6643 | 45587 | 14690. | 1.4198 | 1.6367 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 6643 | 46717 | 15129. | 1.3101 | 1.2409 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 6643 | 45631 | 14708. | 1.4153 | 1.6196 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 6643 | 45664 | 14723. | 1.4119 | 1.6068 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6643 | 53432 | 15958. | 0.90561 | 0.10549 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4500 | 58369 | 15633. | 0.79033 | -0.22337 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 6102 | 45175 | 14558. | 1.491 | 1.8948 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6102 | 45505 | 14706. | 1.4561 | 1.7564 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6102 | 45190 | 14564. | 1.4895 | 1.8886 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6102 | 45200 | 14569. | 1.4883 | 1.8839 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 6102 | 46579 | 15135. | 1.3489 | 1.3601 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2123 | 81914 | 10051. | -0.026661 | -1.0848 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 13187 | 46402 | 15258. | 1.3515 | 1.3316 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13186 | 47561 | 15689. | 1.2432 | 0.96478 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13187 | 46448 | 15277. | 1.3469 | 1.3154 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13187 | 46483 | 15291. | 1.3435 | 1.3033 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 12954 | 54448 | 16347. | 0.85123 | -0.063703 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1878 | 57063 | 14985. | 0.86421 | -0.0093943 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 2612 | 44042 | 13687. | 1.5677 | 2.3026 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 2612 | 44352 | 13835. | 1.5327 | 2.1539 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 2612 | 44056 | 13693. | 1.5662 | 2.296 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 2612 | 44066 | 13698. | 1.565 | 2.291 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2612 | 45338 | 14251. | 1.4289 | 1.7406 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1000 | 81370 | 10180. | 0.007082 | -1.0986 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 6639 | 45608 | 14697. | 1.4188 | 1.6353 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 6638 | 46726 | 15140. | 1.3094 | 1.2399 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 6639 | 45652 | 14716. | 1.4143 | 1.618 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 6639 | 45686 | 14731. | 1.4109 | 1.6051 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6506 | 53572 | 15923. | 0.9063 | 0.1066 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 300128 |-8.1734e+11 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 560120 |-3.5658e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 560120 |-3.5658e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 560120 |-3.5658e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 560120 |-3.5658e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 536016 |-9.3194e+12 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 36821 | 1.6526 | 1.2488 | 0.19586 | -0.94186 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 36295 | 0.050577 | 0.0054567 | -3.7616 | 16.756 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 166816 | 2.5256e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1227088 |-3.8148e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1187344 | 2.9767e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1227088 |-3.8148e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1227088 |-3.8148e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 860952 | 5.3381e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 72390 | 1.4612 | 1.1735 | 0.35557 | -0.72275 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 69516 | 0.028111 | 0.0033237 | -2.8157 | 8.3847 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 121032 | 6.904e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 236280 | 4.0397e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 236280 | 4.0397e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 236280 | 4.0397e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 236280 | 4.0397e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 225496 | 3.0846e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 15475 | 1.6252 | 1.2252 | 0.16441 | -1.007 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 15306 | 0.050733 | 0.0057200 | -3.7464 | 16.556 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 69840 |-8.3102e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 607040 | 1.5142e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 586496 | 1.2366e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 607040 | 1.5142e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 607040 | 1.5142e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 418200 | 5.8519e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 35621 | 1.4296 | 1.1461 | 0.32292 | -0.80096 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 34205 | 0.028119 | 0.0033598 | -2.791 | 8.1783 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | - | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7382400 | 27.43 | 262.62 | -0.0067223 | -0.83476 | - | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | - | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 7690000 | 27.26 | 263.84 | -0.011767 | -0.92491 | - | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 40.536 | 463.41 | -0.030265 | -1.5254 | - | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7690000 | 44.973 | 224.22 | -0.0024566 | 0.97766 | - | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 7690000 | 47.325 | 466.19 | -0.049258 | -1.519 | - | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 7690000 | 42.354 | 320.91 | 0.01043 | -0.75108 | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 11911200 | 28.426 | 258.58 | -0.018554 | -0.82646 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12407500 | 28.323 | 259.99 | -0.024489 | -0.92194 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 24.385 | 466.40 | 0.025812 | -1.541 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12407500 | 42.952 | 219.33 | 0.021621 | 1.0913 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12407500 | 24.796 | 469.04 | 0.028955 | -1.5355 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12407500 | 41.956 | 315.60 | 0.016524 | -0.69297 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14033 | 1.5691 | 0.44408 | 0.43948 | -0.15267 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14033 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 13852 | 0.027642 | 0.051338 | 3.5449 | 14.798 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 13300 | 46481 | 15305. | 1.3472 | 1.3134 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 13951 | 1477.7 | 1068.2 | 2.133 | 6.0949 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 6960 | 1.512 | 0.44328 | 0.55156 | -0.0061403 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 6960 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 6180 | 0.12454 | 0.096868 | 0.98352 | 0.056556 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 6704 | 45758 | 14747. | 1.4042 | 1.5778 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 6944 | 1234.9 | 834.98 | 2.2609 | 7.8915 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data.ref.x86_64_v3-detdesc-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data.ref.x86_64_v3-detdesc-opt deleted file mode 100644 index 8bc4a03f67552f97563364f2a1efcd6f1e77b40e..0000000000000000000000000000000000000000 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data.ref.x86_64_v3-detdesc-opt +++ /dev/null @@ -1,139 +0,0 @@ -RichRefCalibLong.Writer INFO Starting n-1 calibration for run 254875 ... -TCanvas::MakeDefCanvas INFO created default TCanvas with name c1 -RichRefCalibLong.Writer INFO Gaus Const = 3908.96 +- 33.0147 -RichRefCalibLong.Writer INFO Gaus Mean = 2.59023e-05 +- 9.86886e-06 -RichRefCalibLong.Writer INFO Gaus Sigma = 0.00113914 +- 1.13679e-05 -RichRefCalibLong.Writer INFO Gaus Asym = 0 +- 0 -RichRefCalibLong.Writer INFO Bkg Par 0 = 7647.92 +- 23.6887 -RichRefCalibLong.Writer INFO Bkg Par 1 = 92028 +- 5170.47 -RichRefCalibLong.Writer INFO Bkg Par 2 = -2.95413e+07 +- 841434 -RichRefCalibLong.Writer INFO Bkg Par 3 = -2.47547e+09 +- 1.63015e+08 -RichRefCalibLong.Writer INFO Rich1Gas Current Scale Factor 1.0229 Correction 1.00099 -> Updated Scale Factor 1.02391 -TCanvas::Print INFO pdf file RefIndCanvaspdf has been created -RichRefCalibLong.Writer INFO Rich1Gas Current Scale Factor 1.0229 Correction 1.00099 -> Updated Scale Factor 1.02391 -RichRefCalibLong.Writer INFO Gaus Const = 2992.88 +- 28.3404 -RichRefCalibLong.Writer INFO Gaus Mean = 0.000103769 +- 6.90591e-06 -RichRefCalibLong.Writer INFO Gaus Sigma = 0.000770098 +- 9.04096e-06 -RichRefCalibLong.Writer INFO Gaus Asym = 0 +- 0 -RichRefCalibLong.Writer INFO Bkg Par 0 = 4663.36 +- 24.9375 -RichRefCalibLong.Writer INFO Bkg Par 1 = 145812 +- 7770.91 -RichRefCalibLong.Writer INFO Bkg Par 2 = -2.03501e+07 +- 2.48408e+06 -RichRefCalibLong.Writer INFO Bkg Par 3 = -3.52624e+09 +- 7.22606e+08 -RichRefCalibLong.Writer INFO Rich2Gas Current Scale Factor 0.9856 Correction 1.00677 -> Updated Scale Factor 0.992273 -TCanvas::Print INFO pdf file RefIndCanvaspdf has been created -RichRefCalibLong.Writer INFO Rich2Gas Current Scale Factor 0.9856 Correction 1.00677 -> Updated Scale Factor 0.992273 -RichRefCalibLong.Writer INFO Final Refractive index calibration for Run 254875 was SUCCESSFUL -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -CloneKillerMatch INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 1000 | 15015 | 15.015 | - | "nTracksSelected" | 1000 | 15015 | 15.015 | -PrForwardTrackingVelo INFO Number of counters : 8 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 874 | 61173 | 69.992 | - | "Created long tracks" | 874 | 28048 | 32.092 | - | "Input tracks" | 874 | 63353 | 72.486 | - | "Number of candidate bins per track" | 61173 | 490851 | 8.0240 | 12.660 | 0.0000 | 118.00 | - | "Number of complete candidates/track 1st Loop" | 50058 | 116935 | 2.3360 | 4.0829 | 0.0000 | 46.000 | - | "Number of x candidates per track 1st Loop" | 50058 | 209557 | 4.1863 | 6.1773 | - | "Percentage second loop execution" | 50058 | 26793 | 0.53524 | - | "Removed duplicates" | 874 | 5938 | 6.7941 | -PrGECFilter INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb Events Processed" | 1000 | -PrHybridSeeding INFO Number of counters : 21 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Created T2x1 three-hit combinations in case 0" | 682692 | 421756 | 0.61778 | 0.59146 | 0.0000 | 5.0000 | - | "Created T2x1 three-hit combinations in case 1" | 1630832 | 1121802 | 0.68787 | 0.67390 | 0.0000 | 10.000 | - | "Created T2x1 three-hit combinations in case 2" | 3269084 | 2858207 | 0.87431 | 0.89304 | 0.0000 | 16.000 | - | "Created XZ tracks (part 0)" | 3000 | 124874 | 41.625 | 100.96 | 0.0000 | 2809.0 | - | "Created XZ tracks (part 1)" | 3000 | 108767 | 36.256 | 81.498 | 0.0000 | 1648.0 | - | "Created XZ tracks in case 0" | 2000 | 43417 | 21.709 | 28.570 | 0.0000 | 400.00 | - | "Created XZ tracks in case 1" | 2000 | 82923 | 41.462 | 81.282 | 0.0000 | 1467.0 | - | "Created XZ tracks in case 2" | 2000 | 107301 | 53.651 | 131.65 | 0.0000 | 2809.0 | - | "Created full hit combinations in case 0" | 73470 | 73470 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 1" | 109504 | 109504 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 2" | 194284 | 194284 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created seed tracks" | 2000 | 25661 | 12.831 | 10.344 | 0.0000 | 104.00 | - | "Created seed tracks (part 0)" | 1000 | 19669 | 19.669 | 15.291 | 0.0000 | 137.00 | - | "Created seed tracks (part 1)" | 1000 | 19597 | 19.597 | 15.149 | 0.0000 | 138.00 | - | "Created seed tracks in case 0" | 2000 | 11538 | 5.7690 | 4.5358 | 0.0000 | 27.000 | - | "Created seed tracks in case 1" | 2000 | 22894 | 11.447 | 8.8997 | 0.0000 | 69.000 | - | "Created seed tracks in case 2" | 2000 | 33269 | 16.634 | 13.330 | 0.0000 | 131.00 | - | "Created seed tracks in recovery step" | 1000 | 5997 | 5.9970 | 4.9038 | 0.0000 | 29.000 | - | "Created two-hit combinations in case 0" | 155713 | 2972688 | 19.091 | 15.698 | 0.0000 | 104.00 | - | "Created two-hit combinations in case 1" | 173853 | 5313190 | 30.561 | 22.053 | 0.0000 | 126.00 | - | "Created two-hit combinations in case 2" | 151647 | 7779007 | 51.297 | 35.529 | 0.0000 | 194.00 | -PrKalmanFilterForward INFO Number of counters : 7 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 14722 | - | "Transport failed" | 3 | 0 | 0.0000 | - | "chi2 cut" | 4 | - | "nIterations" | 28047 | 88505 | 3.1556 | - | "nOutlierIterations" | 13322 | 23074 | 1.7320 | - | "nTracksInput" | 1000 | 28048 | 28.048 | - | "nTracksOutput" | 1000 | 13318 | 13.318 | -PrKalmanFilterForward.TrackMaste... INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "RungeKuttaExtrapolator failed with code: RK: Curling"| 4 | -PrKalmanFilterMatch INFO Number of counters : 5 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 290 | - | "nIterations" | 15015 | 32760 | 2.1818 | - | "nOutlierIterations" | 14725 | 20863 | 1.4168 | - | "nTracksInput" | 1000 | 15015 | 15.015 | - | "nTracksOutput" | 1000 | 14725 | 14.725 | -PrMatchNN INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 870 | 137440.3 | 157.98 | - | "#MatchingMLP" | 15015 | 12543.72 | 0.83541 | - | "#MatchingTracks" | 870 | 15015 | 17.259 | -PrStoreSciFiHits INFO Number of counters : 25 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Average X in T1U" | 153455 | -4097451 | -26.701 | 1122.9 | -2657.6 | 2656.8 | - | "Average X in T1V" | 152977 |-2.278778e+07 | -148.96 | 1181.3 | -2658.0 | 2657.1 | - | "Average X in T1X1" | 155713 | 1295862 | 8.3221 | 1133.4 | -2648.0 | 2646.9 | - | "Average X in T1X2" | 175507 | -1361149 | -7.7555 | 1040.7 | -2647.6 | 2647.6 | - | "Average X in T2U" | 160183 | 3990.473 | 0.024912 | 1102.1 | -2656.5 | 2659.2 | - | "Average X in T2V" | 156014 | 5382044 | 34.497 | 1114.6 | -2657.3 | 2656.5 | - | "Average X in T2X1" | 149859 | 593391.6 | 3.9597 | 1096.6 | -2646.7 | 2647.9 | - | "Average X in T2X2" | 148627 | 7446138 | 50.099 | 1064.9 | -2647.8 | 2647.1 | - | "Average X in T3U" | 162124 | -4084556 | -25.194 | 1278.3 | -3188.5 | 3190.4 | - | "Average X in T3V" | 181800 |-1.016463e+07 | -55.911 | 1219.5 | -3189.9 | 3190.6 | - | "Average X in T3X1" | 167329 |-1.735384e+07 | -103.71 | 1257.9 | -3177.5 | 3178.0 | - | "Average X in T3X2" | 196370 | 5819204 | 29.634 | 1247.7 | -3177.2 | 3177.4 | - | "Hits in T1U" | 4000 | 153455 | 38.364 | 26.673 | 0.0000 | 165.00 | - | "Hits in T1V" | 4000 | 152977 | 38.244 | 24.018 | 0.0000 | 183.00 | - | "Hits in T1X1" | 4000 | 155713 | 38.928 | 26.970 | 0.0000 | 169.00 | - | "Hits in T1X2" | 4000 | 175507 | 43.877 | 28.702 | 0.0000 | 175.00 | - | "Hits in T2U" | 4000 | 160183 | 40.046 | 27.110 | 0.0000 | 165.00 | - | "Hits in T2V" | 4000 | 156014 | 39.004 | 26.618 | 0.0000 | 151.00 | - | "Hits in T2X1" | 4000 | 149859 | 37.465 | 25.454 | 0.0000 | 148.00 | - | "Hits in T2X2" | 4000 | 148627 | 37.157 | 24.820 | 0.0000 | 166.00 | - | "Hits in T3U" | 4000 | 162124 | 40.531 | 27.162 | 0.0000 | 182.00 | - | "Hits in T3V" | 4000 | 181800 | 45.450 | 28.935 | 0.0000 | 176.00 | - | "Hits in T3X1" | 4000 | 167329 | 41.832 | 28.277 | 0.0000 | 168.00 | - | "Hits in T3X2" | 4000 | 196370 | 49.093 | 32.866 | 0.0000 | 196.00 | - | "Total number of hits" | 1000 | 1959958 | 1960.0 | 1211.6 | 60.000 | 6467.0 | -RichPixelClustering INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No DePD object found for decoded channel ID" | 95 | -TBTCMatch INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 14661 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 14661 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 14661 | -TBTC_Forward INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 13316 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 13316 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 13316 | -VeloRetinaClusterTrackingSIMD INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 1000 | 1078445 | 1078.4 | - | "Nb of Produced Tracks" | 1000 | 108950 | 108.95 | -RichRefCalibLong SUCCESS 1D histograms in directory "RICH/RichRefCalibLong" : 2 - | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons" | 2187051 | 4.2834e-05 | 0.0037451 | -0.027332 | -0.97433 | - | Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons" | 1435488 | 0.00012763 | 0.0021404 | -0.071668 | -0.94901 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref new file mode 100644 index 0000000000000000000000000000000000000000..98c92990c689040a03bdf5ec976380ede7e5602e --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref @@ -0,0 +1,623 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 5000 | 6621 | 1.3242 | + | "nTracksSelected" | 5000 | 6621 | 1.3242 | +DefaultGECFilter INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3115051 | 623.01 | 0.10048 | 623.00 | 624.00 | + | "event size statistics (KBytes)" | 5195 | 90694 | 17.458 | 5.8559 | 8.0000 | 41.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4249 | 78765 | 18.537 | + | "Created long tracks" | 4249 | 812 | 0.19110 | + | "Empty input tracks" | 751 | + | "Input tracks" | 4249 | 80393 | 18.920 | + | "Number of candidate bins per track" | 78765 | 16601 | 0.21077 | 1.1445 | 0.0000 | 33.000 | + | "Number of complete candidates/track 1st Loop" | 6961 | 530 | 0.076138 | 0.26576 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 6668 | 288 | 0.043191 | 0.20329 | 0.0000 | 1.0000 | + | "Number of x candidates per track 1st Loop" | 6961 | 1933 | 0.27769 | 0.58106 | + | "Number of x candidates per track 2nd Loop" | 6668 | 7188 | 1.0780 | 1.7163 | + | "Percentage second loop execution" | 6961 | 6668 | 0.95791 | + | "Removed duplicates" | 4249 | 5 | 0.0011767 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 839904 | 489688 | 0.58303 | 0.53512 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 453557 | 269621 | 0.59446 | 0.52867 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 404799 | 232043 | 0.57323 | 0.53456 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 15000 | 125297 | 8.3531 | 11.663 | 0.0000 | 281.00 | + | "Created XZ tracks (part 1)" | 15000 | 113516 | 7.5677 | 10.547 | 0.0000 | 197.00 | + | "Created XZ tracks in case 0" | 10000 | 103690 | 10.369 | 13.254 | 0.0000 | 281.00 | + | "Created XZ tracks in case 1" | 10000 | 79570 | 7.9570 | 10.921 | 0.0000 | 268.00 | + | "Created XZ tracks in case 2" | 10000 | 55553 | 5.5553 | 8.0547 | 0.0000 | 190.00 | + | "Created full hit combinations in case 0" | 131806 | 131806 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 83852 | 83852 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 62678 | 62678 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 10000 | 104019 | 10.402 | 9.3786 | 0.0000 | 89.000 | + | "Created seed tracks (part 0)" | 5000 | 73630 | 14.726 | 13.468 | 0.0000 | 119.00 | + | "Created seed tracks (part 1)" | 5000 | 69624 | 13.925 | 12.655 | 0.0000 | 101.00 | + | "Created seed tracks in case 0" | 10000 | 65385 | 6.5385 | 6.0523 | 0.0000 | 48.000 | + | "Created seed tracks in case 1" | 10000 | 109340 | 10.934 | 9.8980 | 0.0000 | 83.000 | + | "Created seed tracks in case 2" | 10000 | 139413 | 13.941 | 12.665 | 0.0000 | 116.00 | + | "Created seed tracks in recovery step" | 5000 | 3841 | 0.76820 | 1.2911 | 0.0000 | 13.000 | + | "Created two-hit combinations in case 0" | 655644 | 5037751 | 7.6837 | 7.3882 | 0.0000 | 69.000 | + | "Created two-hit combinations in case 1" | 636592 | 2870938 | 4.5099 | 4.4220 | 0.0000 | 56.000 | + | "Created two-hit combinations in case 2" | 597846 | 2861591 | 4.7865 | 4.8325 | 0.0000 | 96.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 65 | + | "chi2 cut" | 65 | + | "nIterations" | 812 | 1910 | 2.3522 | + | "nOutlierIterations" | 747 | 378 | 0.50602 | + | "nTracksInput" | 5000 | 812 | 0.16240 | + | "nTracksOutput" | 5000 | 682 | 0.13640 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 35 | + | "chi2 cut" | 322 | + | "nIterations" | 6621 | 13443 | 2.0304 | + | "nOutlierIterations" | 6586 | 2609 | 0.39614 | + | "nTracksInput" | 5000 | 6621 | 1.3242 | + | "nTracksOutput" | 5000 | 6264 | 1.2528 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4185 | 33303.48 | 7.9578 | + | "#MatchingMLP" | 11289 | 10672.47 | 0.94539 | + | "#MatchingTracks" | 4185 | 6621 | 1.5821 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 2329 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 567219 |-6.883843e+07 | -121.36 | 1147.9 | -2656.2 | 2657.0 | + | "Average X in T1V" | 662511 |-1.072452e+08 | -161.88 | 1156.2 | -2657.0 | 2656.6 | + | "Average X in T1X1" | 655644 |-2.659714e+07 | -40.566 | 1111.0 | -2646.6 | 2647.0 | + | "Average X in T1X2" | 674054 |-2.018099e+07 | -29.940 | 1056.0 | -2647.0 | 2647.1 | + | "Average X in T2U" | 650380 | -2076269 | -3.1924 | 1087.5 | -2655.5 | 2656.9 | + | "Average X in T2V" | 688360 | -9227259 | -13.405 | 1099.3 | -2655.3 | 2656.5 | + | "Average X in T2X1" | 619546 | -2221895 | -3.5863 | 1094.1 | -2645.8 | 2646.6 | + | "Average X in T2X2" | 638858 | -7666129 | -12.000 | 1086.6 | -2645.4 | 2646.9 | + | "Average X in T3U" | 716639 | 3331021 | 4.6481 | 1263.5 | -3187.5 | 3190.1 | + | "Average X in T3V" | 745929 |-5.115745e+07 | -68.582 | 1214.9 | -3189.3 | 3189.7 | + | "Average X in T3X1" | 687399 |-2.080339e+07 | -30.264 | 1265.4 | -3176.8 | 3177.5 | + | "Average X in T3X2" | 781921 |1.320058e+07 | 16.882 | 1252.4 | -3177.2 | 3178.4 | + | "Hits in T1U" | 20000 | 567219 | 28.361 | 25.476 | 0.0000 | 197.00 | + | "Hits in T1V" | 20000 | 662511 | 33.126 | 25.213 | 0.0000 | 210.00 | + | "Hits in T1X1" | 20000 | 655644 | 32.782 | 25.596 | 0.0000 | 167.00 | + | "Hits in T1X2" | 20000 | 674054 | 33.703 | 25.550 | 0.0000 | 181.00 | + | "Hits in T2U" | 20000 | 650380 | 32.519 | 25.338 | 0.0000 | 237.00 | + | "Hits in T2V" | 20000 | 688360 | 34.418 | 27.364 | 0.0000 | 197.00 | + | "Hits in T2X1" | 20000 | 619546 | 30.977 | 24.361 | 0.0000 | 176.00 | + | "Hits in T2X2" | 20000 | 638858 | 31.943 | 25.766 | 0.0000 | 184.00 | + | "Hits in T3U" | 20000 | 716639 | 35.832 | 27.345 | 0.0000 | 192.00 | + | "Hits in T3V" | 20000 | 745929 | 37.296 | 27.487 | 0.0000 | 185.00 | + | "Hits in T3X1" | 20000 | 687399 | 34.370 | 26.663 | 0.0000 | 193.00 | + | "Hits in T3X2" | 20000 | 781921 | 39.096 | 30.309 | 0.0000 | 210.00 | + | "Total number of hits" | 5000 | 8088460 | 1617.7 | 1178.8 | 35.000 | 7487.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 5000 | 2428479 | 485.70 | 935.94 | 0.0000 | 16663. | + | "# Rich1Gas Segments" | 5000 | 6827 | 1.3654 | 1.8193 | 0.0000 | 15.000 | + | "# Rich2Gas Photons" | 5000 | 292732 | 58.546 | 158.21 | 0.0000 | 2795.0 | + | "# Rich2Gas Segments" | 5000 | 1756 | 0.35120 | 0.74529 | 0.0000 | 6.0000 | + | "# Selected Tracks" | 5000 | 6827 | 1.3654 | 1.8193 | 0.0000 | 15.000 | + |*"RICH selection efficiency" | 6877 | 6827 |( 99.27294 +- 0.1024475)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 6195 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 6195 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 6195 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 682 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 682 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 682 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 997893 | 199.58 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | + | "Nb of Produced Tracks" | 5000 | 105047 | 21.009 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1239405 | 3.4953e-05 | 0.0029285 | -0.0023308 | -0.99936 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1239405 | 3.4953e-05 | 0.0029285 | -0.0023308 | -0.99936 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1239405 | 3.4953e-05 | 0.0029285 | -0.0023308 | -0.99936 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 296 |-0.00016743 | 0.0019756 | 0.58077 | 0.75065 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29992 | 0.0007368 | 0.0027458 | -0.35027 | -0.70002 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1208 |-4.7632e-05 | 0.0022829 | 0.063092 | 0.066851 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 | 0.00017243 | 0.0021880 | 0.096271 | 0.22265 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6950 |-5.5938e-05 | 0.0023765 | 0.14041 | -0.1653 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21653 |-0.00010852 | 0.0027337 | 0.23185 | -0.74219 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 151419 |-9.5513e-05 | 0.0029546 | 0.18993 | -1.0258 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 415953 |-0.00014191 | 0.0029547 | 0.1152 | -0.99503 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 385486 |-4.3412e-05 | 0.0029082 | -0.02539 | -0.95377 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 223705 | 0.00042242 | 0.0029260 | -0.28023 | -0.95625 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 296 |-0.00016743 | 0.0019756 | 0.58077 | 0.75065 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29992 | 0.0007368 | 0.0027458 | -0.35027 | -0.70002 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1208 |-4.7632e-05 | 0.0022829 | 0.063092 | 0.066851 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 | 0.00017243 | 0.0021880 | 0.096271 | 0.22265 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6950 |-5.5938e-05 | 0.0023765 | 0.14041 | -0.1653 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21653 |-0.00010852 | 0.0027337 | 0.23185 | -0.74219 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 151419 |-9.5513e-05 | 0.0029546 | 0.18993 | -1.0258 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 415953 |-0.00014191 | 0.0029547 | 0.1152 | -0.99503 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 385486 |-4.3412e-05 | 0.0029082 | -0.02539 | -0.95377 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 223705 | 0.00042242 | 0.0029260 | -0.28023 | -0.95625 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2090325 | 4.5862e-05 | 0.0028911 | -0.020158 | -0.93005 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2090325 | 4.5862e-05 | 0.0028911 | -0.020158 | -0.93005 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2090325 | 4.5862e-05 | 0.0028911 | -0.020158 | -0.93005 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2090325 | 3.1716 | 1.8157 | -0.017836 | -1.1953 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2090325 | 0.041641 | 0.010727 | -0.73171 | -0.28977 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 850920 | 6.156e-05 | 0.0028364 | -0.047277 | -0.82113 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 850920 | 6.156e-05 | 0.0028364 | -0.047277 | -0.82113 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 850920 | 6.156e-05 | 0.0028364 | -0.047277 | -0.82113 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59 | 0.00023167 | 0.0021161 | 0.49144 | 0.23318 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42953 | 3.1606e-05 | 0.0027146 | 0.018635 | -0.69908 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 138 |-0.00021484 | 0.0021067 | -0.0080818 | 0.059651 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 565 | 0.00070969 | 0.0023567 | -0.6146 | -0.14647 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2770 | 0.00086059 | 0.0024287 | -0.49238 | -0.098412 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12336 | 0.00056602 | 0.0025853 | -0.3607 | -0.39027 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73751 | 0.00045899 | 0.0027531 | -0.22038 | -0.65938 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 271672 | 0.00012547 | 0.0028952 | -0.074588 | -0.88563 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307921 |-5.8725e-05 | 0.0028657 | 0.0017273 | -0.86153 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 138755 |-0.00015764 | 0.0027613 | 0.047697 | -0.70897 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59 | 0.00023167 | 0.0021161 | 0.49144 | 0.23318 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42953 | 3.1606e-05 | 0.0027146 | 0.018635 | -0.69908 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 138 |-0.00021484 | 0.0021067 | -0.0080818 | 0.059651 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 565 | 0.00070969 | 0.0023567 | -0.6146 | -0.14647 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2770 | 0.00086059 | 0.0024287 | -0.49238 | -0.098412 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12336 | 0.00056602 | 0.0025853 | -0.3607 | -0.39027 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73751 | 0.00045899 | 0.0027531 | -0.22038 | -0.65938 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 271672 | 0.00012547 | 0.0028952 | -0.074588 | -0.88563 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307921 |-5.8725e-05 | 0.0028657 | 0.0017273 | -0.86153 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 138755 |-0.00015764 | 0.0027613 | 0.047697 | -0.70897 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 127548 | 7.0033e-05 | 0.0018672 | -0.039781 | -0.91897 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 127548 | 7.0033e-05 | 0.0018672 | -0.039781 | -0.91897 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 107942 | 6.4336e-05 | 0.0018844 | -0.035537 | -0.94694 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19606 | 9.7754e-05 | 0.0017808 | -0.058504 | -0.77254 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3549 | 4.2753e-05 | 0.0017646 | -0.078132 | -0.73061 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9035 | 5.5633e-05 | 0.0018602 |-0.00043917 | -0.90652 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6803 | 8.1085e-06 | 0.0018868 | -0.002244 | -0.96336 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4651 |-1.9059e-05 | 0.0018467 | 0.0046541 | -0.8967 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5934 | 8.0573e-05 | 0.0018440 | -0.050268 | -0.87322 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9227 |-1.1218e-05 | 0.0018768 | -0.0030252 | -0.91302 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10059 | 4.1022e-05 | 0.0018890 | -0.038119 | -0.9459 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11161 | 0.00012734 | 0.0019061 | -0.040531 | -0.96764 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13565 | 0.00010044 | 0.0019222 | -0.069616 | -1.0214 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11750 | 0.00015068 | 0.0019168 | -0.066521 | -1.0074 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11575 | 9.3621e-05 | 0.0018843 | -0.070615 | -0.95778 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10633 |-2.3935e-05 | 0.0018627 | 0.0067905 | -0.90485 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1004 | 8.6442e-05 | 0.0016986 | -0.2418 | -0.53641 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1180 | 0.00011466 | 0.0017652 | -0.0014446 | -0.80792 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 780 | 0.00032069 | 0.0017188 | -0.016198 | -0.69425 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 405 | 0.00012159 | 0.0016180 | 0.064234 | -0.64983 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1787 | 3.7405e-05 | 0.0017232 | -0.096364 | -0.64999 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2268 | 0.00020878 | 0.0017886 | -0.11086 | -0.78436 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2097 | 9.5698e-05 | 0.0018049 | -0.067951 | -0.77185 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2317 | 0.000164 | 0.0018026 | -0.13678 | -0.80976 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2043 | 0.00013902 | 0.0018677 | -0.11018 | -0.92709 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2110 |-6.3114e-05 | 0.0018212 | 0.054599 | -0.86313 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1970 | 6.4599e-05 | 0.0017637 | 0.0020888 | -0.74688 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1645 |-2.4077e-05 | 0.0017379 | 0.046408 | -0.67405 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4553 | 5.3601e-05 | 0.0017486 | -0.11645 | -0.68779 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10215 | 6.4026e-05 | 0.0018471 | -0.0017416 | -0.89206 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7583 | 4.7556e-05 | 0.0018693 | -0.012809 | -0.92953 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5056 |-6.7503e-06 | 0.0018282 | 0.0039343 | -0.87273 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7721 | 6.9664e-05 | 0.0018143 | -0.058538 | -0.81975 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11495 | 3.9755e-05 | 0.0018591 | -0.031022 | -0.88849 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12156 | 5.1664e-05 | 0.0018731 | -0.044538 | -0.91435 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13478 | 0.00013384 | 0.0018882 | -0.056325 | -0.94173 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15608 | 0.00010567 | 0.0019149 | -0.075119 | -1.0093 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13860 | 0.00011676 | 0.0019036 | -0.04525 | -0.98983 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13545 | 8.8813e-05 | 0.0018649 | -0.059666 | -0.92591 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12278 |-2.3956e-05 | 0.0018444 | 0.011821 | -0.87259 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 155618 | 6.9967e-05 | 0.0018669 | -0.037269 | -0.91668 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 155618 | 6.9967e-05 | 0.0018669 | -0.037269 | -0.91668 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 124237 | 5.9824e-05 | 0.0018833 | -0.025164 | -0.94428 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31381 | 0.00010608 | 0.0018072 | -0.080848 | -0.8095 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3732 | 0.00026547 | 0.0018384 | -0.16557 | -0.82878 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9878 | -0.0001095 | 0.0018486 | 0.050765 | -0.89638 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6093 |-5.1737e-05 | 0.0017735 | 0.065676 | -0.76034 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4280 | 4.5085e-06 | 0.0017737 | -0.05229 | -0.7209 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6343 | 0.00015137 | 0.0018574 | -0.093913 | -0.90488 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10144 | 6.6536e-05 | 0.0018783 | -0.051789 | -0.94126 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11723 |-2.0887e-05 | 0.0018856 | 0.0092244 | -0.94469 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16160 |-5.3479e-06 | 0.0019136 | 0.025751 | -1.0072 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16406 | 8.3498e-05 | 0.0019262 | -0.031449 | -1.0146 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13272 | 0.00010747 | 0.0019002 | -0.049112 | -0.97116 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14849 | 0.00013724 | 0.0018989 | -0.060575 | -0.96466 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11357 | 9.4368e-05 | 0.0018703 | -0.028597 | -0.90672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 749 | 0.00032591 | 0.0018913 | -0.23914 | -0.8556 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2507 | 7.4684e-05 | 0.0017666 | -0.15944 | -0.75523 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1991 | 0.00019115 | 0.0016972 | -0.20166 | -0.5378 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1349 | 9.2227e-05 | 0.0017401 | -0.19486 | -0.64035 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1636 | 0.00015968 | 0.0018134 | -0.094193 | -0.87311 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3166 | 0.00010809 | 0.0018031 | -0.07223 | -0.80905 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3560 | 3.4509e-05 | 0.0018117 | -0.021697 | -0.79021 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4262 | 4.285e-05 | 0.0018293 | -0.017051 | -0.85418 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3825 | 9.9134e-05 | 0.0018472 | -0.056004 | -0.88393 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3270 | 4.8371e-05 | 0.0018040 | -0.034709 | -0.83577 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2753 | 0.00011993 | 0.0018028 | -0.032192 | -0.81055 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2313 | 0.00024066 | 0.0018395 | -0.15785 | -0.83784 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4481 | 0.00027533 | 0.0018473 | -0.17766 | -0.83399 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12385 |-6.4318e-05 | 0.0018305 |-0.00054909 | -0.87502 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8084 | 1.5546e-05 | 0.0017560 | -0.0084194 | -0.72599 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5629 | 2.7731e-05 | 0.0017653 | -0.089496 | -0.70466 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7979 | 0.00015326 | 0.0018475 | -0.094098 | -0.89733 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13310 | 7.7838e-05 | 0.0018582 | -0.057949 | -0.90682 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15283 |-7.0956e-06 | 0.0018676 | 0.00089794 | -0.90866 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20422 | 5.1594e-06 | 0.0018957 | 0.016234 | -0.97616 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20231 | 8.6646e-05 | 0.0019106 | -0.036251 | -0.98958 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16542 | 9.4942e-05 | 0.0018804 | -0.044851 | -0.94356 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17602 | 0.00013437 | 0.0018833 | -0.056097 | -0.94054 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13670 | 0.00012255 | 0.0018653 | -0.05359 | -0.89818 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 283166 | 6.9997e-05 | 0.0018671 | -0.038399 | -0.91771 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 283166 | 6.9997e-05 | 0.0018671 | -0.038399 | -0.91771 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 232179 | 6.1921e-05 | 0.0018838 | -0.029987 | -0.94554 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 50987 | 0.00010285 | 0.0017970 | -0.07231 | -0.79531 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 283166 | 3.0735 | 1.8070 | 0.074039 | -1.1938 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 283166 | 0.025126 | 0.0054046 | -0.59723 | -0.52496 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 155984 | 0.00016547 | 0.0028168 | -0.082971 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 155984 | 0.00016547 | 0.0028168 | -0.082971 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 155984 | 0.00016547 | 0.0028168 | -0.082971 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 278 | -0.0002175 | 0.0019641 | 0.6128 | 0.86933 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2525 | 0.0007192 | 0.0026255 | -0.39146 | -0.51608 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1162 |-1.6815e-05 | 0.0022748 | 0.036956 | 0.071876 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2524 | 0.00018439 | 0.0021920 | 0.074745 | 0.23502 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5276 |-2.2486e-05 | 0.0023222 | 0.096376 | -0.097625 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 10356 |-0.00017889 | 0.0026251 | 0.14276 | -0.6103 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24389 |-7.3063e-05 | 0.0028126 | 0.12733 | -0.87555 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 45403 | 0.00012938 | 0.0028983 | -0.053807 | -0.94593 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 43895 | 0.00019451 | 0.0028743 | -0.16207 | -0.91526 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 20145 | 0.00063044 | 0.0028743 | -0.39286 | -0.82273 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 278 | -0.0002175 | 0.0019641 | 0.6128 | 0.86933 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2525 | 0.0007192 | 0.0026255 | -0.39146 | -0.51608 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1162 |-1.6815e-05 | 0.0022748 | 0.036956 | 0.071876 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2524 | 0.00018439 | 0.0021920 | 0.074745 | 0.23502 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5276 |-2.2486e-05 | 0.0023222 | 0.096376 | -0.097625 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 10356 |-0.00017889 | 0.0026251 | 0.14276 | -0.6103 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24389 |-7.3063e-05 | 0.0028126 | 0.12733 | -0.87555 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 45403 | 0.00012938 | 0.0028983 | -0.053807 | -0.94593 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 43895 | 0.00019451 | 0.0028743 | -0.16207 | -0.91526 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 20145 | 0.00063044 | 0.0028743 | -0.39286 | -0.82273 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 344257 | 0.00010159 | 0.0028135 | -0.063101 | -0.83393 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 344257 | 0.00010159 | 0.0028135 | -0.063101 | -0.83393 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 344257 | 0.00010159 | 0.0028135 | -0.063101 | -0.83393 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 344257 | 3.0609 | 1.7933 | 0.086745 | -1.1367 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 344257 | 0.042168 | 0.010797 | -0.81403 | -0.16942 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 188273 | 4.7505e-05 | 0.0028096 | -0.046525 | -0.8026 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 188273 | 4.7505e-05 | 0.0028096 | -0.046525 | -0.8026 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 188273 | 4.7505e-05 | 0.0028096 | -0.046525 | -0.8026 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42 | -8.25e-05 | 0.0019630 | 0.49503 | 0.76851 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 9562 |-0.00020386 | 0.0027978 | 0.14895 | -0.84344 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 98 | 0.00026442 | 0.0017619 | 0.55614 | 0.11999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 450 | 0.00074778 | 0.0024022 | -0.56283 | -0.28361 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1300 | 0.00070398 | 0.0024285 | -0.35845 | -0.2254 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4069 | 0.00046474 | 0.0025472 | -0.28531 | -0.38875 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19243 | 0.00041475 | 0.0027091 | -0.21649 | -0.60764 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 57069 | 7.8485e-05 | 0.0028561 | -0.067125 | -0.84491 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 60046 |-2.6865e-05 | 0.0028575 | -0.017857 | -0.86932 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 36394 |-0.00013401 | 0.0027595 | 0.043047 | -0.71509 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42 | -8.25e-05 | 0.0019630 | 0.49503 | 0.76851 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 9562 |-0.00020386 | 0.0027978 | 0.14895 | -0.84344 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 98 | 0.00026442 | 0.0017619 | 0.55614 | 0.11999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 450 | 0.00074778 | 0.0024022 | -0.56283 | -0.28361 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1300 | 0.00070398 | 0.0024285 | -0.35845 | -0.2254 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4069 | 0.00046474 | 0.0025472 | -0.28531 | -0.38875 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19243 | 0.00041475 | 0.0027091 | -0.21649 | -0.60764 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 57069 | 7.8485e-05 | 0.0028561 | -0.067125 | -0.84491 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 60046 |-2.6865e-05 | 0.0028575 | -0.017857 | -0.86932 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 36394 |-0.00013401 | 0.0027595 | 0.043047 | -0.71509 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39443 | 4.6712e-05 | 0.0018554 | -0.019794 | -0.90351 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39443 | 4.6712e-05 | 0.0018554 | -0.019794 | -0.90351 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32745 | 5.3046e-05 | 0.0018772 | -0.027016 | -0.93371 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6698 | 1.9331e-05 | 0.0017577 | 0.011771 | -0.76499 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 678 | 1.0396e-06 | 0.0017744 | 0.0023834 | -0.73869 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3158 | 0.00012981 | 0.0018862 | -0.076724 | -0.94525 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2746 |-6.4846e-05 | 0.0018894 | -0.0050527 | -0.99893 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2027 |-9.1589e-05 | 0.0018528 | 0.052814 | -0.92632 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1313 | 0.00032114 | 0.0017694 | -0.15268 | -0.74775 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2119 | 1.7792e-05 | 0.0018753 | -0.0541 | -0.9128 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2533 |-4.5774e-05 | 0.0018959 | 0.022235 | -0.94641 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3241 | 0.00012399 | 0.0018909 | -0.015122 | -0.95602 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3977 | 4.1128e-05 | 0.0018913 | -0.0077544 | -0.94398 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3589 | 0.00025162 | 0.0018844 | -0.12386 | -0.94439 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3709 | 8.2194e-05 | 0.0018875 | -0.062011 | -0.95501 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3655 |-0.00015305 | 0.0018344 | 0.087808 | -0.83823 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 348 |-0.00016664 | 0.0017719 | -0.15664 | -0.87774 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 512 | 0.00014558 | 0.0018298 | -0.030082 | -0.93582 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 419 | 0.000245 | 0.0017656 | -0.013507 | -0.86519 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 188 |-0.00016176 | 0.0018171 | 0.28922 | -0.88214 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 665 | -0.000182 | 0.0016764 | 0.015139 | -0.62894 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 851 | 4.6962e-06 | 0.0017953 | -0.024551 | -0.7667 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 695 | 8.7889e-05 | 0.0017639 | -0.041294 | -0.73922 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 763 | 0.00015468 | 0.0017625 | -0.071655 | -0.80385 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 615 |-3.7147e-05 | 0.0017708 | 0.018099 | -0.77984 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 567 |-0.00016807 | 0.0016733 | 0.15365 | -0.61809 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 552 | 3.1237e-05 | 0.0017441 | 0.067596 | -0.74221 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 523 | 8.3156e-05 | 0.0017007 | 0.076711 | -0.66318 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1026 |-5.6667e-05 | 0.0017753 | -0.05191 | -0.76974 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3670 | 0.00013239 | 0.0018771 | -0.069865 | -0.94261 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3165 |-1.2701e-05 | 0.0018727 | -0.014759 | -0.97136 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2215 | -9.666e-05 | 0.0018504 | 0.069276 | -0.92523 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1978 | 0.00015362 | 0.0017551 | -0.08185 | -0.72987 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2970 | 1.3794e-05 | 0.0018512 | -0.045518 | -0.87029 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3228 |-1.4838e-05 | 0.0018670 | 0.0045744 | -0.90283 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4004 | 0.00013055 | 0.0018642 | -0.026472 | -0.9242 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4592 | 2.7634e-05 | 0.0018714 | -0.0017319 | -0.91684 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4156 | 0.00019095 | 0.0018612 | -0.076695 | -0.92231 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4261 | 7.51e-05 | 0.0018683 | -0.045924 | -0.9285 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4178 |-0.00011663 | 0.0018164 | 0.079115 | -0.81118 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13507 | 3.4555e-05 | 0.0018598 | -0.014393 | -0.88221 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13507 | 3.4555e-05 | 0.0018598 | -0.014393 | -0.88221 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7664 |-1.4144e-07 | 0.0018954 | 0.0017308 | -0.93003 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5843 | 7.7338e-05 | 0.0018140 | -0.030584 | -0.82052 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 412 | 3.2216e-05 | 0.0019225 | 0.075482 | -1.0132 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 382 |-0.00051643 | 0.0020512 | 0.22075 | -1.2697 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 244 |-0.00025712 | 0.0017560 | 0.18156 | -0.49934 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 197 |-0.00043543 | 0.0018169 | 0.21123 | -0.78535 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 446 | 0.00017174 | 0.0020153 | -0.071028 | -1.0987 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 771 | 1.1351e-05 | 0.0018500 | 0.0095348 | -0.82353 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 919 |-2.2527e-05 | 0.0018050 | 0.046517 | -0.81034 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1080 | 2.7807e-05 | 0.0019346 | -0.023549 | -0.93477 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1083 |-3.7278e-05 | 0.0019440 |-0.00076159 | -1.0332 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 862 | -4.356e-05 | 0.0018931 | 0.030268 | -0.97827 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 728 | 0.00032733 | 0.0017689 | -0.18701 | -0.67071 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 540 | 7.1923e-05 | 0.0018897 | -0.0014775 | -0.85811 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 379 | -6e-05 | 0.0019200 | -0.032296 | -0.90724 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 446 | 7.5221e-05 | 0.0018361 | -0.15629 | -0.96713 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 343 | 2.0556e-05 | 0.0017890 | 0.0062294 | -0.67283 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 242 | 0.0002161 | 0.0017971 | -0.12904 | -0.73618 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 541 | 4.496e-05 | 0.0018800 | -0.023446 | -0.89962 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 658 | 5.2193e-05 | 0.0017209 | -0.016996 | -0.5785 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 527 |-2.3435e-05 | 0.0016783 | 0.10178 | -0.54406 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 554 | 0.000185 | 0.0017404 | 0.066646 | -0.76539 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 544 | 0.00015892 | 0.0018162 | -0.14398 | -0.90808 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 548 | 5.5217e-05 | 0.0018161 | -0.045791 | -1.0009 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 577 | 0.00010817 | 0.0019009 | 0.015351 | -0.97761 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 484 | 0.00011708 | 0.0018868 | -0.060127 | -0.7994 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 791 |-1.0818e-05 | 0.0019219 | 0.025363 | -0.95762 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 828 |-0.00018994 | 0.0019577 | -0.0069792 | -1.1758 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 587 | -0.000105 | 0.0017795 | 0.086538 | -0.61576 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 439 |-8.3861e-05 | 0.0018352 | 0.022483 | -0.82897 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 987 | 9.6271e-05 | 0.0019369 | -0.038484 | -0.98575 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1429 | 3.0969e-05 | 0.0017893 | -0.0042478 | -0.71193 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1446 |-2.2871e-05 | 0.0017580 | 0.064904 | -0.7159 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1634 | 8.5444e-05 | 0.0018673 | -0.0087659 | -0.85901 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1627 | 2.6493e-05 | 0.0019056 | -0.049943 | -0.99911 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1410 |-1.1395e-06 | 0.0018611 | -0.0033095 | -0.98629 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1305 | 0.00023145 | 0.0018310 | -0.10014 | -0.83151 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1024 | 9.5396e-05 | 0.0018883 | -0.031944 | -0.82884 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 52950 | 4.3682e-05 | 0.0018565 | -0.018458 | -0.89816 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 52950 | 4.3682e-05 | 0.0018565 | -0.018458 | -0.89816 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 40409 | 4.3251e-05 | 0.0018807 | -0.021841 | -0.93315 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 12541 | 4.4956e-05 | 0.0017830 | -0.0064086 | -0.79005 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 52950 | 3.2403 | 1.8226 | -0.086302 | -1.2053 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 52950 | 0.025141 | 0.0053636 | -0.58875 | -0.54728 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 445 | 33.558 | 21.979 | 0.22132 | -1.017 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 49.492 | 18.663 | -0.16521 | -1.1163 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 2463 | 37.3 | 23.381 | 0.033195 | -1.1768 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 20.292 | 15.839 | 0.45858 | -0.93102 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 1756 | 56.908 | 3.9223 | 0.24634 | -0.75054 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1748 | 36.641 | 10.091 | 0.12129 | -0.95762 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1756 | 55.98 | 3.8670 | 0.17453 | -0.68976 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1756 | 55.302 | 3.8336 | 0.10667 | -0.63486 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 627 | 23.231 | 15.125 | 0.2664 | -0.95808 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 473 | 228.3 | 160.56 | 0.30083 | -0.96363 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 6827 | 597.97 | 9.5325 | 1.9542 | 6.5999 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 360.31 | 135.66 | -0.14817 | -1.0995 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6827 | 587.17 | 10.718 | 1.0447 | 2.974 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6827 | 579.08 | 13.549 | 0.36814 | 0.53164 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 2568 | 258.85 | 169.34 | 0.08671 | -1.1703 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 93 | 126.75 | 99.599 | 0.48089 | -0.89137 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 1796 | 359.62 | 26.423 | 0.44175 | -0.2581 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1796 | 231.65 | 62.845 | 0.14116 | -0.90761 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1796 | 353.77 | 25.865 | 0.35888 | -0.27855 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1796 | 349.31 | 25.820 | 0.2886 | -0.27643 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 677 | 139.55 | 97.690 | 0.30172 | -0.97704 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2947 | 1063.5 | 22.030 | 1.4666 | 2.9208 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 1664 | 1960 | 139.25 | 0.32765 | -0.32401 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 445 | 23.413 | 15.622 | 0.32082 | -0.87173 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 6827 | 58.801 | 3.7037 | -0.81498 | 3.8085 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 35.062 | 13.865 | -0.088069 | -1.0441 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6827 | 57.715 | 3.6829 | -0.76221 | 3.5907 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6827 | 56.908 | 3.7317 | -0.68146 | 3.1744 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 2463 | 26.058 | 16.528 | 0.10319 | -1.0862 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 13.676 | 10.605 | 0.48841 | -0.85681 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 1756 | 35.27 | 7.5829 | -0.91405 | 0.44221 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1748 | 23.781 | 8.1432 | 0.023156 | -0.82893 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1756 | 34.711 | 7.5247 | -0.91791 | 0.3945 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1756 | 34.292 | 7.4685 | -0.91818 | 0.35927 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 627 | 15.733 | 10.361 | 0.28191 | -0.95328 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27956 | -0.0019888 | 0.31749 | 1.0846 | 14.098 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 628084 | -0.0063334 | 0.49939 | -2.4451 | 89.411 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 510028 | -0.0010035 | 0.39327 | -0.85473 | 76.281 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 628084 | -0.0063334 | 0.49939 | -2.4451 | 89.411 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 628084 | -0.0063334 | 0.49939 | -2.4451 | 89.411 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 161032 | -0.0011054 | 0.33480 | 1.1129 | 12.78 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 5028 | 0.00080841 | 5.4193 | 1.1447 | 2.0628 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 164560 | -0.87894 | 8.7733 | -0.69057 | 4.6173 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 138272 | 0.029636 | 6.7673 | 0.81352 | 4.3631 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 164560 | -0.87894 | 8.7733 | -0.69057 | 4.6173 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 164560 | -0.87894 | 8.7733 | -0.69057 | 4.6173 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 38444 | 0.012771 | 5.8226 | 0.98529 | 3.3837 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 8428988 | 0.078469 | 0.070607 | 1.59 | 3.0588 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 9468377 | 0.062059 | 0.045507 | 1.5969 | 3.273 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 6554300 | 1.286 | 0.89424 | 6.9557 | 101.26 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 8218009 | 1.1521 | 0.57817 | 9.0756 | 190.6 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4127065 | -13.215 | 238.63 | 0.018737 | 0.12206 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4127065 | -1357.3 | 66.615 | -0.8993 | 0.4476 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 533.39 | 324.68 | 0.06772 | -0.7005 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 5000 | 1685.2 | 1371.4 | 1.2132 | 3.1478 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 8428988 | -10.004 | 242.46 | -0.0084632 | -0.020094 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 8428988 | 14.98 | 271.67 | 0.096415 | -0.73514 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 4301923 | -6.5646 | 246.59 | -0.034001 | -0.1365 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 4301923 | 1369.2 | 77.765 | 0.85733 | -0.0040774 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 4808838 | 3899.9 | 85.603 | -0.086903 | -0.95793 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 4808838 | 8.4122 | 299.07 | 0.038022 | -0.2886 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 4659539 | -3896.5 | 85.826 | 0.093016 | -0.96445 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 4659539 | 11.144 | 307.18 | 0.010722 | -0.42358 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 672.18 | 329.47 | -0.73277 | -0.65437 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 5000 | 1893.9 | 1396.8 | 0.7772 | 0.53516 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 2052072 | 2.6215 | 2.1691 | 2.4645 | 9.6646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1308835 | 3.124 | 2.5648 | 2.3578 | 9.6975 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3360907 | 2.8172 | 2.3440 | 2.4478 | 10.059 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 9468377 | 6.6808 | 453.22 | -0.026054 | -1.4776 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 9468377 | 9.9065 | 302.82 | 0.027551 | -0.3625 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2090325 | 0.052012 | 0.00051137 | -0.20768 | -1.1238 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2090325 | 0.051973 | 0.0062994 |-0.00026987 | -0.86757 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2090325 | 4.5922e-05 | 0.0028912 | -0.020133 | -0.92986 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 705829 | 3.3552e-05 | 0.0028437 | -0.041876 | -0.83129 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 139839 | 0.00010152 | 0.0028428 | -0.013967 | -0.84033 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 174682 | 0.00012587 | 0.0028335 | -0.052631 | -0.82171 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1069975 | 3.2191e-05 | 0.0029380 | -0.0020678 | -1.0178 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 283166 | 0.02947 | 0.00022557 | -0.044234 | -1.1091 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 283166 | 0.028158 | 0.0040969 | -0.23191 | -0.99394 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 283166 | 7.0012e-05 | 0.0018670 | -0.038365 | -0.91761 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 86732 | 7.2534e-05 | 0.0018596 | -0.046928 | -0.90495 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 21024 | 6.4065e-05 | 0.0018639 | -0.023629 | -0.92374 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 39982 | 6.5663e-05 | 0.0018856 | -0.029296 | -0.94859 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 135428 | 7.0527e-05 | 0.0018669 | -0.037739 | -0.91579 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 6827 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 6827 | 2042.8 | 15.137 | 0.97894 | 2.1508 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 6827 | 1077.7 | 17.203 | 1.9107 | 6.5673 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 1796 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 1796 | 11458 | 136.29 | 0.32089 | -0.52614 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 1796 | 1969.6 | 144.80 | 0.46389 | -0.20502 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.3654 | 1.8193 | 1.9271 | 5.0643 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.3754 | 1.8288 | 1.9217 | 5.0265 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 426 | 56253 | 14536. | 0.92892 | 0.28291 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18236 | 10034. | 2.8697 | 11.48 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21202 | 11532. | 2.392 | 7.7476 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18318 | 10091. | 2.8508 | 11.317 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18382 | 10134. | 2.8366 | 11.195 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2444 | 33736 | 13925. | 1.71 | 3.305 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 80097 | 10212. | 0.41949 | -0.84442 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 1737 | 30948 | 12198. | 2.149 | 5.5859 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1729 | 33775 | 13547. | 1.7932 | 3.639 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1737 | 31031 | 12249. | 2.136 | 5.5066 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1737 | 31095 | 12288. | 2.1262 | 5.4468 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 608 | 51049 | 14805. | 1.0645 | 0.68295 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 454 | 55947 | 14566. | 0.93508 | 0.30265 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18236 | 10034. | 2.8697 | 11.48 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21130 | 11507. | 2.3994 | 7.8007 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18317 | 10090. | 2.8511 | 11.319 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18379 | 10132. | 2.8371 | 11.199 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2549 | 33531 | 13905. | 1.7168 | 3.3454 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 74 | 79707 | 10221. | 0.42482 | -0.75348 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 1777 | 30826 | 12167. | 2.1711 | 5.6859 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1777 | 33573 | 13518. | 1.8155 | 3.7171 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1777 | 30908 | 12219. | 2.1581 | 5.605 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1777 | 30971 | 12258. | 2.1482 | 5.5441 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 658 | 50830 | 14848. | 1.0646 | 0.66343 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 426 | 56247 | 14524. | 0.92095 | 0.26569 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18233 | 10031. | 2.8733 | 11.526 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21203 | 11529. | 2.3959 | 7.7859 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18316 | 10087. | 2.8545 | 11.363 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18379 | 10130. | 2.8402 | 11.241 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2444 | 33723 | 13926. | 1.7167 | 3.3401 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 80057 | 10258. | 0.41997 | -0.83671 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 1737 | 31530 | 12544. | 2.0501 | 4.9969 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1729 | 34128 | 13712. | 1.7489 | 3.4118 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1737 | 31616 | 12594. | 2.0378 | 4.9253 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1737 | 31681 | 12631. | 2.0284 | 4.8715 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 608 | 51058 | 14771. | 1.0655 | 0.70203 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27956 |-4.8876e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 628084 |-4.4363e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 510028 | 2.7437e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 628084 |-4.4363e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 628084 |-4.4363e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 161032 |-6.6123e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 30307 | 1.0817 | 0.90438 | 0.30973 | -0.60012 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 29987 | 0.049438 | 0.0067707 | -2.5287 | 6.1995 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 5028 |-1.6915e+11 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 164560 |-3.4479e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 138272 |-6.0361e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 164560 |-3.4479e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 164560 |-3.4479e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 38444 |-7.5006e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 7912 | 1.1562 | 0.97226 | 0.41797 | -0.3848 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 7578 | 0.028086 | 0.0033732 | -2.2857 | 4.7759 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 53.193 | 279.67 | 0.11897 | -0.73164 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 53.092 | 281.12 | 0.11149 | -0.80491 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 39.129 | 452.71 | -0.025949 | -1.4772 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 40.448 | 262.42 | 0.042055 | 0.29846 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 31.906 | 455.90 | 0.0056522 | -1.4695 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 40.122 | 359.28 | 0.022639 | -1.0813 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 6877 | 1.173 | 0.48717 | 0.72583 | 0.30517 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 6877 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 2005 | 0.21768 | 0.10790 | -0.079179 | -1.1227 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 6858 | 18235 | 10077. | 2.8382 | 11.269 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 6852 | 1394.6 | 893.76 | 2.3585 | 8.1517 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.armv8.1_a b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.armv8.1_a new file mode 100644 index 0000000000000000000000000000000000000000..3aaab78f670f3e03bc2188f834998a8db0808fba --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.armv8.1_a @@ -0,0 +1,623 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 5000 | 6621 | 1.3242 | + | "nTracksSelected" | 5000 | 6621 | 1.3242 | +DefaultGECFilter INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3115051 | 623.01 | 0.10048 | 623.00 | 624.00 | + | "event size statistics (KBytes)" | 5195 | 90694 | 17.458 | 5.8559 | 8.0000 | 41.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4249 | 78765 | 18.537 | + | "Created long tracks" | 4249 | 812 | 0.19110 | + | "Empty input tracks" | 751 | + | "Input tracks" | 4249 | 80393 | 18.920 | + | "Number of candidate bins per track" | 78765 | 16600 | 0.21075 | 1.1444 | 0.0000 | 33.000 | + | "Number of complete candidates/track 1st Loop" | 6962 | 530 | 0.076128 | 0.26574 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 6669 | 288 | 0.043185 | 0.20327 | 0.0000 | 1.0000 | + | "Number of x candidates per track 1st Loop" | 6962 | 1933 | 0.27765 | 0.58103 | + | "Number of x candidates per track 2nd Loop" | 6669 | 7188 | 1.0778 | 1.7162 | + | "Percentage second loop execution" | 6962 | 6669 | 0.95791 | + | "Removed duplicates" | 4249 | 5 | 0.0011767 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 839907 | 489688 | 0.58303 | 0.53512 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 453560 | 269620 | 0.59445 | 0.52867 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 404801 | 232045 | 0.57323 | 0.53455 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 15000 | 125301 | 8.3534 | 11.664 | 0.0000 | 281.00 | + | "Created XZ tracks (part 1)" | 15000 | 113518 | 7.5679 | 10.548 | 0.0000 | 197.00 | + | "Created XZ tracks in case 0" | 10000 | 103690 | 10.369 | 13.254 | 0.0000 | 281.00 | + | "Created XZ tracks in case 1" | 10000 | 79572 | 7.9572 | 10.921 | 0.0000 | 268.00 | + | "Created XZ tracks in case 2" | 10000 | 55557 | 5.5557 | 8.0550 | 0.0000 | 190.00 | + | "Created full hit combinations in case 0" | 131807 | 131807 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 83854 | 83854 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 62680 | 62680 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 10000 | 104017 | 10.402 | 9.3789 | 0.0000 | 90.000 | + | "Created seed tracks (part 0)" | 5000 | 73630 | 14.726 | 13.469 | 0.0000 | 120.00 | + | "Created seed tracks (part 1)" | 5000 | 69620 | 13.924 | 12.652 | 0.0000 | 100.00 | + | "Created seed tracks in case 0" | 10000 | 65384 | 6.5384 | 6.0521 | 0.0000 | 48.000 | + | "Created seed tracks in case 1" | 10000 | 109336 | 10.934 | 9.8970 | 0.0000 | 83.000 | + | "Created seed tracks in case 2" | 10000 | 139411 | 13.941 | 12.666 | 0.0000 | 117.00 | + | "Created seed tracks in recovery step" | 5000 | 3839 | 0.76780 | 1.2899 | 0.0000 | 13.000 | + | "Created two-hit combinations in case 0" | 655644 | 5037748 | 7.6837 | 7.3882 | 0.0000 | 69.000 | + | "Created two-hit combinations in case 1" | 636593 | 2870953 | 4.5099 | 4.4220 | 0.0000 | 56.000 | + | "Created two-hit combinations in case 2" | 597848 | 2861598 | 4.7865 | 4.8325 | 0.0000 | 96.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 65 | + | "chi2 cut" | 65 | + | "nIterations" | 812 | 1910 | 2.3522 | + | "nOutlierIterations" | 747 | 378 | 0.50602 | + | "nTracksInput" | 5000 | 812 | 0.16240 | + | "nTracksOutput" | 5000 | 682 | 0.13640 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 35 | + | "chi2 cut" | 322 | + | "nIterations" | 6621 | 13443 | 2.0304 | + | "nOutlierIterations" | 6586 | 2609 | 0.39614 | + | "nTracksInput" | 5000 | 6621 | 1.3242 | + | "nTracksOutput" | 5000 | 6264 | 1.2528 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4185 | 33302.79 | 7.9577 | + | "#MatchingMLP" | 11287 | 10670.57 | 0.94539 | + | "#MatchingTracks" | 4185 | 6621 | 1.5821 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 2329 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 567219 |-6.883843e+07 | -121.36 | 1147.9 | -2656.2 | 2657.0 | + | "Average X in T1V" | 662511 |-1.072452e+08 | -161.88 | 1156.2 | -2657.0 | 2656.6 | + | "Average X in T1X1" | 655644 |-2.659714e+07 | -40.566 | 1111.0 | -2646.6 | 2647.0 | + | "Average X in T1X2" | 674054 |-2.018099e+07 | -29.940 | 1056.0 | -2647.0 | 2647.1 | + | "Average X in T2U" | 650380 | -2076269 | -3.1924 | 1087.5 | -2655.5 | 2656.9 | + | "Average X in T2V" | 688360 | -9227259 | -13.405 | 1099.3 | -2655.3 | 2656.5 | + | "Average X in T2X1" | 619546 | -2221895 | -3.5863 | 1094.1 | -2645.8 | 2646.6 | + | "Average X in T2X2" | 638858 | -7666129 | -12.000 | 1086.6 | -2645.4 | 2646.9 | + | "Average X in T3U" | 716639 | 3331021 | 4.6481 | 1263.5 | -3187.5 | 3190.1 | + | "Average X in T3V" | 745929 |-5.115745e+07 | -68.582 | 1214.9 | -3189.3 | 3189.7 | + | "Average X in T3X1" | 687399 |-2.080339e+07 | -30.264 | 1265.4 | -3176.8 | 3177.5 | + | "Average X in T3X2" | 781921 |1.320059e+07 | 16.882 | 1252.4 | -3177.2 | 3178.4 | + | "Hits in T1U" | 20000 | 567219 | 28.361 | 25.476 | 0.0000 | 197.00 | + | "Hits in T1V" | 20000 | 662511 | 33.126 | 25.213 | 0.0000 | 210.00 | + | "Hits in T1X1" | 20000 | 655644 | 32.782 | 25.596 | 0.0000 | 167.00 | + | "Hits in T1X2" | 20000 | 674054 | 33.703 | 25.550 | 0.0000 | 181.00 | + | "Hits in T2U" | 20000 | 650380 | 32.519 | 25.338 | 0.0000 | 237.00 | + | "Hits in T2V" | 20000 | 688360 | 34.418 | 27.364 | 0.0000 | 197.00 | + | "Hits in T2X1" | 20000 | 619546 | 30.977 | 24.361 | 0.0000 | 176.00 | + | "Hits in T2X2" | 20000 | 638858 | 31.943 | 25.766 | 0.0000 | 184.00 | + | "Hits in T3U" | 20000 | 716639 | 35.832 | 27.345 | 0.0000 | 192.00 | + | "Hits in T3V" | 20000 | 745929 | 37.296 | 27.487 | 0.0000 | 185.00 | + | "Hits in T3X1" | 20000 | 687399 | 34.370 | 26.663 | 0.0000 | 193.00 | + | "Hits in T3X2" | 20000 | 781921 | 39.096 | 30.309 | 0.0000 | 210.00 | + | "Total number of hits" | 5000 | 8088460 | 1617.7 | 1178.8 | 35.000 | 7487.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 5000 | 2428479 | 485.70 | 935.94 | 0.0000 | 16663. | + | "# Rich1Gas Segments" | 5000 | 6827 | 1.3654 | 1.8193 | 0.0000 | 15.000 | + | "# Rich2Gas Photons" | 5000 | 292730 | 58.546 | 158.21 | 0.0000 | 2795.0 | + | "# Rich2Gas Segments" | 5000 | 1756 | 0.35120 | 0.74529 | 0.0000 | 6.0000 | + | "# Selected Tracks" | 5000 | 6827 | 1.3654 | 1.8193 | 0.0000 | 15.000 | + |*"RICH selection efficiency" | 6877 | 6827 |( 99.27294 +- 0.1024475)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 6195 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 6195 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 6195 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 682 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 682 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 682 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 997893 | 199.58 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | + | "Nb of Produced Tracks" | 5000 | 105047 | 21.009 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1068544 | 3.5062e-05 | 0.0029285 | -0.0023472 | -0.99935 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1068544 | 3.5062e-05 | 0.0029285 | -0.0023472 | -0.99935 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1068544 | 3.5062e-05 | 0.0029285 | -0.0023472 | -0.99935 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-0.00016622 | 0.0019765 | 0.57944 | 0.74465 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 26246 | 0.00073726 | 0.0027455 | -0.35018 | -0.7 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1037 | -4.729e-05 | 0.0022827 | 0.063525 | 0.065879 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2344 | 0.00017298 | 0.0021881 | 0.095278 | 0.22266 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5944 |-5.5517e-05 | 0.0023765 | 0.14071 | -0.16527 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 18433 |-0.00010765 | 0.0027342 | 0.23188 | -0.74214 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 131386 |-9.5495e-05 | 0.0029545 | 0.18986 | -1.0257 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 360804 |-0.00014177 | 0.0029547 | 0.11519 | -0.99502 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 328955 |-4.3495e-05 | 0.0029083 | -0.025394 | -0.9538 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 193112 | 0.00042265 | 0.0029260 | -0.28022 | -0.95624 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-0.00016622 | 0.0019765 | 0.57944 | 0.74465 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 26246 | 0.00073726 | 0.0027455 | -0.35018 | -0.7 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1037 | -4.729e-05 | 0.0022827 | 0.063525 | 0.065879 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2344 | 0.00017298 | 0.0021881 | 0.095278 | 0.22266 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5944 |-5.5517e-05 | 0.0023765 | 0.14071 | -0.16527 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 18433 |-0.00010765 | 0.0027342 | 0.23188 | -0.74214 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 131386 |-9.5495e-05 | 0.0029545 | 0.18986 | -1.0257 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 360804 |-0.00014177 | 0.0029547 | 0.11519 | -0.99502 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 328955 |-4.3495e-05 | 0.0029083 | -0.025394 | -0.9538 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 193112 | 0.00042265 | 0.0029260 | -0.28022 | -0.95624 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1802042 | 4.5988e-05 | 0.0028911 | -0.020169 | -0.93003 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1802042 | 4.5988e-05 | 0.0028911 | -0.020169 | -0.93003 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1802042 | 4.5988e-05 | 0.0028911 | -0.020169 | -0.93003 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1802042 | 3.1759 | 1.8183 | -0.021095 | -1.1998 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1802042 | 0.042944 | 0.0099852 | -0.85392 | 0.044173 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 733498 | 6.171e-05 | 0.0028364 | -0.047279 | -0.82111 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 733498 | 6.171e-05 | 0.0028364 | -0.047279 | -0.82111 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 733498 | 6.171e-05 | 0.0028364 | -0.047279 | -0.82111 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 49 | 0.00023833 | 0.0021153 | 0.48518 | 0.23039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 38078 | 3.1503e-05 | 0.0027136 | 0.018636 | -0.69908 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 131 |-0.00021484 | 0.0021067 | -0.0080818 | 0.059651 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 488 | 0.00070855 | 0.0023586 | -0.61653 | -0.14321 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2370 | 0.00086106 | 0.0024291 | -0.49242 | -0.099023 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 10455 | 0.00056533 | 0.0025848 | -0.36122 | -0.39003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 62812 | 0.00045929 | 0.0027530 | -0.22033 | -0.6594 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 235611 | 0.00012553 | 0.0028951 | -0.074592 | -0.88564 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 264199 |-5.8478e-05 | 0.0028658 | 0.0017354 | -0.86146 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 119305 |-0.00015737 | 0.0027614 | 0.047725 | -0.70893 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 49 | 0.00023833 | 0.0021153 | 0.48518 | 0.23039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 38078 | 3.1503e-05 | 0.0027136 | 0.018636 | -0.69908 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 131 |-0.00021484 | 0.0021067 | -0.0080818 | 0.059651 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 488 | 0.00070855 | 0.0023586 | -0.61653 | -0.14321 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2370 | 0.00086106 | 0.0024291 | -0.49242 | -0.099023 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 10455 | 0.00056533 | 0.0025848 | -0.36122 | -0.39003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 62812 | 0.00045929 | 0.0027530 | -0.22033 | -0.6594 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 235611 | 0.00012553 | 0.0028951 | -0.074592 | -0.88564 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 264199 |-5.8478e-05 | 0.0028658 | 0.0017354 | -0.86146 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 119305 |-0.00015737 | 0.0027614 | 0.047725 | -0.70893 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 122821 | 6.9884e-05 | 0.0018673 | -0.039939 | -0.91896 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 122821 | 6.9884e-05 | 0.0018673 | -0.039939 | -0.91896 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103835 | 6.4073e-05 | 0.0018845 | -0.035701 | -0.94696 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18986 | 9.8152e-05 | 0.0017809 | -0.058515 | -0.77235 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3332 | 4.2708e-05 | 0.0017647 | -0.077821 | -0.72999 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8609 | 5.4255e-05 | 0.0018603 |-0.00048742 | -0.90629 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6469 | 6.8409e-06 | 0.0018861 | -0.0021854 | -0.96312 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4534 | -1.925e-05 | 0.0018467 | 0.0045379 | -0.89683 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5610 | 7.7755e-05 | 0.0018440 | -0.050982 | -0.87355 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8811 |-1.1071e-05 | 0.0018767 | -0.0033277 | -0.91334 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9682 | 4.1581e-05 | 0.0018887 | -0.037982 | -0.94599 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10784 | 0.0001276 | 0.0019059 | -0.040775 | -0.9676 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13212 | 0.00010065 | 0.0019223 | -0.069924 | -1.0212 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11437 | 0.00015074 | 0.0019170 | -0.066493 | -1.0074 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11145 | 9.3774e-05 | 0.0018840 | -0.071234 | -0.95807 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10210 |-2.4543e-05 | 0.0018643 | 0.0067606 | -0.90481 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 967 | 9.3016e-05 | 0.0017030 | -0.23525 | -0.53592 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1156 | 0.00011455 | 0.0017644 | -0.0015063 | -0.80667 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 756 | 0.00032051 | 0.0017187 | -0.016329 | -0.69411 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 396 | 0.00012126 | 0.0016187 | 0.061919 | -0.64576 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1729 | 3.7663e-05 | 0.0017236 | -0.096059 | -0.64967 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2186 | 0.00020908 | 0.0017883 | -0.11135 | -0.7848 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2049 | 9.5902e-05 | 0.0018049 | -0.06771 | -0.77187 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2233 | 0.00016394 | 0.0018023 | -0.13703 | -0.80917 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1959 | 0.00013947 | 0.0018678 | -0.11063 | -0.92641 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2055 |-6.3542e-05 | 0.0018215 | 0.054429 | -0.86319 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1916 | 6.4389e-05 | 0.0017633 | 0.002043 | -0.7461 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1584 |-2.3895e-05 | 0.0017379 | 0.046275 | -0.67464 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4299 | 5.5218e-05 | 0.0017497 | -0.11505 | -0.68736 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9765 | 6.2827e-05 | 0.0018471 | -0.0018269 | -0.89168 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7225 | 4.6439e-05 | 0.0018687 | -0.012775 | -0.92929 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4930 |-6.9535e-06 | 0.0018284 | 0.0037046 | -0.87271 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7339 | 6.7623e-05 | 0.0018144 | -0.059169 | -0.82003 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10997 | 3.9939e-05 | 0.0018589 | -0.031373 | -0.88884 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11731 | 5.2156e-05 | 0.0018728 | -0.044374 | -0.91443 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13017 | 0.00013404 | 0.0018880 | -0.05656 | -0.9416 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15171 | 0.00010591 | 0.0019150 | -0.075448 | -1.0091 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13492 | 0.00011674 | 0.0019038 | -0.045243 | -0.98982 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13061 | 8.8906e-05 | 0.0018646 | -0.060196 | -0.92606 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11794 |-2.4445e-05 | 0.0018457 | 0.011742 | -0.87261 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 149916 | 6.9843e-05 | 0.0018669 | -0.037317 | -0.91672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 149916 | 6.9843e-05 | 0.0018669 | -0.037317 | -0.91672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119532 | 5.9805e-05 | 0.0018832 | -0.025161 | -0.94432 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30384 | 0.00010558 | 0.0018071 | -0.081155 | -0.80955 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3654 | 0.00026406 | 0.0018375 | -0.16646 | -0.82843 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9356 |-0.00010948 | 0.0018485 | 0.05111 | -0.89659 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5722 | -5.133e-05 | 0.0017736 | 0.065951 | -0.75988 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4083 | 4.581e-06 | 0.0017741 | -0.052152 | -0.72168 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6065 | 0.00015168 | 0.0018573 | -0.09376 | -0.90489 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9798 | 6.6829e-05 | 0.0018783 | -0.052036 | -0.94105 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11131 |-2.1418e-05 | 0.0018852 | 0.0092507 | -0.94452 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15520 |-4.9724e-06 | 0.0019136 | 0.025767 | -1.0072 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15890 | 8.2509e-05 | 0.0019263 | -0.031466 | -1.0148 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12888 | 0.0001087 | 0.0019009 | -0.049065 | -0.97129 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14500 | 0.00013673 | 0.0018987 | -0.060698 | -0.96466 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10925 | 9.4708e-05 | 0.0018704 | -0.028361 | -0.90673 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 721 | 0.00032511 | 0.0018911 | -0.23903 | -0.85496 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2436 | 7.2156e-05 | 0.0017685 | -0.16022 | -0.75629 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1919 | 0.00019153 | 0.0016968 | -0.20221 | -0.53838 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1299 | 9.3032e-05 | 0.0017400 | -0.19467 | -0.64117 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1596 | 0.00015933 | 0.0018131 | -0.094082 | -0.87285 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3098 | 0.00010622 | 0.0018014 | -0.072624 | -0.80935 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3404 | 3.4553e-05 | 0.0018117 | -0.021207 | -0.79052 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4059 | 4.4664e-05 | 0.0018281 | -0.016746 | -0.85387 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3704 | 9.9253e-05 | 0.0018475 | -0.056006 | -0.8837 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3187 | 4.6412e-05 | 0.0018023 | -0.03619 | -0.83584 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2705 | 0.00011796 | 0.0018050 | -0.034192 | -0.8098 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2256 | 0.0002412 | 0.0018396 | -0.15718 | -0.83841 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4375 | 0.00027402 | 0.0018465 | -0.17837 | -0.83356 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11792 |-6.4897e-05 | 0.0018308 |-0.00042314 | -0.8754 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7641 | 1.5945e-05 | 0.0017560 | -0.0083537 | -0.72587 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5382 | 2.7997e-05 | 0.0017656 | -0.089347 | -0.70547 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7661 | 0.00015342 | 0.0018474 | -0.093946 | -0.89729 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12896 | 7.7538e-05 | 0.0018578 | -0.058189 | -0.90672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14535 |-7.4805e-06 | 0.0018673 | 0.0010185 | -0.90857 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19579 | 5.8438e-06 | 0.0018954 | 0.016274 | -0.97616 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19594 | 8.588e-05 | 0.0019107 | -0.036289 | -0.98966 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16075 | 9.5508e-05 | 0.0018806 | -0.044975 | -0.9436 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17205 | 0.00013362 | 0.0018835 | -0.056454 | -0.94046 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13181 | 0.00012292 | 0.0018654 | -0.053274 | -0.89828 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 272737 | 6.9861e-05 | 0.0018671 | -0.038496 | -0.91773 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 272737 | 6.9861e-05 | 0.0018671 | -0.038496 | -0.91773 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 223367 | 6.1788e-05 | 0.0018838 | -0.030062 | -0.94557 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 49370 | 0.0001027 | 0.0017969 | -0.072513 | -0.79526 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 272737 | 3.0714 | 1.8064 | 0.075917 | -1.1937 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 272737 | 0.025389 | 0.0052424 | -0.63807 | -0.41087 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133633 | 0.00016566 | 0.0028169 | -0.083012 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133633 | 0.00016566 | 0.0028169 | -0.083012 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133633 | 0.00016566 | 0.0028169 | -0.083012 | -0.86882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 236 |-0.00021687 | 0.0019648 | 0.61248 | 0.86483 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2194 | 0.00071973 | 0.0026254 | -0.39132 | -0.51609 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1001 | -1.664e-05 | 0.0022747 | 0.037459 | 0.070248 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2189 | 0.00018498 | 0.0021921 | 0.073675 | 0.23507 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4487 |-2.2052e-05 | 0.0023222 | 0.096477 | -0.097826 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8891 |-0.00017865 | 0.0026251 | 0.14264 | -0.61005 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21187 |-7.2866e-05 | 0.0028126 | 0.12725 | -0.87549 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38828 | 0.00012952 | 0.0028983 | -0.053868 | -0.9459 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 37427 | 0.00019469 | 0.0028744 | -0.16206 | -0.91542 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 17163 | 0.0006305 | 0.0028743 | -0.3928 | -0.82272 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 236 |-0.00021687 | 0.0019648 | 0.61248 | 0.86483 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2194 | 0.00071973 | 0.0026254 | -0.39132 | -0.51609 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1001 | -1.664e-05 | 0.0022747 | 0.037459 | 0.070248 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2189 | 0.00018498 | 0.0021921 | 0.073675 | 0.23507 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4487 |-2.2052e-05 | 0.0023222 | 0.096477 | -0.097826 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8891 |-0.00017865 | 0.0026251 | 0.14264 | -0.61005 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21187 |-7.2866e-05 | 0.0028126 | 0.12725 | -0.87549 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38828 | 0.00012952 | 0.0028983 | -0.053868 | -0.9459 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 37427 | 0.00019469 | 0.0028744 | -0.16206 | -0.91542 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 17163 | 0.0006305 | 0.0028743 | -0.3928 | -0.82272 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 295498 | 0.0001018 | 0.0028134 | -0.063099 | -0.8339 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 295498 | 0.0001018 | 0.0028134 | -0.063099 | -0.8339 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 295498 | 0.0001018 | 0.0028134 | -0.063099 | -0.8339 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 295498 | 3.0675 | 1.7946 | 0.082656 | -1.1391 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 295498 | 0.043511 | 0.0099756 | -0.95165 | 0.23859 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 161865 | 4.7742e-05 | 0.0028094 | -0.046492 | -0.80254 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 161865 | 4.7742e-05 | 0.0028094 | -0.046492 | -0.80254 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 161865 | 4.7742e-05 | 0.0028094 | -0.046492 | -0.80254 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 36 |-7.4643e-05 | 0.0019634 | 0.48658 | 0.75885 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8451 |-0.00020503 | 0.0027968 | 0.14873 | -0.84316 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 91 | 0.00026442 | 0.0017619 | 0.55614 | 0.11999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 392 | 0.00074688 | 0.0024036 | -0.56423 | -0.28056 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1153 | 0.00070451 | 0.0024288 | -0.35885 | -0.22604 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3473 | 0.00046486 | 0.0025471 | -0.28603 | -0.38825 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 16449 | 0.00041477 | 0.0027092 | -0.21651 | -0.60773 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 49394 | 7.8598e-05 | 0.0028554 | -0.067094 | -0.84485 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 51244 |-2.6201e-05 | 0.0028578 | -0.017721 | -0.86917 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31182 |-0.00013354 | 0.0027593 | 0.043164 | -0.715 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 36 |-7.4643e-05 | 0.0019634 | 0.48658 | 0.75885 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8451 |-0.00020503 | 0.0027968 | 0.14873 | -0.84316 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 91 | 0.00026442 | 0.0017619 | 0.55614 | 0.11999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 392 | 0.00074688 | 0.0024036 | -0.56423 | -0.28056 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1153 | 0.00070451 | 0.0024288 | -0.35885 | -0.22604 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3473 | 0.00046486 | 0.0025471 | -0.28603 | -0.38825 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 16449 | 0.00041477 | 0.0027092 | -0.21651 | -0.60773 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 49394 | 7.8598e-05 | 0.0028554 | -0.067094 | -0.84485 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 51244 |-2.6201e-05 | 0.0028578 | -0.017721 | -0.86917 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31182 |-0.00013354 | 0.0027593 | 0.043164 | -0.715 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38011 | 4.6302e-05 | 0.0018553 | -0.020062 | -0.90328 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38011 | 4.6302e-05 | 0.0018553 | -0.020062 | -0.90328 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31523 | 5.2547e-05 | 0.0018772 | -0.027272 | -0.93352 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6488 | 1.931e-05 | 0.0017575 | 0.011532 | -0.76465 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 651 | 1.2706e-06 | 0.0017755 | 0.0023771 | -0.73753 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3001 | 0.00012775 | 0.0018845 | -0.076308 | -0.94506 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2598 |-6.4404e-05 | 0.0018897 | -0.0052105 | -0.99824 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1963 |-9.1737e-05 | 0.0018531 | 0.052738 | -0.9257 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1259 | 0.00031488 | 0.0017746 | -0.15711 | -0.74497 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2011 | 1.8181e-05 | 0.0018749 | -0.054859 | -0.91331 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2432 |-4.6109e-05 | 0.0018962 | 0.021799 | -0.94605 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3139 | 0.00012446 | 0.0018909 | -0.015247 | -0.95617 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3852 | 3.8894e-05 | 0.0018902 | -0.0085291 | -0.94389 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3499 | 0.00025178 | 0.0018847 | -0.1235 | -0.94443 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3595 | 8.2762e-05 | 0.0018874 | -0.062777 | -0.95462 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3523 |-0.00015296 | 0.0018345 | 0.088252 | -0.83796 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 331 |-0.00016708 | 0.0017721 | -0.1571 | -0.87893 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 502 | 0.00014504 | 0.0018294 | -0.029977 | -0.93502 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 414 | 0.00024438 | 0.0017655 | -0.013187 | -0.86514 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 183 |-0.00016176 | 0.0018171 | 0.28922 | -0.88214 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 633 |-0.00018152 | 0.0016763 | 0.01485 | -0.62875 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 803 | 4.8734e-06 | 0.0017952 | -0.024512 | -0.76643 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 676 | 8.8333e-05 | 0.0017635 | -0.040852 | -0.74018 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 742 | 0.00015468 | 0.0017619 | -0.071112 | -0.80382 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 599 |-3.7147e-05 | 0.0017707 | 0.017401 | -0.77731 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 554 |-0.00016855 | 0.0016731 | 0.15126 | -0.6183 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 538 | 3.1738e-05 | 0.0017440 | 0.066818 | -0.74165 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 513 | 8.2908e-05 | 0.0017007 | 0.076772 | -0.66402 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 982 |-5.6667e-05 | 0.0017762 | -0.051958 | -0.76923 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3503 | 0.00013058 | 0.0018756 | -0.069495 | -0.94235 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3012 |-1.2438e-05 | 0.0018730 | -0.014856 | -0.97074 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2146 |-9.6797e-05 | 0.0018506 | 0.0692 | -0.92465 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1892 | 0.00014979 | 0.0017582 | -0.084585 | -0.72897 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2814 | 1.4119e-05 | 0.0018509 | -0.046048 | -0.87061 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3108 |-1.4993e-05 | 0.0018672 | 0.0042652 | -0.90265 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3881 | 0.00013092 | 0.0018641 | -0.026456 | -0.92428 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4451 | 2.5778e-05 | 0.0018703 | -0.0025677 | -0.91644 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4053 | 0.00019102 | 0.0018615 | -0.076591 | -0.92214 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4133 | 7.5659e-05 | 0.0018682 | -0.046691 | -0.92809 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4036 | -0.0001166 | 0.0018165 | 0.079515 | -0.81107 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12990 | 3.2777e-05 | 0.0018592 | -0.014643 | -0.88175 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12990 | 3.2777e-05 | 0.0018592 | -0.014643 | -0.88175 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7358 |-2.3609e-06 | 0.0018952 | 0.0015743 | -0.9296 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5632 | 7.612e-05 | 0.0018128 | -0.030833 | -0.8201 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 399 | 3.1023e-05 | 0.0019229 | 0.075385 | -1.0118 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 360 |-0.00051548 | 0.0020521 | 0.22048 | -1.271 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 226 |-0.00025712 | 0.0017574 | 0.17916 | -0.49667 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 184 |-0.00043543 | 0.0018169 | 0.21123 | -0.78535 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 425 | 0.00017174 | 0.0020153 | -0.071028 | -1.0987 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 752 | 1.1541e-05 | 0.0018497 | 0.0094592 | -0.82255 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 869 |-2.2527e-05 | 0.0018044 | 0.047646 | -0.81021 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1033 | 2.7632e-05 | 0.0019348 | -0.023067 | -0.93327 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1058 |-4.4848e-05 | 0.0019480 |-0.00073446 | -1.0344 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 822 | -4.394e-05 | 0.0018926 | 0.02999 | -0.97913 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 718 | 0.00032752 | 0.0017693 | -0.1863 | -0.67154 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 512 | 5.3177e-05 | 0.0018767 | -0.0029635 | -0.84966 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 360 | -6e-05 | 0.0019197 | -0.032792 | -0.90641 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 424 | 7.5221e-05 | 0.0018361 | -0.15629 | -0.96713 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 333 | 2.1667e-05 | 0.0017875 | 0.0082821 | -0.67463 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 233 | 0.0002161 | 0.0017957 | -0.12703 | -0.73363 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 520 | 4.4684e-05 | 0.0018792 | -0.024376 | -0.89914 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 645 | 4.1774e-05 | 0.0017133 | -0.022629 | -0.5753 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 496 |-2.2826e-05 | 0.0016782 | 0.10177 | -0.54735 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 527 | 0.0001853 | 0.0017398 | 0.067134 | -0.7634 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 527 | 0.00015892 | 0.0018164 | -0.14332 | -0.9091 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 537 | 5.4964e-05 | 0.0018158 | -0.046214 | -1.0009 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 567 | 0.00010841 | 0.0019015 | 0.014874 | -0.97605 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 463 | 0.00011744 | 0.0018861 | -0.05891 | -0.8008 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 759 |-1.1455e-05 | 0.0019219 | 0.025132 | -0.95663 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 784 |-0.00018951 | 0.0019581 | -0.0071035 | -1.1764 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 559 |-0.00010439 | 0.0017794 | 0.086479 | -0.61491 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 417 |-8.3861e-05 | 0.0018344 | 0.023292 | -0.82707 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 945 | 9.6106e-05 | 0.0019364 | -0.03895 | -0.98541 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1397 | 2.6041e-05 | 0.0017856 | -0.0060473 | -0.70982 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1365 | -2.264e-05 | 0.0017576 | 0.065632 | -0.71685 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1560 | 8.5444e-05 | 0.0018672 | -0.0083946 | -0.85724 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1585 | 2.1287e-05 | 0.0019087 | -0.050074 | -1.0001 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1359 |-1.4651e-06 | 0.0018606 | -0.0036482 | -0.98683 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1285 | 0.00023166 | 0.0018315 | -0.10002 | -0.83098 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 975 | 8.6667e-05 | 0.0018819 | -0.032061 | -0.82534 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 51001 | 4.2931e-05 | 0.0018563 | -0.018722 | -0.89789 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 51001 | 4.2931e-05 | 0.0018563 | -0.018722 | -0.89789 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 38881 | 4.2434e-05 | 0.0018807 | -0.022086 | -0.93292 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 12120 | 4.4401e-05 | 0.0017824 | -0.0066875 | -0.7897 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 51001 | 3.2428 | 1.8224 | -0.087869 | -1.2057 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 51001 | 0.025414 | 0.0051927 | -0.62967 | -0.43335 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 445 | 33.558 | 21.979 | 0.22132 | -1.017 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 49.492 | 18.663 | -0.16521 | -1.1163 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 2463 | 37.3 | 23.381 | 0.033195 | -1.1768 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 20.292 | 15.839 | 0.45858 | -0.93102 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 1756 | 56.908 | 3.9223 | 0.24634 | -0.75054 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1748 | 36.641 | 10.091 | 0.12129 | -0.95762 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1756 | 55.98 | 3.8670 | 0.17453 | -0.68976 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1756 | 55.302 | 3.8336 | 0.10667 | -0.63486 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 627 | 23.231 | 15.125 | 0.2664 | -0.95808 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 473 | 228.3 | 160.56 | 0.30083 | -0.96363 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 6827 | 597.97 | 9.5325 | 1.9542 | 6.5999 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 360.31 | 135.66 | -0.1482 | -1.0995 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6827 | 587.17 | 10.718 | 1.0447 | 2.974 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6827 | 579.08 | 13.549 | 0.36814 | 0.53164 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 2568 | 258.85 | 169.34 | 0.08671 | -1.1703 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 93 | 126.75 | 99.599 | 0.48089 | -0.89137 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 1796 | 359.62 | 26.423 | 0.44175 | -0.2581 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1796 | 231.65 | 62.845 | 0.14116 | -0.90761 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1796 | 353.77 | 25.865 | 0.35888 | -0.27855 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1796 | 349.31 | 25.820 | 0.2886 | -0.27643 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 677 | 139.55 | 97.690 | 0.30172 | -0.97704 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2947 | 1063.5 | 22.031 | 1.4666 | 2.9202 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 1664 | 1960 | 139.25 | 0.32765 | -0.32401 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 445 | 23.39 | 15.558 | 0.31853 | -0.85997 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 6827 | 58.819 | 3.7366 | -0.83858 | 3.9706 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6827 | 35.066 | 13.856 | -0.089765 | -1.0398 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6827 | 57.738 | 3.7088 | -0.79982 | 3.7842 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6827 | 56.926 | 3.7597 | -0.71362 | 3.352 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 2463 | 26.067 | 16.537 | 0.10337 | -1.0914 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 13.64 | 10.618 | 0.54638 | -0.7229 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 1756 | 35.266 | 7.5716 | -0.90916 | 0.43552 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1748 | 23.784 | 8.1661 | 0.013817 | -0.81822 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1756 | 34.709 | 7.4917 | -0.9184 | 0.40666 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1756 | 34.287 | 7.4533 | -0.91961 | 0.3706 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 627 | 15.71 | 10.373 | 0.2965 | -0.92413 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28639 | -0.0018786 | 0.31767 | 1.1602 | 14.551 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 646789 | -0.0061163 | 0.49812 | -2.1338 | 84.612 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 521493 | -0.0010348 | 0.39270 | -0.6712 | 73.624 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 646789 | -0.0061163 | 0.49812 | -2.1338 | 84.612 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 646789 | -0.0061163 | 0.49812 | -2.1338 | 84.612 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 165001 | -0.0010945 | 0.33489 | 1.1281 | 12.754 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 5170 | 0.0041257 | 5.4219 | 1.1471 | 2.0849 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 169366 | -0.86837 | 8.7519 | -0.66779 | 4.5655 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 141289 | 0.024073 | 6.7668 | 0.8007 | 4.3607 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 169366 | -0.86837 | 8.7519 | -0.66779 | 4.5655 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 169366 | -0.86837 | 8.7519 | -0.66779 | 4.5655 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 39456 | 0.014237 | 5.8190 | 0.97554 | 3.4246 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 8428988 | 0.078474 | 0.070614 | 1.5886 | 3.0475 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 9468377 | 0.062059 | 0.045505 | 1.5967 | 3.2719 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 6554300 | 1.286 | 0.89424 | 6.9557 | 101.26 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 8218009 | 1.1521 | 0.57817 | 9.0756 | 190.6 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4127065 | -13.215 | 238.63 | 0.018737 | 0.12206 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4127065 | -1357.3 | 66.615 | -0.8993 | 0.4476 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 533.39 | 324.68 | 0.06772 | -0.7005 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 5000 | 1685.2 | 1371.4 | 1.2132 | 3.1478 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 8428988 | -10.004 | 242.46 | -0.0084632 | -0.020094 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 8428988 | 14.98 | 271.67 | 0.096415 | -0.73514 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 4301923 | -6.5646 | 246.59 | -0.034001 | -0.1365 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 4301923 | 1369.2 | 77.765 | 0.85733 | -0.0040774 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 4808838 | 3899.9 | 85.603 | -0.086903 | -0.95793 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 4808838 | 8.4122 | 299.07 | 0.038022 | -0.2886 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 4659539 | -3896.5 | 85.826 | 0.093016 | -0.96445 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 4659539 | 11.144 | 307.18 | 0.010722 | -0.42358 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 672.18 | 329.47 | -0.73277 | -0.65437 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 5000 | 1893.9 | 1396.8 | 0.7772 | 0.53516 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 2052072 | 2.6215 | 2.1691 | 2.4645 | 9.6646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1308835 | 3.124 | 2.5648 | 2.3578 | 9.6975 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3360907 | 2.8172 | 2.3440 | 2.4478 | 10.059 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 9468377 | 6.6808 | 453.22 | -0.026054 | -1.4776 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 9468377 | 9.9065 | 302.82 | 0.027551 | -0.3625 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 1802042 | 0.052007 | 0.00051254 | -0.19714 | -1.1454 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 1802042 | 0.051088 | 0.0055439 | -0.14607 | -0.90169 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1802042 | 4.6036e-05 | 0.0028911 | -0.020155 | -0.92985 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 606246 | 3.3741e-05 | 0.0028436 | -0.04189 | -0.83129 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 122364 | 0.00010147 | 0.0028429 | -0.013994 | -0.84032 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 150464 | 0.00012584 | 0.0028333 | -0.052671 | -0.82171 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 922968 | 3.2304e-05 | 0.0029380 | -0.0020944 | -1.0178 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 272737 | 0.02947 | 0.00022580 | -0.043827 | -1.1185 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 272737 | 0.028179 | 0.0040832 | -0.23214 | -0.99045 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 272737 | 6.9907e-05 | 0.0018670 | -0.038494 | -0.91755 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 83387 | 7.243e-05 | 0.0018598 | -0.047175 | -0.90482 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 20319 | 6.4143e-05 | 0.0018638 | -0.023559 | -0.92391 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 38622 | 6.5602e-05 | 0.0018855 | -0.029549 | -0.94857 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 130409 | 7.0382e-05 | 0.0018668 | -0.037784 | -0.91572 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 6827 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 6827 | 2042.8 | 15.137 | 0.97894 | 2.1508 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 6827 | 1077.7 | 17.203 | 1.9107 | 6.5673 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 1796 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 1796 | 11458 | 136.29 | 0.32089 | -0.52614 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 1796 | 1969.6 | 144.80 | 0.46389 | -0.20502 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.3654 | 1.8193 | 1.9271 | 5.0643 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.3754 | 1.8288 | 1.9217 | 5.0265 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 426 | 56253 | 14536. | 0.92892 | 0.28291 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18236 | 10034. | 2.8697 | 11.48 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21202 | 11532. | 2.392 | 7.7476 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18318 | 10091. | 2.8508 | 11.317 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18382 | 10134. | 2.8366 | 11.195 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2444 | 33736 | 13925. | 1.71 | 3.305 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 80097 | 10212. | 0.41949 | -0.84442 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 1737 | 30948 | 12198. | 2.149 | 5.5859 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1729 | 33775 | 13547. | 1.7932 | 3.639 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1737 | 31031 | 12249. | 2.136 | 5.5066 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1737 | 31095 | 12288. | 2.1262 | 5.4468 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 608 | 51049 | 14805. | 1.0645 | 0.68295 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 454 | 55947 | 14566. | 0.93508 | 0.30265 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18236 | 10034. | 2.8697 | 11.48 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21130 | 11507. | 2.3994 | 7.8007 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18317 | 10090. | 2.8511 | 11.319 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18379 | 10132. | 2.8371 | 11.199 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2549 | 33531 | 13905. | 1.7168 | 3.3454 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 74 | 79707 | 10221. | 0.42482 | -0.75348 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 1777 | 30826 | 12167. | 2.1711 | 5.6859 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1777 | 33573 | 13518. | 1.8155 | 3.7171 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1777 | 30908 | 12219. | 2.1581 | 5.605 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1777 | 30971 | 12258. | 2.1482 | 5.5441 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 658 | 50830 | 14848. | 1.0646 | 0.66343 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 426 | 56220 | 14531. | 0.92383 | 0.27218 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 6808 | 18234 | 10028. | 2.8707 | 11.504 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6808 | 21198 | 11526. | 2.3947 | 7.7729 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6808 | 18316 | 10084. | 2.8519 | 11.341 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6808 | 18380 | 10127. | 2.8377 | 11.218 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2444 | 33725 | 13920. | 1.7136 | 3.3244 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 79976 | 10268. | 0.4299 | -0.83263 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 1737 | 31523 | 12538. | 2.0521 | 5.0075 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1729 | 34123 | 13703. | 1.7514 | 3.4232 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1737 | 31608 | 12588. | 2.0398 | 4.9358 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1737 | 31674 | 12626. | 2.0305 | 4.8819 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 608 | 51056 | 14767. | 1.067 | 0.70722 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28639 | 1.6634e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 646789 |-1.3268e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 521493 |-1.8387e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 646789 |-1.3268e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 646789 |-1.3268e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 165001 | -3.158e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 30307 | 1.0817 | 0.90438 | 0.30973 | -0.60012 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 29987 | 0.049438 | 0.0067707 | -2.5286 | 6.199 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 5170 |-4.1011e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 169366 |-1.0502e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 141289 |-2.2227e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 169366 |-1.0502e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 169366 |-1.0502e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 39456 | 2.5701e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 7912 | 1.1562 | 0.97226 | 0.41797 | -0.3848 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 7578 | 0.028085 | 0.0033732 | -2.2856 | 4.7757 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 53.193 | 279.67 | 0.11897 | -0.73164 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 53.092 | 281.12 | 0.11149 | -0.80491 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 39.129 | 452.71 | -0.025949 | -1.4772 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 40.448 | 262.42 | 0.042055 | 0.29846 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 31.906 | 455.90 | 0.0056522 | -1.4695 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 40.122 | 359.28 | 0.022639 | -1.0813 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 6877 | 1.173 | 0.48720 | 0.72586 | 0.30508 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 6877 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 2005 | 0.21768 | 0.10790 | -0.079179 | -1.1227 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 6858 | 18235 | 10077. | 2.8382 | 11.269 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 6852 | 1394.6 | 893.76 | 2.3585 | 8.1517 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.x86_64_v3-opt new file mode 100644 index 0000000000000000000000000000000000000000..9b5a92388a9432ee39230e26ae4a86e99e1990db --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2022_data_trunk_geom.ref.x86_64_v3-opt @@ -0,0 +1,623 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 5000 | 6629 | 1.3258 | + | "nTracksSelected" | 5000 | 6629 | 1.3258 | +DefaultGECFilter INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3115051 | 623.01 | 0.10048 | 623.00 | 624.00 | + | "event size statistics (KBytes)" | 5195 | 90694 | 17.458 | 5.8559 | 8.0000 | 41.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4249 | 78961 | 18.583 | + | "Created long tracks" | 4249 | 815 | 0.19181 | + | "Empty input tracks" | 751 | + | "Input tracks" | 4249 | 81241 | 19.120 | + | "Number of candidate bins per track" | 78961 | 16673 | 0.21115 | 1.1457 | 0.0000 | 33.000 | + | "Number of complete candidates/track 1st Loop" | 6998 | 533 | 0.076165 | 0.26580 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 6703 | 290 | 0.043264 | 0.20345 | 0.0000 | 1.0000 | + | "Number of x candidates per track 1st Loop" | 6998 | 1939 | 0.27708 | 0.58167 | + | "Number of x candidates per track 2nd Loop" | 6703 | 7213 | 1.0761 | 1.7151 | + | "Percentage second loop execution" | 6998 | 6703 | 0.95785 | + | "Removed duplicates" | 4249 | 7 | 0.0016474 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 839907 | 489688 | 0.58303 | 0.53512 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 453561 | 269621 | 0.59445 | 0.52867 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 404801 | 232045 | 0.57323 | 0.53455 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 15000 | 125300 | 8.3533 | 11.663 | 0.0000 | 281.00 | + | "Created XZ tracks (part 1)" | 15000 | 113518 | 7.5679 | 10.547 | 0.0000 | 197.00 | + | "Created XZ tracks in case 0" | 10000 | 103691 | 10.369 | 13.254 | 0.0000 | 281.00 | + | "Created XZ tracks in case 1" | 10000 | 79572 | 7.9572 | 10.921 | 0.0000 | 268.00 | + | "Created XZ tracks in case 2" | 10000 | 55555 | 5.5555 | 8.0547 | 0.0000 | 190.00 | + | "Created full hit combinations in case 0" | 131807 | 131807 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 83855 | 83855 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 62680 | 62680 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 10000 | 104020 | 10.402 | 9.3794 | 0.0000 | 90.000 | + | "Created seed tracks (part 0)" | 5000 | 73632 | 14.726 | 13.469 | 0.0000 | 120.00 | + | "Created seed tracks (part 1)" | 5000 | 69623 | 13.925 | 12.653 | 0.0000 | 100.00 | + | "Created seed tracks in case 0" | 10000 | 65384 | 6.5384 | 6.0522 | 0.0000 | 48.000 | + | "Created seed tracks in case 1" | 10000 | 109338 | 10.934 | 9.8973 | 0.0000 | 83.000 | + | "Created seed tracks in case 2" | 10000 | 139414 | 13.941 | 12.666 | 0.0000 | 117.00 | + | "Created seed tracks in recovery step" | 5000 | 3841 | 0.76820 | 1.2906 | 0.0000 | 13.000 | + | "Created two-hit combinations in case 0" | 655644 | 5037748 | 7.6837 | 7.3882 | 0.0000 | 69.000 | + | "Created two-hit combinations in case 1" | 636594 | 2870958 | 4.5099 | 4.4220 | 0.0000 | 56.000 | + | "Created two-hit combinations in case 2" | 597848 | 2861598 | 4.7865 | 4.8325 | 0.0000 | 96.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 66 | + | "chi2 cut" | 65 | + | "nIterations" | 815 | 1916 | 2.3509 | + | "nOutlierIterations" | 749 | 379 | 0.50601 | + | "nTracksInput" | 5000 | 815 | 0.16300 | + | "nTracksOutput" | 5000 | 684 | 0.13680 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 35 | + | "chi2 cut" | 324 | + | "nIterations" | 6629 | 13455 | 2.0297 | + | "nOutlierIterations" | 6594 | 2615 | 0.39657 | + | "nTracksInput" | 5000 | 6629 | 1.3258 | + | "nTracksOutput" | 5000 | 6270 | 1.2540 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4185 | 33416 | 7.9847 | + | "#MatchingMLP" | 11310 | 10691.83 | 0.94534 | + | "#MatchingTracks" | 4185 | 6629 | 1.5840 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 2329 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 567219 |-6.883843e+07 | -121.36 | 1147.9 | -2656.2 | 2657.0 | + | "Average X in T1V" | 662511 |-1.072452e+08 | -161.88 | 1156.2 | -2657.0 | 2656.6 | + | "Average X in T1X1" | 655644 |-2.659714e+07 | -40.566 | 1111.0 | -2646.6 | 2647.0 | + | "Average X in T1X2" | 674054 |-2.018099e+07 | -29.940 | 1056.0 | -2647.0 | 2647.1 | + | "Average X in T2U" | 650380 | -2076269 | -3.1924 | 1087.5 | -2655.5 | 2656.9 | + | "Average X in T2V" | 688360 | -9227259 | -13.405 | 1099.3 | -2655.3 | 2656.5 | + | "Average X in T2X1" | 619546 | -2221895 | -3.5863 | 1094.1 | -2645.8 | 2646.6 | + | "Average X in T2X2" | 638858 | -7666129 | -12.000 | 1086.6 | -2645.4 | 2646.9 | + | "Average X in T3U" | 716639 | 3331021 | 4.6481 | 1263.5 | -3187.5 | 3190.1 | + | "Average X in T3V" | 745929 |-5.115745e+07 | -68.582 | 1214.9 | -3189.3 | 3189.7 | + | "Average X in T3X1" | 687399 |-2.080339e+07 | -30.264 | 1265.4 | -3176.8 | 3177.5 | + | "Average X in T3X2" | 781921 |1.320059e+07 | 16.882 | 1252.4 | -3177.2 | 3178.4 | + | "Hits in T1U" | 20000 | 567219 | 28.361 | 25.476 | 0.0000 | 197.00 | + | "Hits in T1V" | 20000 | 662511 | 33.126 | 25.213 | 0.0000 | 210.00 | + | "Hits in T1X1" | 20000 | 655644 | 32.782 | 25.596 | 0.0000 | 167.00 | + | "Hits in T1X2" | 20000 | 674054 | 33.703 | 25.550 | 0.0000 | 181.00 | + | "Hits in T2U" | 20000 | 650380 | 32.519 | 25.338 | 0.0000 | 237.00 | + | "Hits in T2V" | 20000 | 688360 | 34.418 | 27.364 | 0.0000 | 197.00 | + | "Hits in T2X1" | 20000 | 619546 | 30.977 | 24.361 | 0.0000 | 176.00 | + | "Hits in T2X2" | 20000 | 638858 | 31.943 | 25.766 | 0.0000 | 184.00 | + | "Hits in T3U" | 20000 | 716639 | 35.832 | 27.345 | 0.0000 | 192.00 | + | "Hits in T3V" | 20000 | 745929 | 37.296 | 27.487 | 0.0000 | 185.00 | + | "Hits in T3X1" | 20000 | 687399 | 34.370 | 26.663 | 0.0000 | 193.00 | + | "Hits in T3X2" | 20000 | 781921 | 39.096 | 30.309 | 0.0000 | 210.00 | + | "Total number of hits" | 5000 | 8088460 | 1617.7 | 1178.8 | 35.000 | 7487.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5195 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 5000 | 2428620 | 485.72 | 935.86 | 0.0000 | 16663. | + | "# Rich1Gas Segments" | 5000 | 6828 | 1.3656 | 1.8197 | 0.0000 | 15.000 | + | "# Rich2Gas Photons" | 5000 | 293160 | 58.632 | 158.68 | 0.0000 | 2795.0 | + | "# Rich2Gas Segments" | 5000 | 1757 | 0.35140 | 0.74587 | 0.0000 | 6.0000 | + | "# Selected Tracks" | 5000 | 6828 | 1.3656 | 1.8197 | 0.0000 | 15.000 | + |*"RICH selection efficiency" | 6878 | 6828 |( 99.27304 +- 0.1024327)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 6196 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 6196 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 6196 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 682 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 682 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 682 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 997893 | 199.58 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 997893 | 199.58 | + | "Nb of Produced Tracks" | 5000 | 106011 | 21.202 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1307373 | 3.4975e-05 | 0.0029284 | -0.0023068 | -0.99932 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1307373 | 3.4975e-05 | 0.0029284 | -0.0023068 | -0.99932 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1307373 | 3.4975e-05 | 0.0029284 | -0.0023068 | -0.99932 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 305 |-0.00016622 | 0.0019768 | 0.57975 | 0.7426 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31247 | 0.00073686 | 0.0027460 | -0.35055 | -0.69977 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1251 |-4.7975e-05 | 0.0022831 | 0.063936 | 0.064304 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2831 | 0.00017275 | 0.0021881 | 0.095554 | 0.22294 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7300 | -5.555e-05 | 0.0023764 | 0.14045 | -0.16548 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22755 |-0.00010822 | 0.0027337 | 0.23169 | -0.74199 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 157805 |-9.5402e-05 | 0.0029546 | 0.18973 | -1.026 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 436683 |-0.00014187 | 0.0029547 | 0.11529 | -0.99492 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 411424 |-4.3791e-05 | 0.0029080 | -0.025227 | -0.95368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235740 | 0.00042281 | 0.0029258 | -0.2803 | -0.95608 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 305 |-0.00016622 | 0.0019768 | 0.57975 | 0.7426 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31247 | 0.00073686 | 0.0027460 | -0.35055 | -0.69977 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1251 |-4.7975e-05 | 0.0022831 | 0.063936 | 0.064304 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2831 | 0.00017275 | 0.0021881 | 0.095554 | 0.22294 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7300 | -5.555e-05 | 0.0023764 | 0.14045 | -0.16548 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22755 |-0.00010822 | 0.0027337 | 0.23169 | -0.74199 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 157805 |-9.5402e-05 | 0.0029546 | 0.18973 | -1.026 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 436683 |-0.00014187 | 0.0029547 | 0.11529 | -0.99492 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 411424 |-4.3791e-05 | 0.0029080 | -0.025227 | -0.95368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235740 | 0.00042281 | 0.0029258 | -0.2803 | -0.95608 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2203928 | 4.5966e-05 | 0.0028911 | -0.020151 | -0.93004 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2203928 | 4.5966e-05 | 0.0028911 | -0.020151 | -0.93004 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2203928 | 4.5966e-05 | 0.0028911 | -0.020151 | -0.93004 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2203928 | 3.1688 | 1.8143 | -0.015778 | -1.192 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2203928 | 0.040971 | 0.011162 | -0.68136 | -0.43755 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 896555 | 6.1799e-05 | 0.0028363 | -0.047319 | -0.82105 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 896555 | 6.1799e-05 | 0.0028363 | -0.047319 | -0.82105 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 896555 | 6.1799e-05 | 0.0028363 | -0.047319 | -0.82105 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 61 | 0.00023833 | 0.0021153 | 0.48518 | 0.23039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 44387 | 3.0513e-05 | 0.0027146 | 0.018925 | -0.69968 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145 |-0.00020797 | 0.0021082 | -0.021006 | 0.059584 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578 | 0.00070893 | 0.0023577 | -0.61605 | -0.14286 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2907 | 0.00086067 | 0.0024295 | -0.49359 | -0.09673 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13044 | 0.00056517 | 0.0025847 | -0.36133 | -0.39003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 77512 | 0.00045897 | 0.0027530 | -0.22015 | -0.65927 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 284378 | 0.00012579 | 0.0028950 | -0.07468 | -0.88556 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 327094 |-5.8483e-05 | 0.0028658 | 0.0016761 | -0.86143 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 146449 |-0.00015679 | 0.0027613 | 0.0476 | -0.70875 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 61 | 0.00023833 | 0.0021153 | 0.48518 | 0.23039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 44387 | 3.0513e-05 | 0.0027146 | 0.018925 | -0.69968 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145 |-0.00020797 | 0.0021082 | -0.021006 | 0.059584 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578 | 0.00070893 | 0.0023577 | -0.61605 | -0.14286 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2907 | 0.00086067 | 0.0024295 | -0.49359 | -0.09673 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13044 | 0.00056517 | 0.0025847 | -0.36133 | -0.39003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 77512 | 0.00045897 | 0.0027530 | -0.22015 | -0.65927 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 284378 | 0.00012579 | 0.0028950 | -0.07468 | -0.88556 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 327094 |-5.8483e-05 | 0.0028658 | 0.0016761 | -0.86143 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 146449 |-0.00015679 | 0.0027613 | 0.0476 | -0.70875 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129490 | 6.9908e-05 | 0.0018675 | -0.039948 | -0.91897 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129490 | 6.9908e-05 | 0.0018675 | -0.039948 | -0.91897 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 109666 | 6.4104e-05 | 0.0018847 | -0.035702 | -0.94697 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19824 | 9.8145e-05 | 0.0017810 | -0.058575 | -0.77232 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3638 | 4.2798e-05 | 0.0017646 | -0.077663 | -0.73018 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9260 | 5.5106e-05 | 0.0018608 |-0.00045936 | -0.90656 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6952 | 5.5425e-06 | 0.0018869 | -0.0023412 | -0.9635 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4707 |-1.9155e-05 | 0.0018467 | 0.0045489 | -0.89657 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6081 | 7.7755e-05 | 0.0018441 | -0.051029 | -0.87334 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9415 |-1.1034e-05 | 0.0018767 | -0.0033716 | -0.91312 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10196 | 4.0907e-05 | 0.0018892 | -0.038109 | -0.94602 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11301 | 0.00012762 | 0.0019061 | -0.040544 | -0.96767 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13718 | 0.00010127 | 0.0019226 | -0.069908 | -1.0213 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11859 | 0.00015078 | 0.0019170 | -0.066562 | -1.0073 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11746 | 9.3774e-05 | 0.0018842 | -0.071161 | -0.9579 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10793 |-2.4494e-05 | 0.0018643 | 0.0066468 | -0.9049 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1027 | 9.2879e-05 | 0.0017034 | -0.23533 | -0.53696 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1190 | 0.00011433 | 0.0017649 | -0.001569 | -0.80713 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 790 | 0.00032051 | 0.0017187 | -0.016329 | -0.69411 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 408 | 0.00012126 | 0.0016187 | 0.061919 | -0.64576 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1815 | 3.7748e-05 | 0.0017235 | -0.096183 | -0.64946 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2286 | 0.0002089 | 0.0017881 | -0.11129 | -0.78462 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2108 | 9.5766e-05 | 0.0018049 | -0.067767 | -0.77158 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2344 | 0.00016413 | 0.0018025 | -0.13754 | -0.80877 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2063 | 0.00013932 | 0.0018678 | -0.11066 | -0.92647 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2130 |-6.3257e-05 | 0.0018212 | 0.054355 | -0.86296 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1999 | 6.4389e-05 | 0.0017634 | 0.0022409 | -0.74629 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1664 |-2.3804e-05 | 0.0017380 | 0.046426 | -0.67467 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4665 | 5.5252e-05 | 0.0017497 | -0.11496 | -0.68773 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10450 | 6.3524e-05 | 0.0018476 | -0.0017884 | -0.89199 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7742 | 4.5291e-05 | 0.0018694 | -0.012983 | -0.9296 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5115 |-6.8664e-06 | 0.0018283 | 0.0037181 | -0.87246 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7896 | 6.7645e-05 | 0.0018145 | -0.059233 | -0.81982 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11701 | 3.9925e-05 | 0.0018589 | -0.0314 | -0.88861 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12304 | 5.1585e-05 | 0.0018732 | -0.044503 | -0.9144 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13645 | 0.0001341 | 0.0018882 | -0.056448 | -0.94161 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15781 | 0.00010643 | 0.0019153 | -0.07543 | -1.0092 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13989 | 0.00011682 | 0.0019037 | -0.045311 | -0.98974 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13745 | 8.8906e-05 | 0.0018647 | -0.060106 | -0.92595 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12457 | -2.439e-05 | 0.0018457 | 0.011661 | -0.8727 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 158082 | 7.0462e-05 | 0.0018672 | -0.037332 | -0.91725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 158082 | 7.0462e-05 | 0.0018672 | -0.037332 | -0.91725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 126349 | 6.0478e-05 | 0.0018837 | -0.025257 | -0.94492 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31733 | 0.00010612 | 0.0018067 | -0.08101 | -0.80949 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3759 | 0.00026409 | 0.0018374 | -0.16666 | -0.82804 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10089 | -0.0001095 | 0.0018483 | 0.051357 | -0.89658 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6247 |-5.1389e-05 | 0.0017737 | 0.065934 | -0.7598 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4347 | 4.4723e-06 | 0.0017740 | -0.051947 | -0.72128 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6471 | 0.00015711 | 0.0018587 | -0.096662 | -0.90643 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10382 | 6.4626e-05 | 0.0018790 | -0.05255 | -0.94215 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12014 | -1.848e-05 | 0.0018858 | 0.0081659 | -0.9445 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16550 |-4.9679e-06 | 0.0019152 | 0.02625 | -1.0095 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16673 | 7.9526e-05 | 0.0019265 | -0.029098 | -1.0151 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13415 | 0.00011518 | 0.0019012 | -0.051313 | -0.97095 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14924 | 0.00013721 | 0.0018989 | -0.060546 | -0.96483 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11478 | 9.3898e-05 | 0.0018699 | -0.028067 | -0.9065 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 759 | 0.00032492 | 0.0018909 | -0.23914 | -0.8546 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2532 | 7.4911e-05 | 0.0017663 | -0.15917 | -0.75534 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2014 | 0.00019168 | 0.0016968 | -0.20238 | -0.53866 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1353 | 9.3132e-05 | 0.0017391 | -0.19564 | -0.64115 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1652 | 0.00015977 | 0.0018136 | -0.093951 | -0.87354 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3189 | 0.00010626 | 0.0018014 | -0.07275 | -0.80968 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3615 | 3.4464e-05 | 0.0018118 | -0.021507 | -0.79009 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4353 | 4.5011e-05 | 0.0018280 | -0.01678 | -0.85409 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3867 | 9.9292e-05 | 0.0018476 | -0.056009 | -0.88396 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3295 | 4.6324e-05 | 0.0018023 | -0.035763 | -0.83526 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2778 | 0.00012042 | 0.0018029 | -0.033058 | -0.80961 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2326 | 0.00024126 | 0.0018396 | -0.15718 | -0.83828 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4518 | 0.00027402 | 0.0018463 | -0.17856 | -0.83317 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12621 |-6.4262e-05 | 0.0018302 |-3.5814e-05 | -0.87524 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8261 | 1.5945e-05 | 0.0017561 | -0.0084152 | -0.72591 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5700 | 2.7944e-05 | 0.0017653 | -0.089433 | -0.70521 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8123 | 0.00015771 | 0.0018486 | -0.096133 | -0.89866 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13571 | 7.5894e-05 | 0.0018584 | -0.058644 | -0.90777 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15629 |-5.3467e-06 | 0.0018678 | 0.00020862 | -0.90858 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20903 | 5.8968e-06 | 0.0018967 | 0.016667 | -0.97812 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20540 | 8.348e-05 | 0.0019110 | -0.034379 | -0.99016 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16710 | 0.00010064 | 0.0018809 | -0.046553 | -0.94334 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17702 | 0.00013443 | 0.0018833 | -0.05621 | -0.94055 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13804 | 0.00012229 | 0.0018650 | -0.053041 | -0.8981 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 287572 | 7.0213e-05 | 0.0018674 | -0.038507 | -0.91802 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 287572 | 7.0213e-05 | 0.0018674 | -0.038507 | -0.91802 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 236015 | 6.216e-05 | 0.0018842 | -0.030106 | -0.94589 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 51557 | 0.00010302 | 0.0017967 | -0.072436 | -0.79522 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 287572 | 3.0735 | 1.8074 | 0.073958 | -1.1946 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 287572 | 0.025071 | 0.0054406 | -0.58986 | -0.54629 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 164481 | 0.0001655 | 0.0028167 | -0.083065 | -0.86881 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 164481 | 0.0001655 | 0.0028167 | -0.083065 | -0.86881 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 164481 | 0.0001655 | 0.0028167 | -0.083065 | -0.86881 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 287 |-0.00021625 | 0.0019654 | 0.61177 | 0.86057 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2624 | 0.00071965 | 0.0026256 | -0.39158 | -0.51554 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1200 |-1.7166e-05 | 0.0022750 | 0.037825 | 0.069176 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 | 0.00018473 | 0.0021921 | 0.073973 | 0.23536 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5556 |-2.2009e-05 | 0.0023222 | 0.096164 | -0.097996 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 10874 |-0.00017858 | 0.0026251 | 0.14249 | -0.61003 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25595 |-7.2877e-05 | 0.0028126 | 0.12723 | -0.87545 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 47920 | 0.00012955 | 0.0028983 | -0.053895 | -0.94589 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46557 | 0.00019438 | 0.0028742 | -0.16207 | -0.91545 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21204 | 0.00062994 | 0.0028741 | -0.39296 | -0.82276 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32 | 9.8043e-05 | 0.0020202 | -0.16536 | 0.23995 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 287 |-0.00021625 | 0.0019654 | 0.61177 | 0.86057 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2624 | 0.00071965 | 0.0026256 | -0.39158 | -0.51554 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1200 |-1.7166e-05 | 0.0022750 | 0.037825 | 0.069176 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 | 0.00018473 | 0.0021921 | 0.073973 | 0.23536 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5556 |-2.2009e-05 | 0.0023222 | 0.096164 | -0.097996 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 10874 |-0.00017858 | 0.0026251 | 0.14249 | -0.61003 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25595 |-7.2877e-05 | 0.0028126 | 0.12723 | -0.87545 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 47920 | 0.00012955 | 0.0028983 | -0.053895 | -0.94589 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46557 | 0.00019438 | 0.0028742 | -0.16207 | -0.91545 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21204 | 0.00062994 | 0.0028741 | -0.39296 | -0.82276 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 363667 | 0.00010186 | 0.0028134 | -0.063115 | -0.83388 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 363667 | 0.00010186 | 0.0028134 | -0.063115 | -0.83388 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 363667 | 0.00010186 | 0.0028134 | -0.063115 | -0.83388 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 363667 | 3.0593 | 1.7917 | 0.087367 | -1.134 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 363667 | 0.04148 | 0.011263 | -0.75695 | -0.34563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 199186 | 4.7985e-05 | 0.0028094 | -0.04647 | -0.80252 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 199186 | 4.7985e-05 | 0.0028094 | -0.04647 | -0.80252 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 199186 | 4.7985e-05 | 0.0028094 | -0.04647 | -0.80252 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42 |-7.4643e-05 | 0.0019634 | 0.48658 | 0.75885 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 9916 | -0.000205 | 0.0027968 | 0.14875 | -0.84309 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 103 | 0.000275 | 0.0017575 | 0.54941 | 0.1272 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 463 | 0.00074688 | 0.0024033 | -0.5645 | -0.27941 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1349 | 0.00070346 | 0.0024299 | -0.36149 | -0.22193 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4296 | 0.00046456 | 0.0025467 | -0.28585 | -0.38883 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20254 | 0.00041482 | 0.0027092 | -0.21655 | -0.60768 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59943 | 7.8643e-05 | 0.0028554 | -0.06714 | -0.84482 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 64281 |-2.5593e-05 | 0.0028582 | -0.017577 | -0.86917 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 38539 | -0.0001332 | 0.0027590 | 0.04322 | -0.715 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 42 |-7.4643e-05 | 0.0019634 | 0.48658 | 0.75885 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 9916 | -0.000205 | 0.0027968 | 0.14875 | -0.84309 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 103 | 0.000275 | 0.0017575 | 0.54941 | 0.1272 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 463 | 0.00074688 | 0.0024033 | -0.5645 | -0.27941 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1349 | 0.00070346 | 0.0024299 | -0.36149 | -0.22193 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4296 | 0.00046456 | 0.0025467 | -0.28585 | -0.38883 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20254 | 0.00041482 | 0.0027092 | -0.21655 | -0.60768 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59943 | 7.8643e-05 | 0.0028554 | -0.06714 | -0.84482 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 64281 |-2.5593e-05 | 0.0028582 | -0.017577 | -0.86917 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 38539 | -0.0001332 | 0.0027590 | 0.04322 | -0.715 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 40006 | 4.6663e-05 | 0.0018556 | -0.019895 | -0.90344 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 40006 | 4.6663e-05 | 0.0018556 | -0.019895 | -0.90344 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33242 | 5.2996e-05 | 0.0018775 | -0.027102 | -0.93367 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6764 | 1.9289e-05 | 0.0017576 | 0.011595 | -0.76482 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 691 | 1.5017e-06 | 0.0017751 | 0.0033307 | -0.73867 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3235 | 0.00013029 | 0.0018859 | -0.076135 | -0.94536 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2800 | -6.453e-05 | 0.0018897 | -0.0047935 | -0.99883 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2050 |-9.1589e-05 | 0.0018531 | 0.052582 | -0.92586 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1339 | 0.00031476 | 0.0017746 | -0.15624 | -0.74576 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2173 | 1.8103e-05 | 0.0018749 | -0.05452 | -0.91277 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2580 |-4.5908e-05 | 0.0018960 | 0.021819 | -0.94586 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3276 | 0.00012432 | 0.0018911 | -0.014939 | -0.95624 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4022 | 4.1128e-05 | 0.0018916 | -0.0080706 | -0.94439 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3622 | 0.0002517 | 0.0018847 | -0.12372 | -0.94433 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3750 | 8.2641e-05 | 0.0018874 | -0.062897 | -0.95485 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3704 |-0.00015301 | 0.0018345 | 0.088265 | -0.83796 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 363 |-0.00016664 | 0.0017725 | -0.15716 | -0.87995 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 515 | 0.00014477 | 0.0018302 | -0.029499 | -0.93636 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 421 | 0.00024438 | 0.0017655 | -0.013187 | -0.86514 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 188 |-0.00016176 | 0.0018171 | 0.28922 | -0.88214 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 681 |-0.00018128 | 0.0016762 | 0.014473 | -0.6283 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 857 | 4.519e-06 | 0.0017948 | -0.02424 | -0.76634 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 698 | 8.8333e-05 | 0.0017634 | -0.040908 | -0.73989 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 764 | 0.00015485 | 0.0017623 | -0.071569 | -0.80354 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 622 |-3.7362e-05 | 0.0017712 | 0.017489 | -0.77779 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 571 |-0.00016879 | 0.0016731 | 0.15168 | -0.61836 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 554 | 3.1738e-05 | 0.0017440 | 0.066818 | -0.74165 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 530 | 8.3156e-05 | 0.0017011 | 0.077185 | -0.6643 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1054 |-5.6364e-05 | 0.0017760 | -0.051463 | -0.7703 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3750 | 0.00013266 | 0.0018769 | -0.069251 | -0.94283 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3221 |-1.2543e-05 | 0.0018730 | -0.014502 | -0.9713 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2238 | -9.666e-05 | 0.0018506 | 0.069055 | -0.9248 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2020 | 0.00014979 | 0.0017581 | -0.084104 | -0.72909 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3030 | 1.3957e-05 | 0.0018508 | -0.045721 | -0.87018 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3278 |-1.4838e-05 | 0.0018670 | 0.0042798 | -0.90245 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4040 | 0.00013085 | 0.0018643 | -0.026299 | -0.92431 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4644 | 2.7597e-05 | 0.0018716 | -0.0020872 | -0.91691 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4193 | 0.00019092 | 0.0018615 | -0.076735 | -0.92212 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4304 | 7.5554e-05 | 0.0018681 | -0.046801 | -0.92829 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4234 | -0.0001166 | 0.0018166 | 0.079588 | -0.81108 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13722 | 3.2885e-05 | 0.0018593 | -0.01485 | -0.88183 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13722 | 3.2885e-05 | 0.0018593 | -0.01485 | -0.88183 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7781 |-2.3391e-06 | 0.0018954 | 0.0015177 | -0.92962 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5941 | 7.6334e-05 | 0.0018129 | -0.031236 | -0.82022 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 413 | 3.1023e-05 | 0.0019229 | 0.075385 | -1.0118 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 392 |-0.00051548 | 0.0020521 | 0.22048 | -1.271 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 254 |-0.00025712 | 0.0017574 | 0.17916 | -0.49667 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 201 |-0.00043543 | 0.0018169 | 0.21123 | -0.78535 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 449 | 0.00017174 | 0.0020153 | -0.071028 | -1.0987 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 790 | 1.1351e-05 | 0.0018505 | 0.009278 | -0.82227 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 927 |-2.2899e-05 | 0.0018047 | 0.04717 | -0.809 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1096 | 2.7632e-05 | 0.0019347 | -0.0226 | -0.93415 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1104 |-4.4394e-05 | 0.0019481 | -0.0010708 | -1.0343 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 875 | -4.394e-05 | 0.0018926 | 0.02999 | -0.97913 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 734 | 0.00032771 | 0.0017694 | -0.18647 | -0.67197 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 546 | 5.3177e-05 | 0.0018767 | -0.0029635 | -0.84966 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 388 | -6e-05 | 0.0019197 | -0.032792 | -0.90641 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 457 | 7.5221e-05 | 0.0018361 | -0.15629 | -0.96713 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 348 | 2.1667e-05 | 0.0017875 | 0.0082821 | -0.67463 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 242 | 0.00021674 | 0.0017948 | -0.13168 | -0.73695 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 546 | 4.6067e-05 | 0.0018807 | -0.023994 | -0.90076 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 672 | 4.1979e-05 | 0.0017132 | -0.023387 | -0.57588 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 538 |-2.3435e-05 | 0.0016787 | 0.1005 | -0.54428 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 564 | 0.00018561 | 0.0017399 | 0.066628 | -0.76378 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 549 | 0.00015892 | 0.0018164 | -0.14332 | -0.9091 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 554 | 5.5217e-05 | 0.0018156 | -0.046426 | -1.0003 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 593 | 0.00010866 | 0.0019013 | 0.014574 | -0.97563 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 490 | 0.00011744 | 0.0018861 | -0.05891 | -0.8008 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 801 |-1.1455e-05 | 0.0019219 | 0.025132 | -0.95663 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 849 |-0.00018951 | 0.0019581 | -0.0071035 | -1.1764 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 602 |-0.00010439 | 0.0017794 | 0.086479 | -0.61491 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 443 |-8.3515e-05 | 0.0018340 | 0.020786 | -0.83029 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 995 | 9.6929e-05 | 0.0019372 | -0.038865 | -0.98635 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1462 | 2.6041e-05 | 0.0017860 | -0.0064988 | -0.70985 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1465 |-2.3102e-05 | 0.0017579 | 0.064911 | -0.71506 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1660 | 8.5556e-05 | 0.0018672 | -0.0082233 | -0.85806 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1653 | 2.1594e-05 | 0.0019087 | -0.050297 | -1 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1429 |-1.3566e-06 | 0.0018605 | -0.0037435 | -0.98659 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1327 | 0.00023188 | 0.0018315 | -0.10024 | -0.83096 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1036 | 8.6667e-05 | 0.0018819 | -0.032061 | -0.82534 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 53728 | 4.323e-05 | 0.0018565 | -0.018649 | -0.89802 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 53728 | 4.323e-05 | 0.0018565 | -0.018649 | -0.89802 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 41023 | 4.2806e-05 | 0.0018809 | -0.02196 | -0.93304 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 12705 | 4.4483e-05 | 0.0017825 | -0.0068357 | -0.78987 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 53728 | 3.2407 | 1.8226 | -0.086487 | -1.205 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 53728 | 0.025088 | 0.0053947 | -0.58035 | -0.56879 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 446 | 33.484 | 22.009 | 0.22276 | -1.0184 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6828 | 49.493 | 18.663 | -0.16524 | -1.1164 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 2464 | 37.312 | 23.383 | 0.03238 | -1.1774 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 20.292 | 15.839 | 0.45858 | -0.93102 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 1757 | 56.91 | 3.9217 | 0.24532 | -0.75072 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1749 | 36.647 | 10.091 | 0.12007 | -0.95851 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1757 | 55.982 | 3.8665 | 0.17348 | -0.68997 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1757 | 55.304 | 3.8335 | 0.10549 | -0.63558 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 628 | 23.218 | 15.117 | 0.26881 | -0.95574 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 474 | 227.86 | 160.68 | 0.30316 | -0.96451 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 6828 | 597.97 | 9.5321 | 1.9539 | 6.5995 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6828 | 360.34 | 135.67 | -0.14836 | -1.0996 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6828 | 587.18 | 10.717 | 1.0445 | 2.9751 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6828 | 579.09 | 13.548 | 0.36767 | 0.53173 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 2569 | 258.93 | 169.35 | 0.085899 | -1.1709 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 93 | 126.75 | 99.599 | 0.48089 | -0.89137 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 1797 | 359.62 | 26.417 | 0.44107 | -0.25768 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1797 | 231.69 | 62.848 | 0.13996 | -0.90876 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1797 | 353.78 | 25.861 | 0.35785 | -0.27897 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1797 | 349.33 | 25.818 | 0.2874 | -0.27748 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 678 | 139.49 | 97.629 | 0.30353 | -0.97427 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2947 | 1063.5 | 22.031 | 1.4666 | 2.9202 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 1665 | 1960.1 | 139.22 | 0.32681 | -0.32366 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 446 | 23.351 | 15.609 | 0.32525 | -0.85715 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 6828 | 58.785 | 3.8164 | -0.74813 | 3.4966 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 6828 | 35.07 | 13.883 | -0.084689 | -1.0382 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 6828 | 57.697 | 3.7852 | -0.6968 | 3.3635 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 6828 | 56.89 | 3.8308 | -0.61819 | 2.9629 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 2464 | 26.107 | 16.575 | 0.10756 | -1.0826 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 89 | 13.739 | 10.701 | 0.49193 | -0.87211 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 1757 | 35.329 | 7.5365 | -0.90122 | 0.45848 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 1749 | 23.766 | 8.1355 | 0.032711 | -0.79496 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 1757 | 34.764 | 7.4704 | -0.91258 | 0.41678 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 1757 | 34.356 | 7.4263 | -0.91702 | 0.41606 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 628 | 15.704 | 10.345 | 0.2915 | -0.93389 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27096 | -0.0019486 | 0.31776 | 1.1072 | 14.358 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 600864 | -0.0063307 | 0.49998 | -2.474 | 89.048 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 495896 |-0.00090344 | 0.39083 | -0.43157 | 61.519 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 600864 | -0.0063307 | 0.49998 | -2.474 | 89.048 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 600864 | -0.0063307 | 0.49998 | -2.474 | 89.048 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 156000 | -0.0010103 | 0.33538 | 1.1197 | 12.736 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 4808 | 0.0044416 | 5.4376 | 1.1462 | 2.0499 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 157464 | -0.86589 | 8.7514 | -0.6614 | 4.551 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 133664 | 0.036312 | 6.7617 | 0.84712 | 4.3361 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 157464 | -0.86589 | 8.7514 | -0.6614 | 4.551 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 157464 | -0.86589 | 8.7514 | -0.6614 | 4.551 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 36992 | 0.0071419 | 5.7843 | 0.96103 | 2.7973 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 8428988 | 0.078489 | 0.070653 | 1.5916 | 3.0624 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 9468377 | 0.062061 | 0.045508 | 1.5969 | 3.2728 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 6554300 | 1.286 | 0.89424 | 6.9557 | 101.26 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 8218009 | 1.1521 | 0.57817 | 9.0756 | 190.6 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4127065 | -13.215 | 238.63 | 0.018737 | 0.12206 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4127065 | -1357.3 | 66.615 | -0.8993 | 0.4476 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 533.39 | 324.68 | 0.06772 | -0.7005 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 5000 | 1685.2 | 1371.4 | 1.2132 | 3.1478 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2666957 | 3.1605 | 3.4072 | 2.696 | 9.8209 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 8428988 | -10.004 | 242.46 | -0.0084632 | -0.020094 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 8428988 | 14.98 | 271.67 | 0.096415 | -0.73514 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 4301923 | -6.5646 | 246.59 | -0.034001 | -0.1365 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 4301923 | 1369.2 | 77.765 | 0.85733 | -0.0040774 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 4808838 | 3899.9 | 85.603 | -0.086903 | -0.95793 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 4808838 | 8.4122 | 299.07 | 0.038022 | -0.2886 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 4659539 | -3896.5 | 85.826 | 0.093016 | -0.96445 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 4659539 | 11.144 | 307.18 | 0.010722 | -0.42358 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 672.18 | 329.47 | -0.73277 | -0.65437 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 5000 | 1893.9 | 1396.8 | 0.7772 | 0.53516 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 2052072 | 2.6215 | 2.1691 | 2.4645 | 9.6646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1308835 | 3.124 | 2.5648 | 2.3578 | 9.6975 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3360907 | 2.8172 | 2.3440 | 2.4478 | 10.059 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 9468377 | 6.6808 | 453.22 | -0.026054 | -1.4776 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 9468377 | 9.9065 | 302.82 | 0.027551 | -0.3625 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2203928 | 0.052016 | 0.00050885 | -0.21229 | -1.108 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2203928 | 0.052238 | 0.0064579 | 0.0019692 | -0.89878 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2203928 | 4.6017e-05 | 0.0028911 | -0.020123 | -0.92986 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 745474 | 3.3808e-05 | 0.0028436 | -0.041919 | -0.83122 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 145763 | 0.00010136 | 0.0028430 | -0.014009 | -0.8403 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 184300 | 0.000126 | 0.0028333 | -0.052628 | -0.82173 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1128391 | 3.2216e-05 | 0.0029379 | -0.0020374 | -1.0178 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 287572 | 0.02947 | 0.00022534 | -0.040031 | -1.1116 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 287572 | 0.028157 | 0.0040981 | -0.23189 | -0.99441 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 287572 | 7.026e-05 | 0.0018673 | -0.038518 | -0.91783 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 88036 | 7.2425e-05 | 0.0018599 | -0.047164 | -0.90477 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 21290 | 6.3736e-05 | 0.0018641 | -0.023637 | -0.92382 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 40615 | 6.5658e-05 | 0.0018858 | -0.029487 | -0.94857 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 137631 | 7.1164e-05 | 0.0018672 | -0.037852 | -0.91637 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 6828 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 6828 | 2042.8 | 15.137 | 0.97909 | 2.1508 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 6828 | 1077.7 | 17.203 | 1.9103 | 6.5665 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 1797 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 1797 | 11458 | 136.27 | 0.32005 | -0.52599 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 1797 | 1969.7 | 144.78 | 0.46296 | -0.20524 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.3656 | 1.8197 | 1.9266 | 5.0597 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.3756 | 1.8291 | 1.9213 | 5.0219 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 427 | 56251 | 14537. | 0.9288 | 0.28284 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 6809 | 18238 | 10036. | 2.8681 | 11.468 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6809 | 21205 | 11533. | 2.3907 | 7.7408 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6809 | 18321 | 10092. | 2.8493 | 11.306 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6809 | 18384 | 10135. | 2.835 | 11.184 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2445 | 33737 | 13920. | 1.7104 | 3.3088 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 80097 | 10212. | 0.41949 | -0.84442 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 1738 | 30951 | 12195. | 2.1488 | 5.5881 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1730 | 33777 | 13542. | 1.7936 | 3.6434 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1738 | 31034 | 12246. | 2.1359 | 5.5088 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1738 | 31097 | 12285. | 2.1261 | 5.4492 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 609 | 51031 | 14806. | 1.0652 | 0.68415 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 455 | 55943 | 14568. | 0.93488 | 0.30252 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 6809 | 18238 | 10036. | 2.8681 | 11.468 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6809 | 21133 | 11508. | 2.3981 | 7.7938 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6809 | 18319 | 10091. | 2.8495 | 11.308 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6809 | 18382 | 10133. | 2.8355 | 11.188 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2550 | 33532 | 13900. | 1.7171 | 3.3491 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 74 | 79707 | 10221. | 0.42482 | -0.75348 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 1778 | 30829 | 12164. | 2.1709 | 5.6879 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1778 | 33574 | 13513. | 1.8159 | 3.7212 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1778 | 30911 | 12216. | 2.1579 | 5.6071 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1778 | 30974 | 12255. | 2.148 | 5.5463 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 659 | 50813 | 14849. | 1.0654 | 0.66478 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 427 | 56246 | 14534. | 0.91914 | 0.25898 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 6809 | 18245 | 10050. | 2.8722 | 11.507 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 6809 | 21218 | 11550. | 2.3949 | 7.7711 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 6809 | 18327 | 10107. | 2.8533 | 11.343 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 6809 | 18391 | 10150. | 2.8391 | 11.221 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 2445 | 33743 | 13945. | 1.7162 | 3.3334 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 70 | 80127 | 10283. | 0.41361 | -0.85396 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 1738 | 31511 | 12525. | 2.0532 | 5.0175 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 1730 | 34122 | 13700. | 1.7499 | 3.4186 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 1738 | 31597 | 12574. | 2.0409 | 4.9457 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 1738 | 31662 | 12612. | 2.0315 | 4.8918 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 609 | 51024 | 14762. | 1.0691 | 0.71067 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27096 |-7.1066e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 600864 | 3.8548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 495896 |-4.7326e+16 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 600864 | 3.8548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 600864 | 3.8548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 156000 |-7.9331e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 30313 | 1.0818 | 0.90444 | 0.30976 | -0.60025 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 29992 | 0.049438 | 0.0067702 | -2.5288 | 6.2005 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 4808 | 5.0329e+12 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 157464 | 3.3772e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 133664 | 1.2506e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 157464 | 3.3772e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 157464 | 3.3772e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 36992 | 2.2555e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 7917 | 1.1561 | 0.97220 | 0.41791 | -0.38485 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 7583 | 0.028085 | 0.0033745 | -2.2864 | 4.7797 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 53.193 | 279.67 | 0.11897 | -0.73164 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 10.214 | 242.87 | 0.026817 | -0.063908 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 53.092 | 281.12 | 0.11149 | -0.80491 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 39.129 | 452.71 | -0.025949 | -1.4772 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 40.448 | 262.42 | 0.042055 | 0.29846 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 31.906 | 455.90 | 0.0056522 | -1.4695 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 40.122 | 359.28 | 0.022639 | -1.0813 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 6878 | 1.1729 | 0.48697 | 0.72406 | 0.30074 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 6878 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 2006 | 0.21762 | 0.10797 | -0.07798 | -1.1259 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 6859 | 18237 | 10079. | 2.8365 | 11.257 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 6853 | 1394.7 | 893.72 | 2.3582 | 8.1514 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-detdesc-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-detdesc-opt deleted file mode 100644 index 8bc4a03f67552f97563364f2a1efcd6f1e77b40e..0000000000000000000000000000000000000000 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-detdesc-opt +++ /dev/null @@ -1,139 +0,0 @@ -RichRefCalibLong.Writer INFO Starting n-1 calibration for run 254875 ... -TCanvas::MakeDefCanvas INFO created default TCanvas with name c1 -RichRefCalibLong.Writer INFO Gaus Const = 3908.96 +- 33.0147 -RichRefCalibLong.Writer INFO Gaus Mean = 2.59023e-05 +- 9.86886e-06 -RichRefCalibLong.Writer INFO Gaus Sigma = 0.00113914 +- 1.13679e-05 -RichRefCalibLong.Writer INFO Gaus Asym = 0 +- 0 -RichRefCalibLong.Writer INFO Bkg Par 0 = 7647.92 +- 23.6887 -RichRefCalibLong.Writer INFO Bkg Par 1 = 92028 +- 5170.47 -RichRefCalibLong.Writer INFO Bkg Par 2 = -2.95413e+07 +- 841434 -RichRefCalibLong.Writer INFO Bkg Par 3 = -2.47547e+09 +- 1.63015e+08 -RichRefCalibLong.Writer INFO Rich1Gas Current Scale Factor 1.0229 Correction 1.00099 -> Updated Scale Factor 1.02391 -TCanvas::Print INFO pdf file RefIndCanvaspdf has been created -RichRefCalibLong.Writer INFO Rich1Gas Current Scale Factor 1.0229 Correction 1.00099 -> Updated Scale Factor 1.02391 -RichRefCalibLong.Writer INFO Gaus Const = 2992.88 +- 28.3404 -RichRefCalibLong.Writer INFO Gaus Mean = 0.000103769 +- 6.90591e-06 -RichRefCalibLong.Writer INFO Gaus Sigma = 0.000770098 +- 9.04096e-06 -RichRefCalibLong.Writer INFO Gaus Asym = 0 +- 0 -RichRefCalibLong.Writer INFO Bkg Par 0 = 4663.36 +- 24.9375 -RichRefCalibLong.Writer INFO Bkg Par 1 = 145812 +- 7770.91 -RichRefCalibLong.Writer INFO Bkg Par 2 = -2.03501e+07 +- 2.48408e+06 -RichRefCalibLong.Writer INFO Bkg Par 3 = -3.52624e+09 +- 7.22606e+08 -RichRefCalibLong.Writer INFO Rich2Gas Current Scale Factor 0.9856 Correction 1.00677 -> Updated Scale Factor 0.992273 -TCanvas::Print INFO pdf file RefIndCanvaspdf has been created -RichRefCalibLong.Writer INFO Rich2Gas Current Scale Factor 0.9856 Correction 1.00677 -> Updated Scale Factor 0.992273 -RichRefCalibLong.Writer INFO Final Refractive index calibration for Run 254875 was SUCCESSFUL -ApplicationMgr INFO Application Manager Finalized successfully -ApplicationMgr INFO Application Manager Terminated successfully -CloneKillerMatch INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 1000 | 15015 | 15.015 | - | "nTracksSelected" | 1000 | 15015 | 15.015 | -PrForwardTrackingVelo INFO Number of counters : 8 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 874 | 61173 | 69.992 | - | "Created long tracks" | 874 | 28048 | 32.092 | - | "Input tracks" | 874 | 63353 | 72.486 | - | "Number of candidate bins per track" | 61173 | 490851 | 8.0240 | 12.660 | 0.0000 | 118.00 | - | "Number of complete candidates/track 1st Loop" | 50058 | 116935 | 2.3360 | 4.0829 | 0.0000 | 46.000 | - | "Number of x candidates per track 1st Loop" | 50058 | 209557 | 4.1863 | 6.1773 | - | "Percentage second loop execution" | 50058 | 26793 | 0.53524 | - | "Removed duplicates" | 874 | 5938 | 6.7941 | -PrGECFilter INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb Events Processed" | 1000 | -PrHybridSeeding INFO Number of counters : 21 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Created T2x1 three-hit combinations in case 0" | 682692 | 421756 | 0.61778 | 0.59146 | 0.0000 | 5.0000 | - | "Created T2x1 three-hit combinations in case 1" | 1630832 | 1121802 | 0.68787 | 0.67390 | 0.0000 | 10.000 | - | "Created T2x1 three-hit combinations in case 2" | 3269084 | 2858207 | 0.87431 | 0.89304 | 0.0000 | 16.000 | - | "Created XZ tracks (part 0)" | 3000 | 124874 | 41.625 | 100.96 | 0.0000 | 2809.0 | - | "Created XZ tracks (part 1)" | 3000 | 108767 | 36.256 | 81.498 | 0.0000 | 1648.0 | - | "Created XZ tracks in case 0" | 2000 | 43417 | 21.709 | 28.570 | 0.0000 | 400.00 | - | "Created XZ tracks in case 1" | 2000 | 82923 | 41.462 | 81.282 | 0.0000 | 1467.0 | - | "Created XZ tracks in case 2" | 2000 | 107301 | 53.651 | 131.65 | 0.0000 | 2809.0 | - | "Created full hit combinations in case 0" | 73470 | 73470 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 1" | 109504 | 109504 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 2" | 194284 | 194284 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created seed tracks" | 2000 | 25661 | 12.831 | 10.344 | 0.0000 | 104.00 | - | "Created seed tracks (part 0)" | 1000 | 19669 | 19.669 | 15.291 | 0.0000 | 137.00 | - | "Created seed tracks (part 1)" | 1000 | 19597 | 19.597 | 15.149 | 0.0000 | 138.00 | - | "Created seed tracks in case 0" | 2000 | 11538 | 5.7690 | 4.5358 | 0.0000 | 27.000 | - | "Created seed tracks in case 1" | 2000 | 22894 | 11.447 | 8.8997 | 0.0000 | 69.000 | - | "Created seed tracks in case 2" | 2000 | 33269 | 16.634 | 13.330 | 0.0000 | 131.00 | - | "Created seed tracks in recovery step" | 1000 | 5997 | 5.9970 | 4.9038 | 0.0000 | 29.000 | - | "Created two-hit combinations in case 0" | 155713 | 2972688 | 19.091 | 15.698 | 0.0000 | 104.00 | - | "Created two-hit combinations in case 1" | 173853 | 5313190 | 30.561 | 22.053 | 0.0000 | 126.00 | - | "Created two-hit combinations in case 2" | 151647 | 7779007 | 51.297 | 35.529 | 0.0000 | 194.00 | -PrKalmanFilterForward INFO Number of counters : 7 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 14722 | - | "Transport failed" | 3 | 0 | 0.0000 | - | "chi2 cut" | 4 | - | "nIterations" | 28047 | 88505 | 3.1556 | - | "nOutlierIterations" | 13322 | 23074 | 1.7320 | - | "nTracksInput" | 1000 | 28048 | 28.048 | - | "nTracksOutput" | 1000 | 13318 | 13.318 | -PrKalmanFilterForward.TrackMaste... INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "RungeKuttaExtrapolator failed with code: RK: Curling"| 4 | -PrKalmanFilterMatch INFO Number of counters : 5 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 290 | - | "nIterations" | 15015 | 32760 | 2.1818 | - | "nOutlierIterations" | 14725 | 20863 | 1.4168 | - | "nTracksInput" | 1000 | 15015 | 15.015 | - | "nTracksOutput" | 1000 | 14725 | 14.725 | -PrMatchNN INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 870 | 137440.3 | 157.98 | - | "#MatchingMLP" | 15015 | 12543.72 | 0.83541 | - | "#MatchingTracks" | 870 | 15015 | 17.259 | -PrStoreSciFiHits INFO Number of counters : 25 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Average X in T1U" | 153455 | -4097451 | -26.701 | 1122.9 | -2657.6 | 2656.8 | - | "Average X in T1V" | 152977 |-2.278778e+07 | -148.96 | 1181.3 | -2658.0 | 2657.1 | - | "Average X in T1X1" | 155713 | 1295862 | 8.3221 | 1133.4 | -2648.0 | 2646.9 | - | "Average X in T1X2" | 175507 | -1361149 | -7.7555 | 1040.7 | -2647.6 | 2647.6 | - | "Average X in T2U" | 160183 | 3990.473 | 0.024912 | 1102.1 | -2656.5 | 2659.2 | - | "Average X in T2V" | 156014 | 5382044 | 34.497 | 1114.6 | -2657.3 | 2656.5 | - | "Average X in T2X1" | 149859 | 593391.6 | 3.9597 | 1096.6 | -2646.7 | 2647.9 | - | "Average X in T2X2" | 148627 | 7446138 | 50.099 | 1064.9 | -2647.8 | 2647.1 | - | "Average X in T3U" | 162124 | -4084556 | -25.194 | 1278.3 | -3188.5 | 3190.4 | - | "Average X in T3V" | 181800 |-1.016463e+07 | -55.911 | 1219.5 | -3189.9 | 3190.6 | - | "Average X in T3X1" | 167329 |-1.735384e+07 | -103.71 | 1257.9 | -3177.5 | 3178.0 | - | "Average X in T3X2" | 196370 | 5819204 | 29.634 | 1247.7 | -3177.2 | 3177.4 | - | "Hits in T1U" | 4000 | 153455 | 38.364 | 26.673 | 0.0000 | 165.00 | - | "Hits in T1V" | 4000 | 152977 | 38.244 | 24.018 | 0.0000 | 183.00 | - | "Hits in T1X1" | 4000 | 155713 | 38.928 | 26.970 | 0.0000 | 169.00 | - | "Hits in T1X2" | 4000 | 175507 | 43.877 | 28.702 | 0.0000 | 175.00 | - | "Hits in T2U" | 4000 | 160183 | 40.046 | 27.110 | 0.0000 | 165.00 | - | "Hits in T2V" | 4000 | 156014 | 39.004 | 26.618 | 0.0000 | 151.00 | - | "Hits in T2X1" | 4000 | 149859 | 37.465 | 25.454 | 0.0000 | 148.00 | - | "Hits in T2X2" | 4000 | 148627 | 37.157 | 24.820 | 0.0000 | 166.00 | - | "Hits in T3U" | 4000 | 162124 | 40.531 | 27.162 | 0.0000 | 182.00 | - | "Hits in T3V" | 4000 | 181800 | 45.450 | 28.935 | 0.0000 | 176.00 | - | "Hits in T3X1" | 4000 | 167329 | 41.832 | 28.277 | 0.0000 | 168.00 | - | "Hits in T3X2" | 4000 | 196370 | 49.093 | 32.866 | 0.0000 | 196.00 | - | "Total number of hits" | 1000 | 1959958 | 1960.0 | 1211.6 | 60.000 | 6467.0 | -RichPixelClustering INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No DePD object found for decoded channel ID" | 95 | -TBTCMatch INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 14661 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 14661 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 14661 | -TBTC_Forward INFO Number of counters : 3 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 13316 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 13316 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 13316 | -VeloRetinaClusterTrackingSIMD INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 1000 | 1078445 | 1078.4 | - | "Nb of Produced Tracks" | 1000 | 108950 | 108.95 | -RichRefCalibLong SUCCESS 1D histograms in directory "RICH/RichRefCalibLong" : 2 - | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons" | 2187051 | 4.2834e-05 | 0.0037451 | -0.027332 | -0.97433 | - | Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons" | 1435488 | 0.00012763 | 0.0021404 | -0.071668 | -0.94901 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-opt index f4a7657703ddf740e2f2f77e4645e62ea2a09945..6b288752dd9d4b04edc0668e2b408e16770ccdb0 100644 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-opt +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data.ref.x86_64_v3-opt @@ -5,605 +5,594 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_ab47e101 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 5000 | 8517 | 1.7034 | - | "nTracksSelected" | 5000 | 8517 | 1.7034 | -DefaultGECFilter INFO Number of counters : 1 + | "nTracksInput" | 4967 | 12946 | 2.6064 | + | "nTracksSelected" | 4967 | 12946 | 2.6064 | +DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 5000 | + | "Nb events removed" | 33 | HLTControlFlowMgr INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Processed events" | 5000 | MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#banks in raw event" | 5000 | 3150729 | 630.15 | 0.35291 | 630.00 | 631.00 | - | "event size statistics (KBytes)" | 5195 | 98426 | 18.946 | 5.7507 | 8.0000 | 55.000 | + | "#banks in raw event" | 5000 | 3125452 | 625.09 | 0.28675 | 625.00 | 626.00 | + | "event size statistics (KBytes)" | 5103 | 133140 | 26.091 | 6.9015 | 8.0000 | 57.000 | PrForwardTrackingVelo_5399212b INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 4661 | 134470 | 28.850 | - | "Created long tracks" | 4661 | 2776 | 0.59558 | - | "Empty input tracks" | 339 | - | "Input tracks" | 4661 | 139190 | 29.863 | - | "Number of candidate bins per track" | 134470 | 51854 | 0.38562 | 1.5472 | 0.0000 | 36.000 | - | "Number of complete candidates/track 1st Loop" | 20580 | 2361 | 0.11472 | 0.32006 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 19269 | 452 | 0.023457 | 0.15169 | 0.0000 | 2.0000 | - | "Number of x candidates per track 1st Loop" | 20580 | 7275 | 0.35350 | 0.62485 | - | "Number of x candidates per track 2nd Loop" | 19269 | 22491 | 1.1672 | 1.7887 | - | "Percentage second loop execution" | 20580 | 19269 | 0.93630 | - | "Removed duplicates" | 4661 | 28 | 0.0060073 | + | "Accepted input tracks" | 4842 | 224491 | 46.363 | + | "Created long tracks" | 4842 | 4687 | 0.96799 | + | "Empty input tracks" | 125 | + | "Input tracks" | 4842 | 229255 | 47.347 | + | "Number of candidate bins per track" | 224491 | 390646 | 1.7401 | 4.4125 | 0.0000 | 61.000 | + | "Number of complete candidates/track 1st Loop" | 75408 | 3658 | 0.048509 | 0.21803 | 0.0000 | 3.0000 | + | "Number of complete candidates/track 2nd Loop" | 74155 | 1122 | 0.015130 | 0.12328 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 75408 | 41269 | 0.54728 | 1.0602 | + | "Number of x candidates per track 2nd Loop" | 74155 | 184286 | 2.4851 | 3.7872 | + | "Percentage second loop execution" | 75408 | 74155 | 0.98338 | + | "Removed duplicates" | 4842 | 43 | 0.0088806 | PrHybridSeeding_46e539c7 INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Created T2x1 three-hit combinations in case 0" | 1204423 | 684884 | 0.56864 | 0.53976 | 0.0000 | 4.0000 | - | "Created T2x1 three-hit combinations in case 1" | 812049 | 466665 | 0.57468 | 0.53407 | 0.0000 | 4.0000 | - | "Created T2x1 three-hit combinations in case 2" | 773430 | 439623 | 0.56841 | 0.53803 | 0.0000 | 4.0000 | - | "Created XZ tracks (part 0)" | 15000 | 150298 | 10.020 | 13.971 | 0.0000 | 359.00 | - | "Created XZ tracks (part 1)" | 15000 | 140723 | 9.3815 | 13.196 | 0.0000 | 225.00 | - | "Created XZ tracks in case 0" | 10000 | 103438 | 10.344 | 13.743 | 0.0000 | 322.00 | - | "Created XZ tracks in case 1" | 10000 | 102898 | 10.290 | 14.759 | 0.0000 | 359.00 | - | "Created XZ tracks in case 2" | 10000 | 84685 | 8.4685 | 12.055 | 0.0000 | 278.00 | - | "Created full hit combinations in case 0" | 166889 | 166889 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 1" | 116402 | 116402 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 2" | 117664 | 117664 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created seed tracks" | 10000 | 96232 | 9.6232 | 8.0550 | 0.0000 | 115.00 | - | "Created seed tracks (part 0)" | 5000 | 66438 | 13.288 | 11.054 | 0.0000 | 149.00 | - | "Created seed tracks (part 1)" | 5000 | 61954 | 12.391 | 10.434 | 0.0000 | 102.00 | - | "Created seed tracks in case 0" | 10000 | 50754 | 5.0754 | 4.2466 | 0.0000 | 58.000 | - | "Created seed tracks in case 1" | 10000 | 87172 | 8.7172 | 7.1310 | 0.0000 | 96.000 | - | "Created seed tracks in case 2" | 10000 | 115155 | 11.515 | 9.6057 | 0.0000 | 139.00 | - | "Created seed tracks in recovery step" | 5000 | 13237 | 2.6474 | 3.0120 | 0.0000 | 31.000 | - | "Created two-hit combinations in case 0" | 803728 | 6715381 | 8.3553 | 7.8188 | 0.0000 | 62.000 | - | "Created two-hit combinations in case 1" | 840309 | 4664031 | 5.5504 | 5.2645 | 0.0000 | 157.00 | - | "Created two-hit combinations in case 2" | 762709 | 4659993 | 6.1098 | 5.9493 | 0.0000 | 178.00 | + | "Created T2x1 three-hit combinations in case 0" | 4792557 | 2718274 | 0.56719 | 0.54852 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 3164982 | 1800991 | 0.56904 | 0.54249 | 0.0000 | 5.0000 | + | "Created T2x1 three-hit combinations in case 2" | 2894915 | 1627626 | 0.56224 | 0.54437 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 14901 | 505555 | 33.928 | 41.714 | 0.0000 | 439.00 | + | "Created XZ tracks (part 1)" | 14901 | 447239 | 30.014 | 38.437 | 0.0000 | 448.00 | + | "Created XZ tracks in case 0" | 9934 | 326019 | 32.819 | 40.413 | 0.0000 | 439.00 | + | "Created XZ tracks in case 1" | 9934 | 346471 | 34.877 | 44.124 | 0.0000 | 448.00 | + | "Created XZ tracks in case 2" | 9934 | 280304 | 28.217 | 35.132 | 0.0000 | 358.00 | + | "Created full hit combinations in case 0" | 633552 | 633552 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 408175 | 408175 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 402411 | 402411 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 9934 | 195565 | 19.686 | 16.083 | 0.0000 | 172.00 | + | "Created seed tracks (part 0)" | 4967 | 139228 | 28.031 | 21.432 | 0.0000 | 201.00 | + | "Created seed tracks (part 1)" | 4967 | 122310 | 24.625 | 19.584 | 0.0000 | 182.00 | + | "Created seed tracks in case 0" | 9934 | 94739 | 9.5368 | 7.1362 | 0.0000 | 68.000 | + | "Created seed tracks in case 1" | 9934 | 168959 | 17.008 | 13.048 | 0.0000 | 131.00 | + | "Created seed tracks in case 2" | 9934 | 230683 | 23.222 | 18.414 | 0.0000 | 186.00 | + | "Created seed tracks in recovery step" | 4967 | 30855 | 6.2120 | 5.6472 | 0.0000 | 35.000 | + | "Created two-hit combinations in case 0" | 1355221 |1.860654e+07 | 13.730 | 11.645 | 0.0000 | 139.00 | + | "Created two-hit combinations in case 1" | 1588357 |1.346539e+07 | 8.4776 | 6.6646 | 0.0000 | 71.000 | + | "Created two-hit combinations in case 2" | 1296421 |1.229852e+07 | 9.4865 | 7.9825 | 0.0000 | 75.000 | PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 1128 | - | "chi2 cut" | 911 | - | "nIterations" | 2776 | 7594 | 2.7356 | - | "nOutlierIterations" | 1648 | 2570 | 1.5595 | - | "nTracksInput" | 5000 | 2776 | 0.55520 | - | "nTracksOutput" | 5000 | 737 | 0.14740 | + | "Pre outlier chi2 cut" | 2160 | + | "chi2 cut" | 1348 | + | "nIterations" | 4687 | 12940 | 2.7608 | + | "nOutlierIterations" | 2527 | 4066 | 1.6090 | + | "nTracksInput" | 4967 | 4687 | 0.94363 | + | "nTracksOutput" | 4967 | 1179 | 0.23737 | PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 300 | - | "chi2 cut" | 1036 | - | "nIterations" | 8517 | 17730 | 2.0817 | - | "nOutlierIterations" | 8217 | 8392 | 1.0213 | - | "nTracksInput" | 5000 | 8517 | 1.7034 | - | "nTracksOutput" | 5000 | 7181 | 1.4362 | + | "Pre outlier chi2 cut" | 690 | + | "chi2 cut" | 1622 | + | "nIterations" | 12946 | 27248 | 2.1047 | + | "nOutlierIterations" | 12256 | 11951 | 0.97511 | + | "nTracksInput" | 4967 | 12946 | 2.6064 | + | "nTracksOutput" | 4967 | 10634 | 2.1409 | PrMatchNN_959da4d3 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 4632 | 50873.8 | 10.983 | - | "#MatchingMLP" | 13750 | 12578.33 | 0.91479 | - | "#MatchingTracks" | 4632 | 8517 | 1.8387 | + | "#MatchingChi2" | 4838 | 125639.5 | 25.969 | + | "#MatchingMLP" | 19210 | 17341.69 | 0.90274 | + | "#MatchingTracks" | 4838 | 12946 | 2.6759 | PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Empty Long tracks" | 1586 | + | "Empty Long tracks" | 730 | PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Average X in T1U" | 815111 | -4068146 | -4.9909 | 1064.5 | -2656.3 | 2657.0 | - | "Average X in T1V" | 853884 |-1.062531e+07 | -12.444 | 1067.8 | -2657.0 | 2656.4 | - | "Average X in T1X1" | 803728 |-2.50315e+07 | -31.144 | 1089.1 | -2646.8 | 2646.7 | - | "Average X in T1X2" | 865781 |1.094691e+07 | 12.644 | 1059.8 | -2646.9 | 2647.0 | - | "Average X in T2U" | 806671 | -1836889 | -2.2771 | 1074.4 | -2655.5 | 2656.8 | - | "Average X in T2V" | 828409 |3.004511e+07 | 36.268 | 1060.0 | -2655.1 | 2656.4 | - | "Average X in T2X1" | 785966 |-3.483145e+07 | -44.317 | 1087.2 | -2645.8 | 2646.5 | - | "Average X in T2X2" | 837563 |2.974352e+07 | 35.512 | 1045.0 | -2645.3 | 2646.8 | - | "Average X in T3U" | 837044 |-1.622849e+07 | -19.388 | 1209.4 | -3187.5 | 3190.1 | - | "Average X in T3V" | 1022603 |4.52813e+07 | 44.280 | 1197.8 | -3189.3 | 3189.6 | - | "Average X in T3X1" | 881094 | 4533782 | 5.1456 | 1188.1 | -3176.5 | 3177.4 | - | "Average X in T3X2" | 917963 |-1.337318e+07 | -14.568 | 1206.7 | -3177.0 | 3178.4 | - | "Hits in T1U" | 20000 | 815111 | 40.756 | 27.493 | 0.0000 | 213.00 | - | "Hits in T1V" | 20000 | 853884 | 42.694 | 28.755 | 0.0000 | 209.00 | - | "Hits in T1X1" | 20000 | 803728 | 40.186 | 27.020 | 0.0000 | 292.00 | - | "Hits in T1X2" | 20000 | 865781 | 43.289 | 29.060 | 0.0000 | 196.00 | - | "Hits in T2U" | 20000 | 806671 | 40.334 | 26.608 | 0.0000 | 218.00 | - | "Hits in T2V" | 20000 | 828409 | 41.420 | 27.464 | 0.0000 | 195.00 | - | "Hits in T2X1" | 20000 | 785966 | 39.298 | 25.804 | 0.0000 | 195.00 | - | "Hits in T2X2" | 20000 | 837563 | 41.878 | 27.626 | 0.0000 | 191.00 | - | "Hits in T3U" | 20000 | 837044 | 41.852 | 27.147 | 0.0000 | 201.00 | - | "Hits in T3V" | 20000 | 1022603 | 51.130 | 30.550 | 0.0000 | 222.00 | - | "Hits in T3X1" | 20000 | 881094 | 44.055 | 27.328 | 0.0000 | 239.00 | - | "Hits in T3X2" | 20000 | 917963 | 45.898 | 29.682 | 0.0000 | 192.00 | - | "Total number of hits" | 5000 |1.025582e+07 | 2051.2 | 1256.4 | 18.000 | 8079.0 | + | "Average X in T1U" | 1466031 |-7.671733e+07 | -52.330 | 1093.6 | -2656.2 | 2657.0 | + | "Average X in T1V" | 1634043 |-3.169497e+07 | -19.397 | 1080.3 | -2657.0 | 2656.6 | + | "Average X in T1X1" | 1355221 |1.040715e+08 | 76.793 | 1141.5 | -2646.5 | 2646.9 | + | "Average X in T1X2" | 1622851 |9.378655e+07 | 57.791 | 1029.0 | -2646.9 | 2647.1 | + | "Average X in T2U" | 1529256 | 2150083 | 1.4060 | 1084.6 | -2655.4 | 2657.0 | + | "Average X in T2V" | 1566078 |6.210436e+07 | 39.656 | 1067.5 | -2655.0 | 2656.4 | + | "Average X in T2X1" | 1484013 |-5.512842e+07 | -37.148 | 1091.5 | -2645.8 | 2646.6 | + | "Average X in T2X2" | 1581960 |6.28379e+07 | 39.722 | 1051.4 | -2645.3 | 2646.7 | + | "Average X in T3U" | 1495051 | 3.7677e+07 | 25.201 | 1147.2 | -3187.3 | 3190.0 | + | "Average X in T3V" | 1639798 |9.150891e+07 | 55.805 | 1252.5 | -3189.2 | 3189.8 | + | "Average X in T3X1" | 1563478 |-3.699402e+07 | -23.661 | 1239.7 | -3176.8 | 3177.4 | + | "Average X in T3X2" | 1701080 |6.371264e+07 | 37.454 | 1185.4 | -3177.0 | 3178.4 | + | "Hits in T1U" | 19868 | 1466031 | 73.789 | 36.941 | 0.0000 | 250.00 | + | "Hits in T1V" | 19868 | 1634043 | 82.245 | 39.579 | 0.0000 | 255.00 | + | "Hits in T1X1" | 19868 | 1355221 | 68.211 | 33.170 | 0.0000 | 231.00 | + | "Hits in T1X2" | 19868 | 1622851 | 81.682 | 39.336 | 0.0000 | 264.00 | + | "Hits in T2U" | 19868 | 1529256 | 76.971 | 36.494 | 0.0000 | 226.00 | + | "Hits in T2V" | 19868 | 1566078 | 78.824 | 37.800 | 0.0000 | 250.00 | + | "Hits in T2X1" | 19868 | 1484013 | 74.694 | 35.589 | 0.0000 | 245.00 | + | "Hits in T2X2" | 19868 | 1581960 | 79.624 | 38.209 | 0.0000 | 244.00 | + | "Hits in T3U" | 19868 | 1495051 | 75.249 | 36.221 | 0.0000 | 213.00 | + | "Hits in T3V" | 19868 | 1639798 | 82.535 | 38.433 | 0.0000 | 245.00 | + | "Hits in T3X1" | 19868 | 1563478 | 78.693 | 36.017 | 0.0000 | 219.00 | + | "Hits in T3X2" | 19868 | 1701080 | 85.619 | 40.078 | 0.0000 | 270.00 | + | "Total number of hits" | 4967 |1.863886e+07 | 3752.5 | 1678.6 | 26.000 | 8700.0 | PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | - | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | - |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | + | "# RawBank::UT banks" | 4967 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 4967 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 4967 | 0 |( 0.000000 +- 0.000000)% | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | + | "Nb of Produced Clusters" | 4967 | 2625837 | 528.66 | RichClusteringForMoni INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No DePD object found for decoded channel ID" | 215 | + | "No DePD object found for decoded channel ID" | 5847 | RichPixelClustering_98aa0d87 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No DePD object found for decoded channel ID" | 215 | + | "No DePD object found for decoded channel ID" | 5847 | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 5000 | 2891626 | 578.33 | 887.64 | 0.0000 | 11451. | - | "# Rich1Gas Segments" | 5000 | 7804 | 1.5608 | 1.6596 | 0.0000 | 11.000 | - | "# Rich2Gas Photons" | 5000 | 275345 | 55.069 | 122.51 | 0.0000 | 1800.0 | - | "# Rich2Gas Segments" | 5000 | 2187 | 0.43740 | 0.76895 | 0.0000 | 7.0000 | - | "# Selected Tracks" | 5000 | 7804 | 1.5608 | 1.6596 | 0.0000 | 11.000 | - |*"RICH selection efficiency" | 7814 | 7804 |( 99.87202 +- 0.04044348)% | + | "# Rich1Gas Photons" | 4967 | 6253993 | 1259.1 | 1388.1 | 0.0000 | 19529. | + | "# Rich1Gas Segments" | 4967 | 11543 | 2.3239 | 1.8317 | 0.0000 | 13.000 | + | "# Rich2Gas Photons" | 4967 | 679987 | 136.90 | 235.71 | 0.0000 | 3465.0 | + | "# Rich2Gas Segments" | 4967 | 3439 | 0.69237 | 0.94247 | 0.0000 | 8.0000 | + | "# Selected Tracks" | 4967 | 11543 | 2.3239 | 1.8317 | 0.0000 | 13.000 | + |*"RICH selection efficiency" | 11564 | 11543 |( 99.81840 +- 0.03959195)% | TBTCMatch_e6402d48 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 7084 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 7084 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 7084 | + |*"BadInput" | 10396 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 10396 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 10396 | TBTC_Forward_c95b0b3d INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 730 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 730 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 730 | + |*"BadInput" | 1168 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 1168 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 1168 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 5000 | 0 | 0.0000 | + | "# Converted Clusters" | 4967 | 0 | 0.0000 | VPLightClustersToVPMicroClusters... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 5000 | 1424476 | 284.90 | + | "# Converted Clusters" | 4967 | 2625837 | 528.66 | VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | - | "Nb of Produced Tracks" | 5000 | 190096 | 38.019 | + | "Nb of Produced Clusters" | 4967 | 2625837 | 528.66 | + | "Nb of Produced Tracks" | 4967 | 328010 | 66.038 | RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 133 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 668630 | 0.00012393 | 0.0028698 | -0.072825 | -0.89321 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 668630 | 0.00012393 | 0.0028698 | -0.072825 | -0.89321 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 668630 | 0.00012393 | 0.0028698 | -0.072825 | -0.89321 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25318 | 8.2965e-05 | 0.0026780 | -0.06559 | -0.67068 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 82 | 0.0010267 | 0.0020969 | -0.42764 | 0.12311 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 598 | 0.00062359 | 0.0025245 | -0.44053 | -0.40182 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3183 | 0.00057241 | 0.0025848 | -0.20278 | -0.46782 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38154 | 0.00049727 | 0.0027831 | -0.18497 | -0.72814 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 217615 | 0.00024193 | 0.0029028 | -0.082581 | -0.92069 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 250754 |-4.6713e-05 | 0.0029095 | -0.030221 | -0.96636 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 132926 | 3.4971e-05 | 0.0028080 | -0.079962 | -0.82766 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25318 | 8.2965e-05 | 0.0026780 | -0.06559 | -0.67068 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 82 | 0.0010267 | 0.0020969 | -0.42764 | 0.12311 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 598 | 0.00062359 | 0.0025245 | -0.44053 | -0.40182 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3183 | 0.00057241 | 0.0025848 | -0.20278 | -0.46782 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38154 | 0.00049727 | 0.0027831 | -0.18497 | -0.72814 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 217615 | 0.00024193 | 0.0029028 | -0.082581 | -0.92069 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 250754 |-4.6713e-05 | 0.0029095 | -0.030221 | -0.96636 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 132926 | 3.4971e-05 | 0.0028080 | -0.079962 | -0.82766 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2612324 | 0.00010389 | 0.0028577 | -0.073334 | -0.85133 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2612324 | 0.00010389 | 0.0028577 | -0.073334 | -0.85133 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2612324 | 0.00010389 | 0.0028577 | -0.073334 | -0.85133 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2612324 | 3.0859 | 1.7598 | 0.06806 | -1.1032 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2612324 | 0.040793 | 0.011210 | -0.66521 | -0.4702 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1943694 | 9.694e-05 | 0.0028535 | -0.073599 | -0.83657 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1943694 | 9.694e-05 | 0.0028535 | -0.073599 | -0.83657 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1943694 | 9.694e-05 | 0.0028535 | -0.073599 | -0.83657 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 129 | 0.00077819 | 0.0017320 | 0.20076 | 1.3942 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 76550 | 0.00019329 | 0.0026578 | -0.042742 | -0.58557 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578 | 0.0007914 | 0.0021492 | -0.39698 | 0.39647 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1608 | 0.00053171 | 0.0024477 | -0.32794 | -0.22379 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5607 | 0.00050491 | 0.0025168 | -0.24833 | -0.24944 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28035 | 0.00045456 | 0.0025997 | -0.25564 | -0.42017 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192185 | 0.00043762 | 0.0027909 | -0.20017 | -0.72661 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 616026 | 8.9632e-05 | 0.0029092 | -0.073508 | -0.90652 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 639210 |-2.0708e-05 | 0.0028939 | -0.040581 | -0.89497 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 383766 |-1.2304e-05 | 0.0028136 | -0.014461 | -0.78153 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 129 | 0.00077819 | 0.0017320 | 0.20076 | 1.3942 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 76550 | 0.00019329 | 0.0026578 | -0.042742 | -0.58557 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578 | 0.0007914 | 0.0021492 | -0.39698 | 0.39647 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1608 | 0.00053171 | 0.0024477 | -0.32794 | -0.22379 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5607 | 0.00050491 | 0.0025168 | -0.24833 | -0.24944 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28035 | 0.00045456 | 0.0025997 | -0.25564 | -0.42017 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192185 | 0.00043762 | 0.0027909 | -0.20017 | -0.72661 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 616026 | 8.9632e-05 | 0.0029092 | -0.073508 | -0.90652 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 639210 |-2.0708e-05 | 0.0028939 | -0.040581 | -0.89497 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 383766 |-1.2304e-05 | 0.0028136 | -0.014461 | -0.78153 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 236397 | 6.9177e-05 | 0.0018087 | -0.051034 | -0.81329 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 236397 | 6.9177e-05 | 0.0018087 | -0.051034 | -0.81329 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 203917 | 5.6859e-05 | 0.0018340 | -0.034375 | -0.8654 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32480 | 0.00013161 | 0.0016731 | -0.13925 | -0.49394 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6152 | 7.562e-05 | 0.0016654 | -0.12236 | -0.42076 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17592 | 9.3049e-05 | 0.0018288 | -0.10127 | -0.85953 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11536 | 0.00012152 | 0.0018193 | -0.090578 | -0.85256 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6025 | 0.00018098 | 0.0018012 | -0.16156 | -0.78771 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10820 |-6.6588e-06 | 0.0017749 | 0.0013822 | -0.68878 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17546 | -9.577e-05 | 0.0017945 | 0.070361 | -0.75753 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17767 | 0.00010612 | 0.0018241 | -0.052708 | -0.84887 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21203 | 8.8025e-05 | 0.0018531 | -0.052657 | -0.89982 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21408 | 0.00012093 | 0.0018730 | -0.056951 | -0.94496 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26139 | 7.1772e-05 | 0.0018574 | -0.0017139 | -0.93324 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25872 |-3.1446e-05 | 0.0018531 | 0.018285 | -0.90234 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21857 | 3.3974e-05 | 0.0018465 | -0.035518 | -0.88792 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1823 | 0.00010439 | 0.0014712 | -0.18143 | 0.0036658 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2736 | 0.00031214 | 0.0017208 | -0.30628 | -0.61125 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1579 | 0.00034219 | 0.0017216 | -0.32897 | -0.42129 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 911 | 0.00020913 | 0.0017049 | -0.26523 | -0.46879 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2553 |-2.7571e-05 | 0.0015129 | -0.037628 | -0.096971 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2733 | 3.5688e-05 | 0.0016586 | -0.060295 | -0.50517 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2724 | 0.000105 | 0.0017094 | -0.081713 | -0.52306 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2765 | 0.00017804 | 0.0016840 | -0.098798 | -0.54327 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2936 | 5.5537e-05 | 0.0016837 | -0.0093284 | -0.52821 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3839 | 6.0167e-05 | 0.0017180 | -0.072355 | -0.64511 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4225 | 7.8368e-05 | 0.0016816 | -0.17572 | -0.50265 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3656 | 0.00027003 | 0.0016944 | -0.28116 | -0.45541 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7975 | 8.3491e-05 | 0.0016147 | -0.13757 | -0.31278 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20328 | 0.0001282 | 0.0018137 | -0.13466 | -0.83116 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13115 | 0.00015271 | 0.0018075 | -0.12405 | -0.80856 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6936 | 0.00018501 | 0.0017878 | -0.1751 | -0.74745 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13373 |-1.1688e-05 | 0.0017155 | -0.0030891 | -0.5663 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20279 |-7.2959e-05 | 0.0017723 | 0.047054 | -0.72125 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20491 | 0.00010593 | 0.0018053 | -0.056857 | -0.80019 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23968 | 0.00010037 | 0.0018311 | -0.060738 | -0.85715 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24344 | 0.00011142 | 0.0018468 | -0.049191 | -0.89388 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29978 | 7.0081e-05 | 0.0018377 | -0.0097787 | -0.89539 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30097 |-1.3169e-05 | 0.0018262 | -0.011439 | -0.84957 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25513 | 7.4585e-05 | 0.0018234 | -0.07811 | -0.83575 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34669 | 9.5764e-05 | 0.0018279 | -0.067589 | -0.8735 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34669 | 9.5764e-05 | 0.0018279 | -0.067589 | -0.8735 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30316 | 8.1347e-05 | 0.0018461 | -0.052681 | -0.90655 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4353 | 0.00018092 | 0.0017136 | -0.15364 | -0.64379 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1196 | 0.00017251 | 0.0019021 | -0.20397 | -0.92517 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1857 | 0.00011059 | 0.0017669 | -0.031949 | -0.7259 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1044 |-6.5084e-05 | 0.0016743 | -0.061043 | -0.61878 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 555 | 8.2283e-05 | 0.0014857 | 0.25478 | -0.12567 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1820 |-0.00011486 | 0.0018668 | 0.013684 | -1.0387 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2326 | 0.00011674 | 0.0018547 | -0.055885 | -0.97732 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1963 | -4.046e-05 | 0.0018409 | 0.07551 | -0.83656 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3466 | 0.00024919 | 0.0018724 | -0.14494 | -0.90173 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4865 | 0.00013925 | 0.0018584 | -0.078323 | -0.95853 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4174 | 1.9194e-05 | 0.0019076 | -0.012635 | -1.0253 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3870 | 4.3661e-05 | 0.0018575 | -0.036371 | -0.87997 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3180 | 6.045e-05 | 0.0018088 | -0.068234 | -0.85007 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 128 | 0.00032879 | 0.0018446 | -0.22226 | -0.75381 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 285 | 0.00015623 | 0.0017330 | -0.30457 | -0.50688 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 165 | 0.00044275 | 0.0015342 | -0.26582 | 0.0028561 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 122 | 2.4155e-05 | 0.0011997 | 0.21088 | 0.50513 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 201 | 3.1854e-05 | 0.0016385 | 0.18222 | -0.67776 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 313 | 2.4063e-05 | 0.0017835 | 0.11563 | -0.83187 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 319 |-2.0064e-06 | 0.0017918 | 0.0065366 | -0.81447 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 427 | 0.00015012 | 0.0017087 | -0.26235 | -0.68587 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 577 | 0.00035556 | 0.0017702 | -0.17325 | -0.8499 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 696 | 0.00042989 | 0.0017887 | -0.34196 | -0.65586 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 585 | 3.4014e-05 | 0.0016391 | -0.14678 | -0.5785 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 535 | 7.1479e-05 | 0.0016378 | -0.20248 | -0.38356 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1324 | 0.00018968 | 0.0018965 | -0.20705 | -0.90652 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2142 | 0.00011747 | 0.0017619 | -0.071452 | -0.69787 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1209 | 7.8546e-06 | 0.0016644 | -0.098882 | -0.56212 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 677 | 7e-05 | 0.0014302 | 0.25916 | 0.011932 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2021 |-9.9476e-05 | 0.0018448 | 0.020849 | -1.001 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2639 | 0.00010283 | 0.0018445 | -0.031148 | -0.96035 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2282 | -3.356e-05 | 0.0018322 | 0.063448 | -0.83281 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3893 | 0.00023559 | 0.0018511 | -0.1545 | -0.87115 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5442 | 0.00016353 | 0.0018499 | -0.090668 | -0.94788 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4870 | 8.4236e-05 | 0.0018952 | -0.06605 | -0.99698 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4455 | 4.2181e-05 | 0.0018257 | -0.048247 | -0.8353 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3715 | 6.2386e-05 | 0.0017800 | -0.08722 | -0.78091 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 271066 | 7.2525e-05 | 0.0018111 | -0.053072 | -0.82112 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 271066 | 7.2525e-05 | 0.0018111 | -0.053072 | -0.82112 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 234233 | 6.0006e-05 | 0.0018356 | -0.036708 | -0.87085 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 36833 | 0.00013715 | 0.0016778 | -0.14054 | -0.51186 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 271066 | 3.3534 | 1.8363 | -0.20638 | -1.1839 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 271066 | 0.025127 | 0.0054315 | -0.63898 | -0.49627 | -RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 131 + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1377573 | 9.2829e-05 | 0.0029732 | -0.045877 | -1.0029 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1377573 | 9.2829e-05 | 0.0029732 | -0.045877 | -1.0029 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1377573 | 9.2829e-05 | 0.0029732 | -0.045877 | -1.0029 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 49279 | 4.0496e-05 | 0.0027896 | -0.03608 | -0.81965 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 252 | 0.0011117 | 0.0026759 | -0.46671 | -0.41987 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4272 | 0.0010032 | 0.0027405 | -0.3307 | -0.63715 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78928 | 0.0004368 | 0.0029260 | -0.15337 | -0.91726 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 443714 | 0.00023965 | 0.0030085 | -0.07736 | -1.0253 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 522481 |-9.1528e-05 | 0.0029871 | 0.0036939 | -1.0351 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 278647 |-1.0054e-05 | 0.0029191 | -0.031604 | -0.96304 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 49279 | 4.0496e-05 | 0.0027896 | -0.03608 | -0.81965 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 252 | 0.0011117 | 0.0026759 | -0.46671 | -0.41987 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4272 | 0.0010032 | 0.0027405 | -0.3307 | -0.63715 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78928 | 0.0004368 | 0.0029260 | -0.15337 | -0.91726 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 443714 | 0.00023965 | 0.0030085 | -0.07736 | -1.0253 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 522481 |-9.1528e-05 | 0.0029871 | 0.0036939 | -1.0351 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 278647 |-1.0054e-05 | 0.0029191 | -0.031604 | -0.96304 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 5580674 | 7.4427e-05 | 0.0029633 | -0.043327 | -0.97594 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 5580674 | 7.4427e-05 | 0.0029633 | -0.043327 | -0.97594 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 5580674 | 7.4427e-05 | 0.0029633 | -0.043327 | -0.97594 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 5580674 | 3.079 | 1.7543 | 0.079979 | -1.0893 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 5580674 | 0.040469 | 0.011113 | -0.61727 | -0.49665 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4203101 | 6.8392e-05 | 0.0029600 | -0.042535 | -0.96698 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4203101 | 6.8392e-05 | 0.0029600 | -0.042535 | -0.96698 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4203101 | 6.8392e-05 | 0.0029600 | -0.042535 | -0.96698 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00020382 | 0.0027206 | -0.24501 | -0.57281 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 215 | 0.00053261 | 0.0023581 | -0.52262 | -0.0055576 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 168414 | 0.00024666 | 0.0027902 | -0.063147 | -0.76811 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 798 | 0.00035533 | 0.0024714 | -0.27695 | -0.10213 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2232 | 0.00010625 | 0.0024789 | -0.23652 | -0.42259 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6892 | 0.00036834 | 0.0025149 | -0.22171 | -0.34488 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31450 | 0.00064529 | 0.0027149 | -0.23995 | -0.60189 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 399058 | 0.00047232 | 0.0029111 | -0.18767 | -0.88004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1313681 | 4.3287e-05 | 0.0030005 | -0.034784 | -1.0142 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1382035 |-6.9677e-05 | 0.0029916 | -0.0024637 | -1.0068 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 898285 |-2.9059e-05 | 0.0029249 | 0.0050082 | -0.9292 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00020382 | 0.0027206 | -0.24501 | -0.57281 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 215 | 0.00053261 | 0.0023581 | -0.52262 | -0.0055576 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 168414 | 0.00024666 | 0.0027902 | -0.063147 | -0.76811 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 798 | 0.00035533 | 0.0024714 | -0.27695 | -0.10213 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2232 | 0.00010625 | 0.0024789 | -0.23652 | -0.42259 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6892 | 0.00036834 | 0.0025149 | -0.22171 | -0.34488 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31450 | 0.00064529 | 0.0027149 | -0.23995 | -0.60189 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 399058 | 0.00047232 | 0.0029111 | -0.18767 | -0.88004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1313681 | 4.3287e-05 | 0.0030005 | -0.034784 | -1.0142 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1382035 |-6.9677e-05 | 0.0029916 | -0.0024637 | -1.0068 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 898285 |-2.9059e-05 | 0.0029249 | 0.0050082 | -0.9292 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 615152 | 8.9884e-05 | 0.0018859 | -0.057498 | -0.95978 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 615152 | 8.9884e-05 | 0.0018859 | -0.057498 | -0.95978 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 545911 | 7.7698e-05 | 0.0019032 | -0.045646 | -0.99077 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 69241 | 0.0001716 | 0.0017635 | -0.13434 | -0.71535 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18722 | 3.3401e-05 | 0.0017688 | -0.056305 | -0.71664 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 45310 | 9.1095e-05 | 0.0018876 | -0.085839 | -0.97373 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27976 | 0.00015949 | 0.0018913 | -0.11887 | -0.95636 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14739 | 0.00022033 | 0.0018398 | -0.18498 | -0.86387 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31644 |-2.4741e-05 | 0.0018388 | -0.0076457 | -0.8496 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51171 |-2.9925e-05 | 0.0018732 | 0.019372 | -0.93276 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51912 | 8.0672e-05 | 0.0019045 | -0.050515 | -0.98955 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58081 | 0.00017419 | 0.0019344 | -0.10373 | -1.0331 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56568 | 0.00015692 | 0.0019305 | -0.057555 | -1.047 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 67857 | 5.088e-05 | 0.0019300 | -0.0070823 | -1.0478 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 66674 | 2.7515e-05 | 0.0019235 | -0.010604 | -1.0228 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 55257 | 2.4108e-05 | 0.0019026 | -0.020986 | -0.99488 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4092 | 0.00011972 | 0.0016187 | -0.13081 | -0.368 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5337 | 0.00035356 | 0.0017729 | -0.29785 | -0.731 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2924 | 0.00025257 | 0.0018198 | -0.21107 | -0.7744 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1575 | 0.00045145 | 0.0017541 | -0.29599 | -0.65537 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5524 | 0.00011113 | 0.0016544 | -0.071331 | -0.55871 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5914 | 0.00011953 | 0.0017585 | -0.064118 | -0.66137 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5662 | 0.00024208 | 0.0017956 | -0.071875 | -0.77645 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6194 | 0.00013007 | 0.0017832 | -0.064382 | -0.74006 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6704 | 0.00010332 | 0.0017871 | -0.051285 | -0.76746 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8527 | 4.5307e-05 | 0.0017729 | -0.052419 | -0.76612 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8780 | 0.00015006 | 0.0017944 | -0.18924 | -0.75433 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8008 | 0.00024942 | 0.0017647 | -0.28144 | -0.69456 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22814 | 5.1742e-05 | 0.0017383 | -0.073336 | -0.65132 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50647 | 0.00012355 | 0.0018758 | -0.11295 | -0.9536 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30900 | 0.00016957 | 0.0018839 | -0.12891 | -0.93908 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16314 | 0.00024607 | 0.0018319 | -0.19874 | -0.84413 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 37168 | 1.2849e-06 | 0.0018058 | -0.0239 | -0.79867 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57085 |-1.0019e-05 | 0.0018590 | 0.0066384 | -0.90211 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57574 | 0.0001007 | 0.0018921 | -0.055829 | -0.96453 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64275 | 0.00016945 | 0.0019188 | -0.099414 | -1.0057 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63272 | 0.00015098 | 0.0019152 | -0.055827 | -1.0195 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 76384 | 5.022e-05 | 0.0019120 | -0.011226 | -1.018 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75454 | 4.381e-05 | 0.0019073 | -0.033295 | -0.99449 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63265 | 5.7198e-05 | 0.0018847 | -0.058599 | -0.96594 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 51247 | 0.00011827 | 0.0019126 | -0.069257 | -1.0233 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 51247 | 0.00011827 | 0.0019126 | -0.069257 | -1.0233 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43480 | 0.00010637 | 0.0019343 | -0.054799 | -1.0635 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7767 | 0.00017594 | 0.0018025 | -0.14094 | -0.7957 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 195 | 0.00027327 | 0.0018349 | -0.19131 | -0.97251 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4247 | 0.0001609 | 0.0019108 | -0.083917 | -1.0084 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2020 |-5.5187e-05 | 0.0018443 | 0.016097 | -0.8435 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1386 |-9.6448e-05 | 0.0017522 | 0.16922 | -0.71805 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 251 | 0.0003052 | 0.0021362 | -0.11176 | -1.3138 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 630 | 0.0002037 | 0.0018204 | -0.21625 | -0.82573 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 846 | 0.00029247 | 0.0020412 | -0.21678 | -1.1854 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2947 | 0.00058995 | 0.0019001 | -0.34942 | -0.94828 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7282 | 0.00013835 | 0.0019233 | -0.055714 | -1.0883 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8165 |-3.4662e-06 | 0.0019879 | -0.010947 | -1.1325 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8455 | 0.00010306 | 0.0019470 | -0.038194 | -1.0624 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7056 |-5.6526e-05 | 0.0019148 | 0.014909 | -1.0493 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8 |-0.00054833 | 0.0021418 | 0.23214 | -1.602 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 900 | 8.0346e-05 | 0.0017535 | -0.10249 | -0.75407 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 439 | -1.099e-05 | 0.0018632 | -0.0052228 | -0.83726 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 276 | 2.8378e-06 | 0.0015618 | 0.10958 | -0.18406 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32 | 0.0010958 | 0.0011989 | -0.4185 | -0.6363 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 160 | 0.00037977 | 0.0017386 | -0.47392 | -0.45813 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 267 | 8.8435e-05 | 0.0018597 | -0.13348 | -0.83139 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 603 | 0.00057325 | 0.0017134 | -0.32009 | -0.64911 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1197 | 0.00029067 | 0.0018577 | -0.20066 | -0.86602 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1435 | 5.763e-05 | 0.0018240 | -0.040112 | -0.90158 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1253 | 0.00020896 | 0.0018317 | -0.2306 | -0.81004 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1197 | 9.5099e-05 | 0.0017715 | -0.073169 | -0.71635 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 203 | 0.00022845 | 0.0018623 | -0.18171 | -1.0288 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5147 | 0.00014253 | 0.0018764 | -0.083779 | -0.95445 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2459 |-4.5066e-05 | 0.0018488 | 0.011358 | -0.84205 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1662 |-7.8329e-05 | 0.0017195 | 0.15588 | -0.63924 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 283 | 0.00039615 | 0.0020658 | -0.20001 | -1.2171 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 790 | 0.00024999 | 0.0018009 | -0.28174 | -0.7512 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1113 | 0.0002332 | 0.0019924 | -0.18574 | -1.1018 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3550 | 0.00058701 | 0.0018686 | -0.3454 | -0.90046 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8479 | 0.00016089 | 0.0019145 | -0.077249 | -1.0616 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9600 | 6.6769e-06 | 0.0019618 | -0.016949 | -1.0972 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9708 | 0.00011628 | 0.0019333 | -0.060707 | -1.0374 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8253 | -2.865e-05 | 0.0018902 | -0.0037153 | -0.9978 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 666399 | 9.2102e-05 | 0.0018880 | -0.05836 | -0.96492 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 666399 | 9.2102e-05 | 0.0018880 | -0.05836 | -0.96492 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 589391 | 7.9839e-05 | 0.0019055 | -0.046258 | -0.9964 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 77008 | 0.00017203 | 0.0017675 | -0.13502 | -0.72369 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 666399 | 3.3923 | 1.8450 | -0.24807 | -1.1745 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 666399 | 0.024899 | 0.0055342 | -0.55959 | -0.60097 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 119 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 83961 | 0.0001556 | 0.0028480 | -0.082007 | -0.8785 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 83961 | 0.0001556 | 0.0028480 | -0.082007 | -0.8785 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 83961 | 0.0001556 | 0.0028480 | -0.082007 | -0.8785 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3678 | 3.0021e-06 | 0.0026952 | -0.063467 | -0.6957 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.0020717 | 0.0019929 | 0.26976 | -1.5 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 62 | 0.0012503 | 0.0023599 | -0.13578 | 0.09258 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235 | -0.0001497 | 0.0024686 | 0.28537 | -0.068131 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2957 | 0.0003476 | 0.0027048 | -0.0087017 | -0.66077 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25403 | 0.00037087 | 0.0028690 | -0.10849 | -0.88657 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 35322 | -2.468e-05 | 0.0028829 | -0.047465 | -0.95102 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 16300 | 0.00014508 | 0.0027890 | -0.1407 | -0.82314 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3678 | 3.0021e-06 | 0.0026952 | -0.063467 | -0.6957 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.0020717 | 0.0019929 | 0.26976 | -1.5 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 62 | 0.0012503 | 0.0023599 | -0.13578 | 0.09258 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235 | -0.0001497 | 0.0024686 | 0.28537 | -0.068131 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2957 | 0.0003476 | 0.0027048 | -0.0087017 | -0.66077 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25403 | 0.00037087 | 0.0028690 | -0.10849 | -0.88657 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 35322 | -2.468e-05 | 0.0028829 | -0.047465 | -0.95102 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 16300 | 0.00014508 | 0.0027890 | -0.1407 | -0.82314 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 604539 | 9.3645e-05 | 0.0028248 | -0.079374 | -0.80939 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 604539 | 9.3645e-05 | 0.0028248 | -0.079374 | -0.80939 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 604539 | 9.3645e-05 | 0.0028248 | -0.079374 | -0.80939 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 604539 | 3.0525 | 1.7083 | 0.10818 | -1.0109 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 604539 | 0.041161 | 0.011156 | -0.71313 | -0.38938 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 520578 | 8.2924e-05 | 0.0028206 | -0.079138 | -0.79717 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 520578 | 8.2924e-05 | 0.0028206 | -0.079138 | -0.79717 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 520578 | 8.2924e-05 | 0.0028206 | -0.079138 | -0.79717 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46 | 0.0015502 | 0.0018038 | 0.06473 | -0.16497 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22537 | 0.0002515 | 0.0026204 | -0.081954 | -0.54439 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 398 | 0.00071236 | 0.0022998 | -0.4065 | 0.10523 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 902 | 0.0005183 | 0.0024741 | -0.36046 | -0.34712 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2890 | 0.00050648 | 0.0025386 | -0.25621 | -0.25302 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8748 | 0.00038141 | 0.0025656 | -0.27301 | -0.37519 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 53393 | 0.00045212 | 0.0027813 | -0.19744 | -0.71422 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 163107 | 3.8714e-05 | 0.0028868 | -0.063665 | -0.88418 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 162199 |-2.7096e-05 | 0.0028538 | -0.053926 | -0.84783 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106358 |-5.2043e-05 | 0.0027781 | -0.01532 | -0.74008 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46 | 0.0015502 | 0.0018038 | 0.06473 | -0.16497 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22537 | 0.0002515 | 0.0026204 | -0.081954 | -0.54439 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 398 | 0.00071236 | 0.0022998 | -0.4065 | 0.10523 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 902 | 0.0005183 | 0.0024741 | -0.36046 | -0.34712 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2890 | 0.00050648 | 0.0025386 | -0.25621 | -0.25302 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8748 | 0.00038141 | 0.0025656 | -0.27301 | -0.37519 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 53393 | 0.00045212 | 0.0027813 | -0.19744 | -0.71422 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 163107 | 3.8714e-05 | 0.0028868 | -0.063665 | -0.88418 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 162199 |-2.7096e-05 | 0.0028538 | -0.053926 | -0.84783 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106358 |-5.2043e-05 | 0.0027781 | -0.01532 | -0.74008 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 80358 | 6.8413e-05 | 0.0018003 | -0.046981 | -0.79628 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 80358 | 6.8413e-05 | 0.0018003 | -0.046981 | -0.79628 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 68454 | 5.0932e-05 | 0.0018278 | -0.019854 | -0.85802 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11904 | 0.00014928 | 0.0016646 | -0.1829 | -0.43034 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1871 | 0.00017455 | 0.0016721 | -0.14944 | -0.50968 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5818 | 3.6546e-07 | 0.0018213 | -0.0097107 | -0.87435 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4261 | 8.6529e-05 | 0.0018037 | -0.07086 | -0.84941 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2450 | 0.00015255 | 0.0018221 | -0.15198 | -0.82661 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3720 | 4.1646e-05 | 0.0017372 | 0.022534 | -0.63331 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6508 |-0.00011716 | 0.0018203 | 0.091575 | -0.77222 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6734 | 3.8225e-06 | 0.0017941 | -0.022519 | -0.8133 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7839 | 0.00010536 | 0.0018691 | -0.043745 | -0.93299 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7421 | 0.00012371 | 0.0018707 | -0.064342 | -0.93545 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8051 | 0.00014594 | 0.0018425 | -0.019191 | -0.91108 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7342 | -5.891e-05 | 0.0018400 | 0.05726 | -0.88092 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6439 | 2.2248e-05 | 0.0018310 | -0.030976 | -0.84852 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 653 | 9.1658e-05 | 0.0014172 | -0.30753 | 0.29511 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1024 | 0.00019573 | 0.0017934 | -0.24986 | -0.75397 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 634 | 0.00048657 | 0.0016780 | -0.38018 | -0.27172 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 330 | 0.00015194 | 0.0018530 | -0.28804 | -0.78655 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 926 | 8.3276e-05 | 0.0014421 | -0.027054 | 0.075769 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1096 | 8.0444e-05 | 0.0015816 | -0.1186 | -0.36597 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1159 | 0.00012684 | 0.0016966 | -0.18399 | -0.45914 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1096 | 0.00020329 | 0.0016319 | -0.13956 | -0.41791 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1037 | 7.9296e-05 | 0.0016803 | -0.057904 | -0.43497 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1238 | 4.3485e-05 | 0.0017256 | -0.1779 | -0.64619 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1382 | 0.00017268 | 0.0016745 | -0.23235 | -0.34281 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1329 | 0.00020182 | 0.0017529 | -0.21631 | -0.58049 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2524 | 0.00015026 | 0.0016021 | -0.17265 | -0.31472 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6842 | 3.5553e-05 | 0.0018178 | -0.052554 | -0.86535 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4895 | 0.00015006 | 0.0017903 | -0.12188 | -0.79435 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2780 | 0.00015247 | 0.0018262 | -0.17055 | -0.82076 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4646 | 5.1882e-05 | 0.0016696 | 0.010189 | -0.48732 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7604 |-7.8158e-05 | 0.0017775 | 0.049005 | -0.71027 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7893 | 2.7128e-05 | 0.0017767 | -0.052553 | -0.75853 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8935 | 0.00012017 | 0.0018355 | -0.059087 | -0.86931 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8458 | 0.00011755 | 0.0018456 | -0.062069 | -0.87828 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9289 | 0.00013092 | 0.0018262 | -0.036199 | -0.87188 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8724 |-1.6354e-05 | 0.0018129 | 0.0052463 | -0.81496 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7768 | 5.8712e-05 | 0.0018168 | -0.06869 | -0.80705 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2114 | 0.00014571 | 0.0018705 | -0.067549 | -0.99266 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2114 | 0.00014571 | 0.0018705 | -0.067549 | -0.99266 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1645 | 9.5693e-05 | 0.0018991 | -0.018875 | -1.039 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 469 | 0.00034 | 0.0017416 | -0.25175 | -0.71887 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33 | -0.0007875 | 0.0019111 | 0.38617 | -0.88389 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 107 | 0.00011025 | 0.0017333 | 0.032011 | -0.60902 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26 | 0.00069125 | 0.0017475 | -0.41188 | -0.62618 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18 | 6.3e-05 | 0.0010922 | 0.24432 | -0.55173 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14 | -0.001645 | 0.0018108 | 0.52945 | -1.3619 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37 | 0.00035 | 0.0013534 | 0.039205 | -0.21503 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33 | 0.00052889 | 0.0020143 | -0.3732 | -0.69176 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 105 | 0.00074038 | 0.0017303 | -0.24062 | -0.9301 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 314 | 0.00028 | 0.0019218 | -0.12767 | -1.1199 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 422 |-0.00023625 | 0.0018248 | 0.22988 | -1.0052 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 328 | 0.000145 | 0.0020297 | -0.13755 | -1.1081 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 208 |-0.00014576 | 0.0019159 | 0.19815 | -1.0727 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 36 | 0.0004095 | 0.0015928 | 0.1421 | -0.5401 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10 | 0.00147 | 0.0011090 | -0.066483 | -1.3541 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6 | -0.00091 | 0.0012950 |-1.6464e-17 | -2 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15 | 0.00035875 | 0.0017946 | -0.042134 | -0.49318 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8 | 0.00085167 | 0.0013212 | 0.20911 | -1.5 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 36 | 0.0010228 | 0.0013357 | -1.1134 | 1.2627 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 92 | 9.8488e-05 | 0.0018721 | 0.13855 | -0.98576 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 110 | 7.7e-05 | 0.0018508 | -0.17981 | -1.0084 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 89 | 0.00054056 | 0.0015810 | -0.61621 | -0.14624 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 66 |-8.9444e-05 | 0.0017474 | -0.22849 | -0.74854 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34 | -0.0007875 | 0.0019111 | 0.38617 | -0.88389 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 143 | 0.00021 | 0.0016936 | 0.043486 | -0.55768 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 36 | 0.0010806 | 0.0015144 | -0.63618 | 0.027804 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18 | 6.3e-05 | 0.0010922 | 0.24432 | -0.55173 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20 | -0.001435 | 0.0017122 | 0.31067 | -1.4951 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52 | 0.00035219 | 0.0014761 | 0.0058625 | -0.1553 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41 | 0.000575 | 0.0019339 | -0.38945 | -0.57327 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 141 | 0.000813 | 0.0016426 | -0.40659 | -0.64267 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 406 | 0.000245 | 0.0019137 | -0.077159 | -1.1078 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 532 |-0.00018003 | 0.0018334 | 0.15538 | -1.0379 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 417 | 0.00021815 | 0.0019605 | -0.22184 | -0.99915 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 274 |-0.00013531 | 0.0018859 | 0.13313 | -1.0264 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 82472 | 7.0269e-05 | 0.0018020 | -0.047292 | -0.80145 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 82472 | 7.0269e-05 | 0.0018020 | -0.047292 | -0.80145 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 70099 | 5.1973e-05 | 0.0018295 | -0.019696 | -0.86257 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 12373 | 0.00015454 | 0.0016671 | -0.18408 | -0.43999 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 82472 | 3.4149 | 1.8371 | -0.26627 | -1.1583 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 82472 | 0.025237 | 0.0053922 | -0.67293 | -0.42286 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142342 | 0.00014141 | 0.0029347 | -0.064209 | -0.97121 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142342 | 0.00014141 | 0.0029347 | -0.064209 | -0.97121 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142342 | 0.00014141 | 0.0029347 | -0.064209 | -0.97121 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5551 |-4.1235e-05 | 0.0027502 | -0.0092116 | -0.77949 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 409 | 0.0011371 | 0.0025600 | -0.18101 | -0.77059 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5050 | 0.00027735 | 0.0028090 | -0.04559 | -0.80544 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 42480 | 0.00035742 | 0.0029797 | -0.11683 | -0.99657 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 61338 |-4.9921e-05 | 0.0029524 | -0.013971 | -1.0099 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27513 | 0.00014863 | 0.0028539 | -0.10163 | -0.89927 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5551 |-4.1235e-05 | 0.0027502 | -0.0092116 | -0.77949 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 409 | 0.0011371 | 0.0025600 | -0.18101 | -0.77059 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5050 | 0.00027735 | 0.0028090 | -0.04559 | -0.80544 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 42480 | 0.00035742 | 0.0029797 | -0.11683 | -0.99657 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 61338 |-4.9921e-05 | 0.0029524 | -0.013971 | -1.0099 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27513 | 0.00014863 | 0.0028539 | -0.10163 | -0.89927 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1042713 | 7.1045e-05 | 0.0029295 | -0.044532 | -0.93349 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1042713 | 7.1045e-05 | 0.0029295 | -0.044532 | -0.93349 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1042713 | 7.1045e-05 | 0.0029295 | -0.044532 | -0.93349 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1042713 | 3.045 | 1.7188 | 0.12166 | -1.0188 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1042713 | 0.040694 | 0.011113 | -0.64523 | -0.45994 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 900371 | 5.9491e-05 | 0.0029285 | -0.041341 | -0.92709 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 900371 | 5.9491e-05 | 0.0029285 | -0.041341 | -0.92709 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 900371 | 5.9491e-05 | 0.0029285 | -0.041341 | -0.92709 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21 | 0.00050147 | 0.0030695 | -0.31163 | -1.0683 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 91 | 0.00099344 | 0.0025568 | -0.58085 | -0.088035 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 39615 | 0.00028103 | 0.0027576 | -0.074519 | -0.73927 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 427 | 0.00058289 | 0.0022652 | -0.24808 | 0.16314 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1346 | 9.9547e-05 | 0.0024322 | -0.24839 | -0.39777 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3590 | 0.00027137 | 0.0025350 | -0.18567 | -0.415 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8853 | 0.00048305 | 0.0026498 | -0.2197 | -0.52999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88945 | 0.00047862 | 0.0028900 | -0.18043 | -0.84761 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 280191 |-1.4844e-06 | 0.0029716 | -0.017156 | -0.97745 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 280093 |-8.5752e-05 | 0.0029617 | -0.0059213 | -0.97341 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 197199 |-3.1057e-05 | 0.0029031 | 0.0020233 | -0.89809 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21 | 0.00050147 | 0.0030695 | -0.31163 | -1.0683 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 91 | 0.00099344 | 0.0025568 | -0.58085 | -0.088035 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 39615 | 0.00028103 | 0.0027576 | -0.074519 | -0.73927 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 427 | 0.00058289 | 0.0022652 | -0.24808 | 0.16314 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1346 | 9.9547e-05 | 0.0024322 | -0.24839 | -0.39777 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3590 | 0.00027137 | 0.0025350 | -0.18567 | -0.415 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8853 | 0.00048305 | 0.0026498 | -0.2197 | -0.52999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88945 | 0.00047862 | 0.0028900 | -0.18043 | -0.84761 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 280191 |-1.4844e-06 | 0.0029716 | -0.017156 | -0.97745 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 280093 |-8.5752e-05 | 0.0029617 | -0.0059213 | -0.97341 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 197199 |-3.1057e-05 | 0.0029031 | 0.0020233 | -0.89809 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 166875 | 7.627e-05 | 0.0018819 | -0.053162 | -0.95137 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 166875 | 7.627e-05 | 0.0018819 | -0.053162 | -0.95137 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 145919 | 6.7694e-05 | 0.0019023 | -0.040919 | -0.98749 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20956 | 0.00012674 | 0.0017560 | -0.12943 | -0.70383 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4932 | 9.642e-05 | 0.0017262 | -0.066314 | -0.64809 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10627 | 7.2558e-05 | 0.0018784 | -0.062007 | -0.96957 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6701 | 3.3832e-05 | 0.0018846 | -0.071499 | -0.93665 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3616 | 0.00014245 | 0.0018466 | -0.10182 | -0.91382 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8456 | 2.58e-05 | 0.0018372 | -0.027441 | -0.82486 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14551 |-4.7604e-05 | 0.0018765 | 0.02005 | -0.948 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15929 | 3.9463e-05 | 0.0018995 | -0.030047 | -0.97882 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17841 | 0.0001166 | 0.0019349 | -0.076062 | -1.0268 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16953 | 0.00010957 | 0.0019442 | -0.032997 | -1.0682 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18028 | 0.00010932 | 0.0019335 | -0.056354 | -1.0405 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15510 | 3.3268e-05 | 0.0019214 | -0.007015 | -1.0257 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12775 | 7.4268e-05 | 0.0018998 | -0.051075 | -0.9941 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1404 | 0.00017105 | 0.0015922 | -0.20314 | -0.30869 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1527 | 0.00022754 | 0.0017865 | -0.1931 | -0.81543 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 834 | 0.00024142 | 0.0018428 | -0.19007 | -0.79437 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 378 | 0.00060337 | 0.0017962 | -0.38723 | -0.57241 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1917 | 0.00010478 | 0.0016493 | -0.14452 | -0.48585 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2145 | 9.625e-05 | 0.0017172 | -0.096568 | -0.55225 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2183 | 0.00015754 | 0.0017720 | -0.019835 | -0.72882 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2035 | 7.3487e-05 | 0.0017781 | -0.03764 | -0.79193 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1896 | 8.6475e-05 | 0.0017914 | -0.061646 | -0.81939 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2229 | -7.042e-06 | 0.0017780 | -0.097405 | -0.76234 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2309 | 8.472e-05 | 0.0018247 | -0.17783 | -0.85559 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2099 | 0.0001621 | 0.0017396 | -0.28816 | -0.65675 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6336 | 0.0001152 | 0.0016938 | -0.098843 | -0.57373 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12154 | 9.5635e-05 | 0.0018658 | -0.082092 | -0.95101 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7535 | 6.1323e-05 | 0.0018804 | -0.087697 | -0.92188 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3994 | 0.0001952 | 0.0018468 | -0.1338 | -0.89391 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10373 | 4.4085e-05 | 0.0017958 | -0.053264 | -0.75527 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16696 |-2.4118e-05 | 0.0018522 |-0.00038709 | -0.8956 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18112 | 5.7779e-05 | 0.0018808 | -0.031971 | -0.94242 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19876 | 0.00011138 | 0.0019166 | -0.071282 | -1.0008 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18849 | 0.00010683 | 0.0019267 | -0.035182 | -1.0412 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20257 | 9.6265e-05 | 0.0019170 | -0.057221 | -1.0116 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17819 | 4.0397e-05 | 0.0019084 | -0.028663 | -1.0054 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14874 | 8.7094e-05 | 0.0018775 | -0.081545 | -0.95471 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2041 | 0.00013768 | 0.0019421 | -0.082508 | -1.0562 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2041 | 0.00013768 | 0.0019421 | -0.082508 | -1.0562 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1637 | 0.00012855 | 0.0019689 | -0.073055 | -1.0955 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 404 | 0.00017392 | 0.0018315 | -0.11938 | -0.884 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 187 |-5.2907e-05 | 0.0018723 | 0.099389 | -0.94122 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83 |-0.00029478 | 0.0018545 | -0.071637 | -0.94048 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53 |-0.00045208 | 0.0014866 | 0.067299 | -0.70121 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27 | 0.0016683 | 0.0013426 | -0.55411 | -0.554 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 224 | 0.00030533 | 0.0019012 | -0.17127 | -1.1831 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 391 | 0.00010538 | 0.0021058 | -0.071508 | -1.2827 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 405 | 0.00013451 | 0.0019714 | -0.10031 | -0.99929 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 267 | 0.00015077 | 0.0019457 | -0.010575 | -1.0737 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 46 | 0.00028 | 0.0019666 | -0.28192 | -0.93433 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10 | 0.000285 | 0.0020572 | 0.22396 | -1.3027 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5 | -0.000483 | 0.0014178 | 0.92514 | -0.29923 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19 | 0.0010532 | 0.0012290 | -0.33492 | -1.2203 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119 | 0.00035152 | 0.0018660 | -0.17578 | -0.88349 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 108 | -0.0002911 | 0.0017940 | -0.096463 | -0.98052 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52 | 3.8889e-05 | 0.0015641 | -0.2092 | -0.52068 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 45 | 0.00011433 | 0.0017788 | 0.30233 | -1.0547 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 233 | 2.886e-05 | 0.0019013 | 0.005227 | -0.97588 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 93 |-0.00021673 | 0.0018934 | 0.0065353 | -0.91477 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 58 |-0.00045741 | 0.0014750 | 0.19949 | -0.64822 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 46 | 0.001435 | 0.0013345 | -0.40162 | -0.81393 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 343 | 0.00032193 | 0.0018887 | -0.17345 | -1.0795 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 499 | 3.3451e-05 | 0.0020584 | -0.050305 | -1.2234 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 457 | 0.00012603 | 0.0019389 | -0.10125 | -0.95751 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 312 | 0.00014618 | 0.0019255 | 0.021556 | -1.068 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 168916 | 7.7087e-05 | 0.0018827 | -0.053507 | -0.95287 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 168916 | 7.7087e-05 | 0.0018827 | -0.053507 | -0.95287 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 147556 | 6.8452e-05 | 0.0019031 | -0.041278 | -0.98894 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 21360 | 0.00012761 | 0.0017574 | -0.12909 | -0.7074 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 168916 | 3.4501 | 1.8630 | -0.30323 | -1.1725 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 168916 | 0.025028 | 0.0054729 | -0.59115 | -0.53418 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 548 | 35.291 | 22.621 | 0.17146 | -1.0439 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7804 | 50.507 | 18.722 | -0.24047 | -1.1215 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3073 | 36.645 | 23.094 | 0.1071 | -1.1544 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 114 | 22.007 | 14.881 | 0.22948 | -0.8891 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 2187 | 56.926 | 3.9072 | 0.2112 | -0.67648 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2176 | 36.212 | 10.316 | 0.15472 | -0.98819 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2187 | 55.979 | 3.8334 | 0.14505 | -0.62246 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2187 | 55.279 | 3.8211 | 0.1044 | -0.53198 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 755 | 24.042 | 15.219 | 0.21373 | -1.0141 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 900 | 34.017 | 22.414 | 0.18507 | -1.0978 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11543 | 50.935 | 18.808 | -0.25689 | -1.1249 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 4735 | 37.568 | 23.252 | 0.039298 | -1.1688 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 179 | 18.813 | 13.512 | 0.60731 | -0.6725 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 3439 | 56.462 | 3.7559 | 0.29989 | -0.60695 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3428 | 36.233 | 10.043 | 0.11317 | -1.0105 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3439 | 55.535 | 3.6797 | 0.21266 | -0.59545 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3439 | 54.844 | 3.6629 | 0.13535 | -0.57373 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1236 | 23.396 | 14.872 | 0.18768 | -1.0471 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 586 | 237.27 | 164.51 | 0.23721 | -1.0426 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 7804 | 601.7 | 8.0203 | 1.8575 | 6.3651 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7804 | 370.37 | 136.88 | -0.22629 | -1.0863 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7804 | 590.93 | 9.9935 | 0.74985 | 2.0033 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7804 | 583.1 | 13.282 | 0.21899 | 0.2353 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3229 | 256.15 | 170.80 | 0.16194 | -1.1403 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 122 | 132.39 | 95.341 | 0.28247 | -0.9436 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 2232 | 359.47 | 26.283 | 0.41174 | -0.15323 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2232 | 229.48 | 64.259 | 0.17154 | -0.96139 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2232 | 353.64 | 25.655 | 0.3616 | -0.092534 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2232 | 349.08 | 25.494 | 0.31444 | -0.075588 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 837 | 140.96 | 99.455 | 0.27001 | -1.0485 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 953 | 229.52 | 160.68 | 0.25435 | -1.0616 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 11543 | 600.97 | 7.1338 | 2.1342 | 9.7021 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11543 | 374.51 | 137.40 | -0.25972 | -1.0907 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 11543 | 590.49 | 9.3225 | 0.63261 | 2.2891 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 11543 | 582.78 | 12.771 | 0.070126 | 0.02149 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 4921 | 263.96 | 169.88 | 0.085625 | -1.1619 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 193 | 112.06 | 86.536 | 0.64642 | -0.62396 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 3500 | 356.45 | 25.227 | 0.50346 | 0.0044074 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3500 | 229.23 | 62.675 | 0.12336 | -1.0028 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3500 | 350.61 | 24.521 | 0.41511 | -0.036638 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3500 | 346.35 | 24.422 | 0.33853 | -0.074381 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1338 | 139.29 | 96.536 | 0.23149 | -1.0764 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 3334 | 1068.7 | 18.709 | 1.361 | 2.7636 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2053 | 1961.6 | 137.09 | 0.30133 | -0.16253 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 3933 | 1065.8 | 17.894 | 1.7651 | 4.571 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 3209 | 1943.4 | 131.93 | 0.34533 | -0.19043 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 548 | 24.616 | 16.041 | 0.25294 | -0.94758 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 7804 | 59.112 | 3.5114 | -0.19686 | 0.59035 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7804 | 36.073 | 13.980 | -0.15852 | -1.0428 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7804 | 58.06 | 3.4853 | -0.15605 | 0.48197 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7804 | 57.268 | 3.5416 | -0.11941 | 0.32095 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3073 | 25.955 | 16.631 | 0.17998 | -1.0684 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 114 | 15.179 | 10.287 | 0.2008 | -1.0309 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 2187 | 35.231 | 7.5488 | -0.88305 | 0.27827 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2176 | 23.419 | 8.2170 | 0.09464 | -0.83045 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2187 | 34.646 | 7.4815 | -0.87877 | 0.24033 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2187 | 34.209 | 7.4322 | -0.88 | 0.22729 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 755 | 16.321 | 10.495 | 0.23234 | -1.0318 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 900 | 23.515 | 15.642 | 0.24802 | -0.99353 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 11543 | 59.065 | 3.6028 | -0.46328 | 1.9046 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11543 | 36.473 | 14.014 | -0.18645 | -1.0551 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 11543 | 58.032 | 3.5871 | -0.43241 | 1.7166 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 11543 | 57.262 | 3.6454 | -0.38556 | 1.4907 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 4735 | 26.484 | 16.618 | 0.11435 | -1.0817 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 179 | 12.909 | 9.4660 | 0.62816 | -0.62926 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 3439 | 35.014 | 7.4773 | -0.80981 | 0.0080729 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3428 | 23.408 | 8.1520 | 0.075501 | -0.83674 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3439 | 34.449 | 7.4076 | -0.81855 | -0.0092705 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3439 | 34.036 | 7.3648 | -0.81909 | -0.021639 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1236 | 15.97 | 10.312 | 0.22386 | -1.008 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 33344 | -0.0073057 | 0.21933 | 0.0056835 | -0.87251 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 686752 | -0.0024385 | 0.33038 | -1.1092 | 37.025 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 569816 | -0.0030101 | 0.25198 | -0.09161 | 0.20555 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 686752 | -0.0024385 | 0.33038 | -1.1092 | 37.025 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 686752 | -0.0024385 | 0.33038 | -1.1092 | 37.025 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 191472 | -0.0052143 | 0.22863 | -0.042161 | -0.33911 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6320 | -0.0028481 | 5.9624 | 1.0328 | 1.5044 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 195480 | -0.1189 | 7.0756 | 0.42421 | 1.1546 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 164152 | 0.0087486 | 6.3273 | 0.87401 | 1.0997 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 195480 | -0.1189 | 7.0756 | 0.42421 | 1.1546 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 195480 | -0.1189 | 7.0756 | 0.42421 | 1.1546 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 44808 | 0.0067379 | 5.9590 | 0.91652 | 1.7451 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 54120 | -0.0044124 | 0.21139 | 0.02742 | -1.1881 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1015784 | -0.0030946 | 0.36901 | -2.4731 | 208.43 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 849552 | -0.0028658 | 0.25943 | -3.0779 | 172.2 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1015784 | -0.0030946 | 0.36901 | -2.4731 | 208.43 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1015784 | -0.0030946 | 0.36901 | -2.4731 | 208.43 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 299432 | -0.0044551 | 0.22318 | 0.003715 | -0.51202 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 9312 | 0.0044029 | 5.8153 | 0.95003 | 1.7443 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 306872 | -0.10052 | 7.0723 | 0.48753 | 0.89173 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 259680 | -0.0056559 | 6.3515 | 0.81804 | 0.89036 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 306872 | -0.10052 | 7.0723 | 0.48753 | 0.89173 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 306872 | -0.10052 | 7.0723 | 0.48753 | 0.89173 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 72184 | 0.0020642 | 6.1285 | 0.88269 | 1.2578 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 9567352 | 0.083547 | 0.073455 | 1.5862 | 3.3686 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6978594 | 0.045101 | 0.031578 | 1.7507 | 4.7817 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 17487413 | 0.11414 | 0.093428 | 1.1033 | 0.91177 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 13576965 | 0.065367 | 0.040079 | 1.2315 | 2.0782 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 7426220 | 1.2883 | 0.90366 | 8.3293 | 171.51 | - | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 6280912 | 1.1111 | 0.40557 | 5.5724 | 62.58 | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 12744094 | 1.3722 | 1.1553 | 7.8156 | 116.78 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 11745702 | 1.1559 | 0.49974 | 4.9051 | 42.618 | RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4473902 | -12.342 | 228.91 | 0.0029447 | 0.22118 | - | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4473902 | -1352.8 | 63.213 | -0.92988 | 0.6274 | - | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 565.58 | 288.30 | 0.12082 | 0.30719 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 4962 | 1930.8 | 1395.8 | 2.4242 | 19.606 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | - | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 9567352 | 0.22352 | 227.95 | -0.031873 | 0.25312 | - | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 9567352 | 11.064 | 245.45 | -0.073556 | -0.75814 | - | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5093450 | 11.308 | 227.28 | -0.062223 | 0.29654 | - | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5093450 | 1351.5 | 63.767 | 0.91126 | 0.58378 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3584882 | 3904.9 | 83.852 | -0.12133 | -0.92708 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3584882 | 11.82 | 261.62 | 0.011024 | 0.22505 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3393712 | -3902.8 | 81.878 | 0.13105 | -0.84486 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3393712 | 10.979 | 268.23 | 0.0084283 | 0.11564 | - | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 605.62 | 260.17 | -0.67622 | -0.16518 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 4991 | 1400.6 | 879.48 | 0.70532 | 0.49979 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1967850 | 2.3368 | 1.7107 | 1.8909 | 4.9851 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1060230 | 2.2448 | 1.7429 | 2.2778 | 7.8681 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3028080 | 2.3046 | 1.7226 | 2.0282 | 6.0145 | - | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6978594 | 9.4145 | 461.48 | -0.034807 | -1.527 | - | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6978594 | 11.303 | 264.62 | 0.010869 | 0.16502 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 8441008 | -11.865 | 232.28 | -0.002945 | 0.1683 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 8441008 | -1354.6 | 64.629 | -0.90026 | 0.49746 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 4967 | 864.2 | 278.05 | -0.66943 | 0.83891 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 4967 | 3521.7 | 1772.8 | 0.84089 | 4.1595 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 4292502 | 4.0739 | 4.4867 | 2.431 | 7.4424 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 4292502 | 4.0739 | 4.4867 | 2.431 | 7.4424 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 17487413 | -1.3447 | 230.57 | -0.033396 | 0.20561 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 17487413 | 4.2096 | 249.42 | -0.035819 | -0.76563 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 9046405 | 8.5077 | 229.28 | -0.060749 | 0.25326 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 9046405 | 1352.7 | 65.169 | 0.89177 | 0.47743 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 6977253 | 3904.7 | 84.185 | -0.1207 | -0.93279 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 6977253 | 11.186 | 262.07 | 0.011018 | 0.23389 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 6599712 | -3902.6 | 81.960 | 0.12971 | -0.84898 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 6599712 | 11.834 | 268.02 | 0.0074412 | 0.1424 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 4967 | 866.58 | 210.49 | -1.9608 | 4.6431 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 4967 | 2733.9 | 1253.7 | 0.20397 | -0.1695 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 2809151 | 3.2064 | 2.3697 | 1.557 | 3.158 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1495156 | 3.0563 | 2.3065 | 1.7983 | 4.6462 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 4304307 | 3.1543 | 2.3491 | 1.6369 | 3.6305 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 13576965 | 9.5372 | 461.28 | -0.034265 | -1.5245 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 13576965 | 11.391 | 264.75 | 0.010668 | 0.18304 | RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2612324 | 0.051734 | 0.00051243 | -0.2752 | -1.0898 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2612324 | 0.052219 | 0.0064890 | 0.013113 | -0.89578 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2612324 | 0.00010393 | 0.0028578 | -0.073339 | -0.85107 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1874791 | 9.312e-05 | 0.0028557 | -0.071761 | -0.84027 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 69228 | 0.00015702 | 0.0028531 | -0.094062 | -0.82219 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 376121 | 0.00012692 | 0.0028629 | -0.066124 | -0.89296 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 292184 | 0.00013003 | 0.0028657 | -0.088834 | -0.8703 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 271066 | 0.029188 | 0.00023222 | -0.0076884 | -1.1651 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 271066 | 0.028147 | 0.0040130 | -0.24597 | -0.91575 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 271066 | 7.2543e-05 | 0.0018112 | -0.052974 | -0.82066 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 189621 | 7.6213e-05 | 0.0018075 | -0.052537 | -0.81276 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 10660 | 7.6906e-05 | 0.0018180 | -0.063208 | -0.85025 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 53532 | 5.0859e-05 | 0.0018214 | -0.047989 | -0.83607 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 17253 | 9.4542e-05 | 0.0018164 | -0.065548 | -0.84313 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 5580674 | 0.051896 | 0.00051315 | -0.29662 | -1.0983 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 5580674 | 0.052286 | 0.0066444 | -0.0026688 | -0.98757 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 5580674 | 7.4429e-05 | 0.0029634 | -0.043318 | -0.97578 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 4129044 | 6.7981e-05 | 0.0029615 | -0.04211 | -0.96819 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 70307 | 0.00012215 | 0.0029579 | -0.056079 | -0.96541 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 931263 | 9.8414e-05 | 0.0029619 | -0.046998 | -0.99579 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 450060 | 7.4709e-05 | 0.0029843 | -0.04453 | -1.0045 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 666399 | 0.029277 | 0.00023001 | -0.068967 | -1.1471 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 666399 | 0.028137 | 0.0041247 | -0.21815 | -1.0177 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 666399 | 9.2164e-05 | 0.0018880 | -0.058516 | -0.96459 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 490392 | 9.0785e-05 | 0.0018813 | -0.054414 | -0.95333 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 13360 | 0.00011472 | 0.0019046 | -0.072572 | -1.0271 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 140327 | 9.2861e-05 | 0.0019108 | -0.07233 | -0.99629 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 22320 | 0.00010468 | 0.0018879 | -0.054438 | -0.98054 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 7804 | 972 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 7804 | 2049.8 | 13.691 | 0.67165 | 1.8743 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 7804 | 1083.4 | 15.491 | 1.5755 | 4.7129 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 2232 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 2232 | 11459 | 134.83 | 0.28515 | -0.42866 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 2232 | 1969.2 | 143.80 | 0.42121 | -0.13826 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 11543 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 11543 | 2049.1 | 12.236 | 0.50408 | 2.3973 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 11543 | 1082.1 | 13.913 | 1.6411 | 5.9674 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 3500 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 3500 | 11443 | 129.28 | 0.3651 | -0.36694 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 3500 | 1952.4 | 137.70 | 0.50913 | 0.0017189 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.5608 | 1.6596 | 1.4176 | 2.6144 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.5628 | 1.6605 | 1.4148 | 2.6005 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 4967 | 2.3239 | 1.8317 | 1.0566 | 1.6167 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 4967 | 2.3282 | 1.8347 | 1.0549 | 1.6022 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 524 | 57833 | 15992. | 0.92796 | 0.017163 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 7780 | 18738 | 10583. | 2.9577 | 12.296 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7780 | 21740 | 12089. | 2.5115 | 8.5715 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7780 | 18823 | 10640. | 2.9396 | 12.132 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7780 | 18888 | 10684. | 2.926 | 12.01 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3049 | 34012 | 14881. | 1.7962 | 3.6017 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 90 | 83364 | 10626. | -0.078373 | -1.0728 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 2163 | 30933 | 12964. | 2.2848 | 6.2583 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2152 | 34022 | 14548. | 1.887 | 3.9694 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2163 | 31022 | 13023. | 2.2703 | 6.1647 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2163 | 31091 | 13067. | 2.2593 | 6.0944 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 731 | 52576 | 16277. | 1.0754 | 0.50147 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 871 | 56744 | 14403. | 0.79676 | -0.019377 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 11514 | 19098 | 10747. | 2.6773 | 9.6765 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11514 | 22162 | 12145. | 2.2575 | 6.6313 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11514 | 19186 | 10802. | 2.6603 | 9.5415 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11514 | 19254 | 10843. | 2.6474 | 9.4404 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4706 | 34155 | 14339. | 1.6138 | 2.6993 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 150 | 78829 | 9939.6 | 0.4329 | -0.89662 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 3410 | 31147 | 12609. | 2.0694 | 4.89 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3399 | 34117 | 14001. | 1.6968 | 3.0007 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3410 | 31234 | 12662. | 2.0558 | 4.8124 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3410 | 31301 | 12702. | 2.0455 | 4.7541 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1207 | 51735 | 14858. | 0.93543 | 0.29752 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 562 | 57512 | 16019. | 0.93562 | 0.045273 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 7780 | 18738 | 10583. | 2.9577 | 12.296 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7780 | 21669 | 12065. | 2.5182 | 8.6242 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7780 | 18822 | 10639. | 2.9399 | 12.135 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7780 | 18886 | 10682. | 2.9265 | 12.014 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3205 | 33795 | 14849. | 1.8055 | 3.6546 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 98 | 82920 | 10847. | -0.067387 | -1.0827 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 2208 | 30843 | 12881. | 2.2965 | 6.3495 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2208 | 33829 | 14433. | 1.9059 | 4.0821 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2208 | 30932 | 12940. | 2.2821 | 6.2559 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2208 | 30999 | 12984. | 2.2712 | 6.1855 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 813 | 52177 | 16225. | 1.0943 | 0.57019 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 924 | 56431 | 14449. | 0.80248 | -0.005367 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 11514 | 19098 | 10747. | 2.6773 | 9.6765 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11514 | 22090 | 12123. | 2.2638 | 6.6738 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11514 | 19185 | 10801. | 2.6605 | 9.5435 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11514 | 19251 | 10842. | 2.6479 | 9.4438 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4892 | 33948 | 14318. | 1.622 | 2.7411 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 164 | 78550 | 10021. | 0.43491 | -0.8732 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 3471 | 31024 | 12535. | 2.087 | 4.9965 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3471 | 33915 | 13913. | 1.7186 | 3.1043 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3471 | 31110 | 12588. | 2.0735 | 4.9182 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3471 | 31176 | 12628. | 2.0632 | 4.8594 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1309 | 51421 | 14860. | 0.94926 | 0.33155 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 524 | 57895 | 16022. | 0.91858 | -0.0099133 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 7780 | 18729 | 10573. | 2.9574 | 12.299 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7780 | 21733 | 12074. | 2.5125 | 8.5844 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7780 | 18814 | 10631. | 2.9393 | 12.136 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7780 | 18880 | 10674. | 2.9257 | 12.013 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3049 | 33998 | 14852. | 1.7997 | 3.6296 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 90 | 83296 | 10546. | -0.065523 | -1.0505 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 2163 | 31497 | 13336. | 2.1881 | 5.6664 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2152 | 34349 | 14740. | 1.8466 | 3.7616 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2163 | 31590 | 13394. | 2.1743 | 5.5814 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2163 | 31662 | 13438. | 2.1638 | 5.5175 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 731 | 52550 | 16254. | 1.0845 | 0.52449 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 871 | 56734 | 14424. | 0.79546 | -0.024179 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 11514 | 19102 | 10754. | 2.6771 | 9.6739 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11514 | 22168 | 12154. | 2.2579 | 6.6305 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11514 | 19190 | 10809. | 2.6601 | 9.5389 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11514 | 19258 | 10850. | 2.6472 | 9.4378 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4706 | 34164 | 14348. | 1.6146 | 2.7001 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 150 | 78892 | 9911.8 | 0.42224 | -0.91265 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 3410 | 31755 | 12976. | 1.9697 | 4.3386 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3399 | 34524 | 14209. | 1.6462 | 2.7669 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3410 | 31846 | 13028. | 1.9568 | 4.2687 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3410 | 31915 | 13067. | 1.947 | 4.2162 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1207 | 51764 | 14834. | 0.93446 | 0.3046 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 33344 |-2.8374e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 686752 |-9.6496e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 569816 | 1.2881e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 686752 |-9.6496e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 686752 |-9.6496e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 191472 | 7.7163e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 34928 | 1.0879 | 0.91092 | 0.32666 | -0.5634 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 34512 | 0.049114 | 0.0067469 | -2.5554 | 6.3127 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6320 | 1.1432e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 195480 |-1.0019e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 164152 |-3.9522e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 195480 |-1.0019e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 195480 |-1.0019e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 44808 | 3.1964e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 9816 | 1.1533 | 0.96761 | 0.39003 | -0.51093 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 9409 | 0.027812 | 0.0033931 | -2.2481 | 4.4499 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 54120 | -3.26e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1015784 | 3.2726e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 849552 | 9.5107e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1015784 | 3.2726e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1015784 | 3.2726e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 299432 | 9.9042e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 51951 | 1.0944 | 0.91649 | 0.33145 | -0.57066 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 51333 | 0.049236 | 0.0067036 | -2.5786 | 6.5003 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 9312 |-9.3349e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 306872 |-3.3432e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 259680 |-8.2421e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 306872 |-3.3432e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 306872 |-3.3432e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 72184 |-5.5097e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 15427 | 1.1535 | 0.96494 | 0.36944 | -0.56903 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 14831 | 0.027884 | 0.0033665 | -2.2653 | 4.577 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | - | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 38.776 | 246.21 | -0.066319 | -0.71607 | - | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | - | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 38.994 | 248.15 | -0.076921 | -0.82786 | - | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 42.606 | 460.89 | -0.039409 | -1.53 | - | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 41.591 | 212.98 | 0.01967 | 1.1456 | - | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 38.679 | 465.38 | -0.023696 | -1.5276 | - | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 39.694 | 307.08 | 0.02342 | -0.63472 | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12417500 | 24.724 | 231.87 | -0.030375 | 0.1822 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 11920800 | 31.811 | 251.55 | -0.030105 | -0.73974 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12417500 | 24.724 | 231.87 | -0.030375 | 0.1822 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12417500 | 31.862 | 253.29 | -0.037774 | -0.8454 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12417500 | 41.898 | 460.77 | -0.035023 | -1.5221 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12417500 | 41.963 | 226.16 | 0.020102 | 0.87851 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12417500 | 38.437 | 465.77 | -0.02166 | -1.5218 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12417500 | 40.155 | 321.61 | 0.021614 | -0.7874 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 7814 | 1.462 | 0.52146 | 0.34794 | -0.40436 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 7814 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 3004 | 0.23267 | 0.10007 | -0.15377 | -1.0065 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 7790 | 18718 | 10618. | 2.9332 | 12.144 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 7790 | 1380.9 | 912.01 | 2.6176 | 9.9433 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 11564 | 1.4625 | 0.53192 | 0.34545 | -0.47972 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 11564 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 3734 | 0.24222 | 0.097600 | -0.23137 | -0.94496 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 11535 | 19096 | 10776. | 2.6505 | 9.5177 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 11542 | 1327.3 | 839.90 | 2.6076 | 10.081 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref new file mode 100644 index 0000000000000000000000000000000000000000..d53e9697fb8776094feb31389121c06ae22b21d3 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref @@ -0,0 +1,609 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 5000 | 8512 | 1.7024 | + | "nTracksSelected" | 5000 | 8512 | 1.7024 | +DefaultGECFilter INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3150729 | 630.15 | 0.35291 | 630.00 | 631.00 | + | "event size statistics (KBytes)" | 5195 | 98426 | 18.946 | 5.7507 | 8.0000 | 55.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4661 | 134034 | 28.756 | + | "Created long tracks" | 4661 | 2763 | 0.59279 | + | "Empty input tracks" | 339 | + | "Input tracks" | 4661 | 137503 | 29.501 | + | "Number of candidate bins per track" | 134034 | 51740 | 0.38602 | 1.5473 | 0.0000 | 37.000 | + | "Number of complete candidates/track 1st Loop" | 20492 | 2356 | 0.11497 | 0.31990 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 19189 | 439 | 0.022878 | 0.14986 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 20492 | 7237 | 0.35316 | 0.62775 | + | "Number of x candidates per track 2nd Loop" | 19189 | 22337 | 1.1641 | 1.7826 | + | "Percentage second loop execution" | 20492 | 19189 | 0.93641 | + | "Removed duplicates" | 4661 | 25 | 0.0053637 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 1204428 | 684883 | 0.56864 | 0.53976 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 812049 | 466664 | 0.57467 | 0.53406 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 773435 | 439626 | 0.56841 | 0.53803 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 15000 | 150301 | 10.020 | 13.971 | 0.0000 | 359.00 | + | "Created XZ tracks (part 1)" | 15000 | 140718 | 9.3812 | 13.195 | 0.0000 | 225.00 | + | "Created XZ tracks in case 0" | 10000 | 103435 | 10.344 | 13.743 | 0.0000 | 322.00 | + | "Created XZ tracks in case 1" | 10000 | 102898 | 10.290 | 14.758 | 0.0000 | 359.00 | + | "Created XZ tracks in case 2" | 10000 | 84686 | 8.4686 | 12.056 | 0.0000 | 278.00 | + | "Created full hit combinations in case 0" | 166887 | 166887 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 116404 | 116404 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 117669 | 117669 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 10000 | 96224 | 9.6224 | 8.0550 | 0.0000 | 115.00 | + | "Created seed tracks (part 0)" | 5000 | 66433 | 13.287 | 11.053 | 0.0000 | 149.00 | + | "Created seed tracks (part 1)" | 5000 | 61954 | 12.391 | 10.436 | 0.0000 | 102.00 | + | "Created seed tracks in case 0" | 10000 | 50752 | 5.0752 | 4.2469 | 0.0000 | 58.000 | + | "Created seed tracks in case 1" | 10000 | 87172 | 8.7172 | 7.1316 | 0.0000 | 96.000 | + | "Created seed tracks in case 2" | 10000 | 115156 | 11.516 | 9.6067 | 0.0000 | 139.00 | + | "Created seed tracks in recovery step" | 5000 | 13231 | 2.6462 | 3.0117 | 0.0000 | 31.000 | + | "Created two-hit combinations in case 0" | 803728 | 6715381 | 8.3553 | 7.8188 | 0.0000 | 62.000 | + | "Created two-hit combinations in case 1" | 840309 | 4664031 | 5.5504 | 5.2645 | 0.0000 | 157.00 | + | "Created two-hit combinations in case 2" | 762710 | 4660010 | 6.1098 | 5.9493 | 0.0000 | 178.00 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 1119 | + | "chi2 cut" | 902 | + | "nIterations" | 2763 | 7550 | 2.7325 | + | "nOutlierIterations" | 1644 | 2556 | 1.5547 | + | "nTracksInput" | 5000 | 2763 | 0.55260 | + | "nTracksOutput" | 5000 | 742 | 0.14840 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 305 | + | "chi2 cut" | 1060 | + | "nIterations" | 8512 | 17716 | 2.0813 | + | "nOutlierIterations" | 8207 | 8354 | 1.0179 | + | "nTracksInput" | 5000 | 8512 | 1.7024 | + | "nTracksOutput" | 5000 | 7147 | 1.4294 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4632 | 51073.51 | 11.026 | + | "#MatchingMLP" | 13739 | 12552.16 | 0.91362 | + | "#MatchingTracks" | 4632 | 8512 | 1.8377 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 1587 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 815111 | -4068145 | -4.9909 | 1064.5 | -2656.3 | 2657.0 | + | "Average X in T1V" | 853884 |-1.062531e+07 | -12.444 | 1067.8 | -2657.0 | 2656.4 | + | "Average X in T1X1" | 803728 |-2.50315e+07 | -31.144 | 1089.1 | -2646.8 | 2646.7 | + | "Average X in T1X2" | 865781 |1.094691e+07 | 12.644 | 1059.8 | -2646.9 | 2647.0 | + | "Average X in T2U" | 806671 | -1836889 | -2.2771 | 1074.4 | -2655.5 | 2656.8 | + | "Average X in T2V" | 828409 |3.004511e+07 | 36.268 | 1060.0 | -2655.1 | 2656.4 | + | "Average X in T2X1" | 785966 |-3.483145e+07 | -44.317 | 1087.2 | -2645.8 | 2646.5 | + | "Average X in T2X2" | 837563 |2.974352e+07 | 35.512 | 1045.0 | -2645.3 | 2646.8 | + | "Average X in T3U" | 837044 |-1.622849e+07 | -19.388 | 1209.4 | -3187.5 | 3190.1 | + | "Average X in T3V" | 1022603 |4.52813e+07 | 44.280 | 1197.8 | -3189.3 | 3189.6 | + | "Average X in T3X1" | 881094 | 4533782 | 5.1456 | 1188.1 | -3176.5 | 3177.4 | + | "Average X in T3X2" | 917963 |-1.337318e+07 | -14.568 | 1206.7 | -3177.0 | 3178.4 | + | "Hits in T1U" | 20000 | 815111 | 40.756 | 27.493 | 0.0000 | 213.00 | + | "Hits in T1V" | 20000 | 853884 | 42.694 | 28.755 | 0.0000 | 209.00 | + | "Hits in T1X1" | 20000 | 803728 | 40.186 | 27.020 | 0.0000 | 292.00 | + | "Hits in T1X2" | 20000 | 865781 | 43.289 | 29.060 | 0.0000 | 196.00 | + | "Hits in T2U" | 20000 | 806671 | 40.334 | 26.608 | 0.0000 | 218.00 | + | "Hits in T2V" | 20000 | 828409 | 41.420 | 27.464 | 0.0000 | 195.00 | + | "Hits in T2X1" | 20000 | 785966 | 39.298 | 25.804 | 0.0000 | 195.00 | + | "Hits in T2X2" | 20000 | 837563 | 41.878 | 27.626 | 0.0000 | 191.00 | + | "Hits in T3U" | 20000 | 837044 | 41.852 | 27.147 | 0.0000 | 201.00 | + | "Hits in T3V" | 20000 | 1022603 | 51.130 | 30.550 | 0.0000 | 222.00 | + | "Hits in T3X1" | 20000 | 881094 | 44.055 | 27.328 | 0.0000 | 239.00 | + | "Hits in T3X2" | 20000 | 917963 | 45.898 | 29.682 | 0.0000 | 192.00 | + | "Total number of hits" | 5000 |1.025582e+07 | 2051.2 | 1256.4 | 18.000 | 8079.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 215 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 215 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 5000 | 2872172 | 574.43 | 884.55 | 0.0000 | 11418. | + | "# Rich1Gas Segments" | 5000 | 7775 | 1.5550 | 1.6573 | 0.0000 | 11.000 | + | "# Rich2Gas Photons" | 5000 | 273587 | 54.717 | 122.05 | 0.0000 | 1570.0 | + | "# Rich2Gas Segments" | 5000 | 2174 | 0.43480 | 0.76951 | 0.0000 | 7.0000 | + | "# Selected Tracks" | 5000 | 7775 | 1.5550 | 1.6573 | 0.0000 | 11.000 | + |*"RICH selection efficiency" | 7789 | 7775 |( 99.82026 +- 0.04799452)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 7055 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 7055 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 7055 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 734 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 734 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 734 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 1424476 | 284.90 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | + | "Nb of Produced Tracks" | 5000 | 188157 | 37.631 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 133 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 628304 | 0.00012643 | 0.0028686 | -0.074606 | -0.88393 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 628304 | 0.00012643 | 0.0028686 | -0.074606 | -0.88393 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 628304 | 0.00012643 | 0.0028686 | -0.074606 | -0.88393 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23713 | 0.00030788 | 0.0026954 | -0.21882 | -0.65622 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 87 | 3.8372e-06 | 0.0022492 | -0.24032 | 0.14198 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 533 | 0.0003982 | 0.0024013 | -0.27601 | -0.17054 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2897 | 0.00052192 | 0.0025882 | -0.19178 | -0.46561 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 36398 | 0.0004368 | 0.0027814 | -0.13609 | -0.73306 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 207294 | 0.00019392 | 0.0029049 | -0.047725 | -0.92021 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 234160 |-7.0392e-05 | 0.0029022 | -0.017004 | -0.944 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 123222 | 0.00014385 | 0.0028095 | -0.15697 | -0.81766 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23713 | 0.00030788 | 0.0026954 | -0.21882 | -0.65622 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 87 | 3.8372e-06 | 0.0022492 | -0.24032 | 0.14198 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 533 | 0.0003982 | 0.0024013 | -0.27601 | -0.17054 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2897 | 0.00052192 | 0.0025882 | -0.19178 | -0.46561 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 36398 | 0.0004368 | 0.0027814 | -0.13609 | -0.73306 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 207294 | 0.00019392 | 0.0029049 | -0.047725 | -0.92021 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 234160 |-7.0392e-05 | 0.0029022 | -0.017004 | -0.944 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 123222 | 0.00014385 | 0.0028095 | -0.15697 | -0.81766 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2456354 | 0.00012579 | 0.0028780 | -0.083674 | -0.88954 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2456354 | 0.00012579 | 0.0028780 | -0.083674 | -0.88954 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2456354 | 0.00012579 | 0.0028780 | -0.083674 | -0.88954 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2456354 | 3.0796 | 1.7571 | 0.075373 | -1.1002 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2456354 | 0.041465 | 0.010795 | -0.71056 | -0.33491 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1828050 | 0.00012557 | 0.0028812 | -0.086761 | -0.89149 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1828050 | 0.00012557 | 0.0028812 | -0.086761 | -0.89149 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1828050 | 0.00012557 | 0.0028812 | -0.086761 | -0.89149 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 | 0.00093618 | 0.0016917 | 0.20839 | 1.4458 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 75171 | 3.8256e-05 | 0.0026847 | 0.077087 | -0.63268 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 513 | 0.00080444 | 0.0021745 | -0.43813 | 0.38257 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1483 | 0.00055983 | 0.0024579 | -0.30503 | -0.32986 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5159 | 0.00064128 | 0.0025530 | -0.38073 | -0.37091 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25646 | 0.00075873 | 0.0026476 | -0.48208 | -0.43835 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 176379 | 0.00061627 | 0.0028229 | -0.33529 | -0.74006 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578641 | 0.00017509 | 0.0029344 | -0.1303 | -0.94677 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 599927 |-1.3212e-05 | 0.0029141 | -0.036819 | -0.93149 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 365006 |-0.00010147 | 0.0028240 | 0.064434 | -0.80251 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 125 | 0.00093618 | 0.0016917 | 0.20839 | 1.4458 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 75171 | 3.8256e-05 | 0.0026847 | 0.077087 | -0.63268 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 513 | 0.00080444 | 0.0021745 | -0.43813 | 0.38257 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1483 | 0.00055983 | 0.0024579 | -0.30503 | -0.32986 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5159 | 0.00064128 | 0.0025530 | -0.38073 | -0.37091 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25646 | 0.00075873 | 0.0026476 | -0.48208 | -0.43835 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 176379 | 0.00061627 | 0.0028229 | -0.33529 | -0.74006 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 578641 | 0.00017509 | 0.0029344 | -0.1303 | -0.94677 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 599927 |-1.3212e-05 | 0.0029141 | -0.036819 | -0.93149 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 365006 |-0.00010147 | 0.0028240 | 0.064434 | -0.80251 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 232691 | 6.9593e-05 | 0.0018084 | -0.051511 | -0.8125 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 232691 | 6.9593e-05 | 0.0018084 | -0.051511 | -0.8125 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 200464 | 5.6568e-05 | 0.0018341 | -0.034553 | -0.86549 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32227 | 0.00013544 | 0.0016707 | -0.14026 | -0.48733 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5986 | 7.242e-05 | 0.0016644 | -0.12765 | -0.42967 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17296 | 9.9433e-05 | 0.0018289 | -0.10558 | -0.85642 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11322 | 0.00011887 | 0.0018161 | -0.092244 | -0.84839 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5938 | 0.00018462 | 0.0017950 | -0.16017 | -0.77591 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10488 |-1.3447e-05 | 0.0017763 | 0.0067875 | -0.69378 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17100 |-9.6268e-05 | 0.0017913 | 0.070173 | -0.75369 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17459 | 0.00010464 | 0.0018263 | -0.053707 | -0.84811 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20956 | 8.6912e-05 | 0.0018573 | -0.052248 | -0.90312 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21209 | 0.00011373 | 0.0018747 | -0.053982 | -0.94902 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25860 | 7.6763e-05 | 0.0018590 | -0.0054382 | -0.93902 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25463 |-3.6482e-05 | 0.0018545 | 0.024489 | -0.89959 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21387 | 3.9676e-05 | 0.0018407 | -0.040255 | -0.87961 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1793 | 0.00011535 | 0.0014666 | -0.17105 | 0.017589 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2752 | 0.00030438 | 0.0017171 | -0.30817 | -0.60342 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1584 | 0.00035138 | 0.0017218 | -0.31802 | -0.43289 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 915 | 0.00019463 | 0.0017070 | -0.26218 | -0.46863 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2506 |-1.8765e-05 | 0.0015140 | -0.038461 | -0.09219 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2711 | 3.8086e-05 | 0.0016573 | -0.05658 | -0.50245 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2701 | 0.00011098 | 0.0017056 | -0.088813 | -0.51408 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2708 | 0.00018971 | 0.0016815 | -0.10215 | -0.53208 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2904 | 5.9577e-05 | 0.0016728 | -0.0079497 | -0.51219 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3823 | 7.2865e-05 | 0.0017167 | -0.080642 | -0.64606 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4193 | 7.4144e-05 | 0.0016745 | -0.18035 | -0.48637 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3637 | 0.00026659 | 0.0016998 | -0.27163 | -0.46478 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7779 | 8.4212e-05 | 0.0016126 | -0.14093 | -0.3163 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20048 | 0.00013246 | 0.0018129 | -0.13852 | -0.82666 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12906 | 0.00015211 | 0.0018047 | -0.1247 | -0.80535 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6853 | 0.00018606 | 0.0017826 | -0.17332 | -0.73637 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12994 |-1.4726e-05 | 0.0017169 |-0.00013822 | -0.57008 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19811 |-7.2932e-05 | 0.0017695 | 0.047297 | -0.71752 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20160 | 0.0001057 | 0.0018065 | -0.058922 | -0.79833 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23664 | 0.00010087 | 0.0018347 | -0.061143 | -0.85945 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24113 | 0.00010589 | 0.0018469 | -0.046852 | -0.8959 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29683 | 7.6191e-05 | 0.0018388 | -0.014303 | -0.90045 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29656 |-1.8017e-05 | 0.0018262 | -0.0066355 | -0.84526 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25024 | 7.9122e-05 | 0.0018190 | -0.08091 | -0.82798 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32905 | 9.875e-05 | 0.0018314 | -0.068002 | -0.87905 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32905 | 9.875e-05 | 0.0018314 | -0.068002 | -0.87905 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28634 | 8.293e-05 | 0.0018493 | -0.050632 | -0.91246 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4271 | 0.00019027 | 0.0017211 | -0.16801 | -0.64665 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1137 | 0.00019168 | 0.0018944 | -0.22542 | -0.91373 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1722 | 0.00010972 | 0.0017822 | -0.046696 | -0.75767 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 950 |-5.3154e-05 | 0.0016495 | -0.049033 | -0.59629 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 517 | 6.595e-05 | 0.0014697 | 0.32034 | -0.034041 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1678 |-0.00011051 | 0.0018501 | 0.025969 | -1.0288 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2194 | 0.00012058 | 0.0018310 | -0.073168 | -0.9334 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1826 | 1.1965e-05 | 0.0018420 | 0.034243 | -0.84746 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3320 | 0.00024007 | 0.0018828 | -0.12977 | -0.92524 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4620 | 0.00013034 | 0.0018618 | -0.076027 | -0.96349 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4046 | 1.2258e-06 | 0.0019197 | 0.010654 | -1.0384 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3650 | 6.0728e-05 | 0.0018634 | -0.045378 | -0.88892 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2974 | 6.1987e-05 | 0.0018239 | -0.059248 | -0.86898 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 124 | 0.00035278 | 0.0018713 | -0.24706 | -0.78176 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 281 | 0.00014 | 0.0017530 | -0.28252 | -0.5537 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 161 | 0.00044713 | 0.0015343 | -0.26874 | 0.015777 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121 | 2.5141e-05 | 0.0011999 | 0.20845 | 0.50138 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 186 | 7.3101e-05 | 0.0015805 | 0.12746 | -0.51686 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 297 | 1.9091e-05 | 0.0017707 | 0.1081 | -0.81039 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 300 | 1.75e-05 | 0.0018114 | 0.020633 | -0.87157 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 417 | 0.00013525 | 0.0017718 | -0.27123 | -0.76827 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 585 | 0.00034319 | 0.0017721 | -0.21052 | -0.81 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 697 | 0.00044769 | 0.0017986 | -0.34618 | -0.67307 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 574 | 3.9982e-05 | 0.0016470 | -0.15253 | -0.59612 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 528 | 0.00010625 | 0.0016193 | -0.20071 | -0.34156 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1261 | 0.00020933 | 0.0018926 | -0.22804 | -0.899 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2003 | 0.00011444 | 0.0017777 | -0.082148 | -0.72926 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1111 | 2.1654e-05 | 0.0016425 | -0.08827 | -0.5397 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 638 | 5.6693e-05 | 0.0014131 | 0.31305 | 0.1013 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1864 |-9.2152e-05 | 0.0018257 | 0.025129 | -0.98372 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2491 | 0.00010554 | 0.0018225 | -0.047137 | -0.92029 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2126 | 1.2903e-05 | 0.0018369 | 0.031989 | -0.85102 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3737 | 0.00022576 | 0.0018684 | -0.14396 | -0.90149 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5205 | 0.00015549 | 0.0018527 | -0.093094 | -0.94946 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4743 | 7.2769e-05 | 0.0019079 | -0.047878 | -1.0144 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4224 | 5.7438e-05 | 0.0018308 | -0.05684 | -0.84365 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3502 | 7.0046e-05 | 0.0017885 | -0.080951 | -0.79025 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 265596 | 7.3138e-05 | 0.0018112 | -0.053451 | -0.82088 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 265596 | 7.3138e-05 | 0.0018112 | -0.053451 | -0.82088 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 229098 | 5.9833e-05 | 0.0018361 | -0.03651 | -0.87148 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 36498 | 0.00014147 | 0.0016764 | -0.14297 | -0.5063 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 265596 | 3.3594 | 1.8360 | -0.21209 | -1.1808 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 265596 | 0.025165 | 0.0054086 | -0.64565 | -0.47826 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 131 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 77920 | 0.00016534 | 0.0028363 | -0.089378 | -0.85505 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 77920 | 0.00016534 | 0.0028363 | -0.089378 | -0.85505 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 77920 | 0.00016534 | 0.0028363 | -0.089378 | -0.85505 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3372 | 0.00016816 | 0.0026941 | -0.2035 | -0.65399 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.00187 | 0.0024726 | -0.044378 | -1.5558 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90 | 0.00036425 | 0.0021964 | 0.062286 | 0.35654 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 288 |-5.2519e-05 | 0.0025608 | 0.19028 | -0.34389 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3095 | 0.00025078 | 0.0027154 | 0.013654 | -0.67619 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23838 | 0.00033581 | 0.0028540 | -0.083311 | -0.86817 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32487 |-3.9488e-05 | 0.0028725 | -0.040822 | -0.92505 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 14746 | 0.00026469 | 0.0027822 | -0.20652 | -0.7877 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3372 | 0.00016816 | 0.0026941 | -0.2035 | -0.65399 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.00187 | 0.0024726 | -0.044378 | -1.5558 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90 | 0.00036425 | 0.0021964 | 0.062286 | 0.35654 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 288 |-5.2519e-05 | 0.0025608 | 0.19028 | -0.34389 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 3095 | 0.00025078 | 0.0027154 | 0.013654 | -0.67619 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23838 | 0.00033581 | 0.0028540 | -0.083311 | -0.86817 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32487 |-3.9488e-05 | 0.0028725 | -0.040822 | -0.92505 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 14746 | 0.00026469 | 0.0027822 | -0.20652 | -0.7877 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 548668 | 0.00012058 | 0.0028460 | -0.090613 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 548668 | 0.00012058 | 0.0028460 | -0.090613 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 548668 | 0.00012058 | 0.0028460 | -0.090613 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 548668 | 3.0464 | 1.7018 | 0.1144 | -1.002 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 548668 | 0.04184 | 0.010735 | -0.76052 | -0.24273 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470748 | 0.00011264 | 0.0028476 | -0.09077 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470748 | 0.00011264 | 0.0028476 | -0.09077 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470748 | 0.00011264 | 0.0028476 | -0.09077 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40 | 0.0012914 | 0.0014873 | -0.044032 | 0.14417 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21085 | 8.4874e-05 | 0.0026425 | 0.04258 | -0.60073 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 346 | 0.00080712 | 0.0023317 | -0.40704 | 0.11226 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 839 | 0.00056866 | 0.0024909 | -0.30765 | -0.46569 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2659 | 0.00058148 | 0.0026031 | -0.32572 | -0.46119 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8113 | 0.00069062 | 0.0026461 | -0.49316 | -0.41237 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 47537 | 0.00062068 | 0.0028093 | -0.33311 | -0.72809 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 147610 | 0.00012374 | 0.0029122 | -0.11963 | -0.93003 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145788 |-1.4873e-05 | 0.0028738 | -0.04731 | -0.88841 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 96731 |-0.00013745 | 0.0027866 | 0.067863 | -0.75476 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40 | 0.0012914 | 0.0014873 | -0.044032 | 0.14417 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21085 | 8.4874e-05 | 0.0026425 | 0.04258 | -0.60073 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 346 | 0.00080712 | 0.0023317 | -0.40704 | 0.11226 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 839 | 0.00056866 | 0.0024909 | -0.30765 | -0.46569 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2659 | 0.00058148 | 0.0026031 | -0.32572 | -0.46119 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8113 | 0.00069062 | 0.0026461 | -0.49316 | -0.41237 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 47537 | 0.00062068 | 0.0028093 | -0.33311 | -0.72809 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 147610 | 0.00012374 | 0.0029122 | -0.11963 | -0.93003 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145788 |-1.4873e-05 | 0.0028738 | -0.04731 | -0.88841 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 96731 |-0.00013745 | 0.0027866 | 0.067863 | -0.75476 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75516 | 6.5127e-05 | 0.0017991 | -0.041547 | -0.79418 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75516 | 6.5127e-05 | 0.0017991 | -0.041547 | -0.79418 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63922 | 4.8137e-05 | 0.0018263 | -0.014015 | -0.85552 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11594 | 0.0001418 | 0.0016688 | -0.17695 | -0.44135 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1741 | 0.00019169 | 0.0016835 | -0.1538 | -0.56227 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5772 | -2.067e-06 | 0.0018168 | -0.015475 | -0.85575 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4298 | 9.5432e-05 | 0.0018031 | -0.078758 | -0.85394 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2456 | 0.00016448 | 0.0018247 | -0.15127 | -0.82484 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3328 | 4.5799e-05 | 0.0017231 | 0.011509 | -0.61115 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5821 |-0.00011037 | 0.0018244 | 0.087313 | -0.78857 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6089 | 2.097e-06 | 0.0018094 | -0.020624 | -0.83555 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6968 | 0.00011566 | 0.0018650 | -0.038293 | -0.92021 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6555 | 0.00012299 | 0.0018641 | -0.052918 | -0.92486 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7562 | 0.00010596 | 0.0018437 | 0.012529 | -0.91765 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7114 |-7.4267e-05 | 0.0018320 | 0.06591 | -0.86032 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6218 | 3.4319e-05 | 0.0018258 | -0.019853 | -0.83737 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 593 | 6.3418e-05 | 0.0014486 | -0.27253 | 0.29454 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1064 | 0.00019533 | 0.0017620 | -0.25388 | -0.6928 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 645 | 0.00044986 | 0.0017091 | -0.33377 | -0.38682 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 338 | 0.000251 | 0.0018572 | -0.35316 | -0.72738 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 882 | 7.5668e-05 | 0.0014595 | -0.030095 | 0.091865 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 998 |-3.3595e-06 | 0.0015750 | -0.10002 | -0.341 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1069 | 0.00011923 | 0.0016872 | -0.20603 | -0.44221 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1012 | 0.00027249 | 0.0016107 | -0.17955 | -0.37379 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 984 | 6.2556e-05 | 0.0016763 | -0.077443 | -0.4594 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1285 | 7.2747e-05 | 0.0017308 | -0.1345 | -0.65984 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1393 | 0.00012861 | 0.0016947 | -0.22108 | -0.42863 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1331 | 0.00017219 | 0.0017400 | -0.17776 | -0.55989 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2334 | 0.00015585 | 0.0016223 | -0.16475 | -0.36984 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6836 | 3.4773e-05 | 0.0018084 | -0.059454 | -0.83901 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4943 | 0.00015233 | 0.0017931 | -0.12113 | -0.80445 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2794 | 0.00017613 | 0.0018293 | -0.17905 | -0.81494 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4210 | 5.3381e-05 | 0.0016602 | 0.0012996 | -0.46308 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6819 |-8.9091e-05 | 0.0017781 | 0.054048 | -0.7144 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7158 | 2.4594e-05 | 0.0017872 | -0.054642 | -0.77493 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7980 | 0.00013923 | 0.0018299 | -0.061454 | -0.85532 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7539 | 0.00011405 | 0.0018377 | -0.053315 | -0.86681 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8847 | 0.00010079 | 0.0018267 | -0.0060388 | -0.88008 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8507 |-3.6392e-05 | 0.0018089 | 0.01432 | -0.80594 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7549 | 6.2905e-05 | 0.0018092 | -0.05243 | -0.79066 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1665 | 0.00022201 | 0.0018388 | -0.10675 | -0.91988 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1665 | 0.00022201 | 0.0018388 | -0.10675 | -0.91988 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1249 | 0.0001461 | 0.0018884 | -0.049537 | -1.0021 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 416 | 0.000471 | 0.0016416 | -0.25088 | -0.54587 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32 |-0.00079333 | 0.0019176 | 0.37985 | -0.89088 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49 | 0.00058154 | 0.0015235 | -0.10813 | -0.17218 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6 | 0.0014525 | 0.0010148 | 1.0529 | -0.73192 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11 | 0.000375 | 0.0016277 | 0.94928 | -0.83829 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14 | -0.001645 | 0.0018108 | 0.52945 | -1.3619 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37 | 0.00034417 | 0.0013531 | 0.050882 | -0.21194 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33 | 0.000525 | 0.0020147 | -0.36727 | -0.69618 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 68 | 0.0008575 | 0.0016195 | -0.25977 | -0.71495 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 275 | 0.00036949 | 0.0019069 | -0.20702 | -1.0461 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 359 |-0.00011798 | 0.0018031 | 0.16752 | -1.013 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 244 | 9.0833e-05 | 0.0020630 | -0.083381 | -1.1405 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121 |-0.00028858 | 0.0019044 | 0.3126 | -1.0034 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 38 | 0.0003325 | 0.0015433 | 0.26021 | -0.18584 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14 | 0.001325 | 0.0011124 | 0.20945 | -1.2337 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6 | -0.00091 | 0.0012950 | 0 | -2 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15 | 0.00035 | 0.0017994 | -0.031617 | -0.51731 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8 | 0.00085167 | 0.0013212 | 0.20911 | -1.5 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31 | 0.0012763 | 0.0012725 | -1.7278 | 3.6991 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 77 | 0.00042921 | 0.0016480 | 0.071399 | -1.066 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 100 | 9.5278e-05 | 0.0018064 | -0.098328 | -0.819 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 64 | 0.00032667 | 0.0015272 | -0.61077 | -0.15879 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 61 | 0.00073818 | 0.0015529 | -0.28123 | -0.28818 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33 |-0.00079333 | 0.0019176 | 0.37985 | -0.89088 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87 | 0.00047326 | 0.0015371 | 0.051796 | -0.2342 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20 | 0.0013714 | 0.0010797 | 0.44925 | -1.0008 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12 | 0.000375 | 0.0016277 | 0.94928 | -0.83829 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20 | -0.001435 | 0.0017122 | 0.31067 | -1.4951 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52 | 0.00034563 | 0.0014774 | 0.016471 | -0.16305 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41 | 0.00057167 | 0.0019343 | -0.38412 | -0.57786 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 99 | 0.00099117 | 0.0015299 | -0.60199 | -0.10512 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 352 | 0.00038107 | 0.0018597 | -0.1743 | -1.0212 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 459 |-7.6925e-05 | 0.0018057 | 0.1161 | -0.99065 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 308 | 0.00014324 | 0.0019591 | -0.17114 | -0.99367 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 182 | 1.26e-05 | 0.0018678 | 0.081881 | -1.0146 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 77181 | 6.8454e-05 | 0.0018001 | -0.042756 | -0.79722 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 77181 | 6.8454e-05 | 0.0018001 | -0.042756 | -0.79722 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 65171 | 5.0084e-05 | 0.0018276 | -0.014574 | -0.85869 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 12010 | 0.00015074 | 0.0016689 | -0.1789 | -0.44447 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 77181 | 3.4104 | 1.8314 | -0.26285 | -1.1499 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 77181 | 0.025329 | 0.0053149 | -0.67983 | -0.3893 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 542 | 34.835 | 22.396 | 0.17241 | -1.0523 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7775 | 50.461 | 18.734 | -0.24155 | -1.117 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3048 | 36.638 | 23.068 | 0.11359 | -1.1495 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 109 | 21.648 | 14.769 | 0.28797 | -0.79705 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 2174 | 56.917 | 3.9105 | 0.20981 | -0.679 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2163 | 36.116 | 10.303 | 0.16206 | -0.99048 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2174 | 55.968 | 3.8351 | 0.14408 | -0.62228 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2174 | 55.263 | 3.8195 | 0.10329 | -0.5257 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 743 | 23.999 | 15.107 | 0.21319 | -1.0144 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 577 | 234.2 | 161.93 | 0.23989 | -1.0407 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 7775 | 596.76 | 8.1866 | 1.7115 | 5.6189 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7775 | 367.13 | 135.53 | -0.22589 | -1.0855 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7775 | 586.27 | 9.7920 | 0.77103 | 2.1582 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7775 | 578.45 | 12.984 | 0.19027 | 0.21664 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3209 | 253.24 | 169.08 | 0.16473 | -1.1413 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 119 | 127.5 | 94.962 | 0.36011 | -0.86353 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 2219 | 359.44 | 26.302 | 0.41169 | -0.15366 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2219 | 228.94 | 64.192 | 0.17407 | -0.97148 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2219 | 353.57 | 25.665 | 0.36283 | -0.087109 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2219 | 349 | 25.490 | 0.31523 | -0.067098 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 829 | 140.14 | 99.007 | 0.26951 | -1.0501 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 3279 | 1060.2 | 18.316 | 1.3824 | 2.8816 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2040 | 1961.4 | 137.27 | 0.29873 | -0.16363 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 542 | 24.12 | 15.783 | 0.24458 | -0.98695 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 7775 | 58.661 | 3.4008 | -0.24422 | 0.77531 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7775 | 35.737 | 13.840 | -0.1524 | -1.0426 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7775 | 57.611 | 3.3794 | -0.18879 | 0.64204 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7775 | 56.831 | 3.4430 | -0.13142 | 0.49128 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3048 | 25.724 | 16.439 | 0.17754 | -1.0749 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 109 | 15.006 | 10.211 | 0.23248 | -1.0122 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 2174 | 35.221 | 7.5612 | -0.87179 | 0.23189 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2163 | 23.344 | 8.1930 | 0.086536 | -0.84286 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2174 | 34.645 | 7.4716 | -0.88187 | 0.23118 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2174 | 34.205 | 7.4231 | -0.87901 | 0.20245 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 743 | 16.311 | 10.370 | 0.21807 | -1.0607 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 33824 | -0.0064096 | 0.22109 | 0.002869 | -0.80347 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 715300 | -0.0014749 | 0.33840 | -1.2426 | 67.397 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 583944 | -0.0021269 | 0.25512 | -0.10244 | 0.26336 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 715300 | -0.0014749 | 0.33840 | -1.2426 | 67.397 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 715300 | -0.0014749 | 0.33840 | -1.2426 | 67.397 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 195952 | -0.0043582 | 0.23065 | -0.048069 | -0.26759 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6240 | 0.0020833 | 6.0411 | 1.0051 | 1.3604 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 203212 | -0.12367 | 7.0932 | 0.39779 | 1.2841 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 168920 | 0.0092588 | 6.3340 | 0.87879 | 1.1763 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 203212 | -0.12367 | 7.0932 | 0.39779 | 1.2841 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 203212 | -0.12367 | 7.0932 | 0.39779 | 1.2841 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 45736 | 0.0091745 | 5.9686 | 0.92098 | 1.7254 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 9567352 | 0.083908 | 0.073681 | 1.5795 | 3.3389 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6978594 | 0.045146 | 0.031593 | 1.7501 | 4.774 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 7426220 | 1.2883 | 0.90366 | 8.3293 | 171.51 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 6280912 | 1.1111 | 0.40557 | 5.5724 | 62.58 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4473902 | -12.342 | 228.91 | 0.0029447 | 0.22118 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4473902 | -1352.8 | 63.213 | -0.92988 | 0.6274 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 565.58 | 288.30 | 0.12082 | 0.30719 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 4962 | 1930.8 | 1395.8 | 2.4242 | 19.606 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 9567352 | 0.22352 | 227.95 | -0.031873 | 0.25312 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 9567352 | 11.064 | 245.45 | -0.073556 | -0.75814 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5093450 | 11.308 | 227.28 | -0.062223 | 0.29654 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5093450 | 1351.5 | 63.767 | 0.91126 | 0.58378 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3584882 | 3904.9 | 83.852 | -0.12133 | -0.92708 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3584882 | 11.82 | 261.62 | 0.011024 | 0.22505 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3393712 | -3902.8 | 81.878 | 0.1311 | -0.84486 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3393712 | 10.979 | 268.23 | 0.0084283 | 0.11564 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 605.62 | 260.17 | -0.67622 | -0.16518 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 4991 | 1400.6 | 879.48 | 0.70532 | 0.49979 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1967850 | 2.3368 | 1.7107 | 1.8909 | 4.9851 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1060230 | 2.2448 | 1.7429 | 2.2778 | 7.8681 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3028080 | 2.3046 | 1.7226 | 2.0282 | 6.0145 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6978594 | 9.4145 | 461.48 | -0.034807 | -1.527 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6978594 | 11.303 | 264.62 | 0.010869 | 0.16502 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2456354 | 0.051731 | 0.00051399 | -0.26853 | -1.1051 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2456354 | 0.05192 | 0.0063093 | 0.0070567 | -0.862 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2456354 | 0.00012584 | 0.0028781 | -0.083716 | -0.8894 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1765252 | 0.0001146 | 0.0028832 | -0.080325 | -0.89452 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 64340 | 0.00020214 | 0.0028630 | -0.12879 | -0.85442 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 355584 | 0.00014366 | 0.0028667 | -0.076639 | -0.89752 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 271178 | 0.00015693 | 0.0028629 | -0.10469 | -0.85075 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 265596 | 0.029186 | 0.00023330 | -0.0075293 | -1.184 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 265596 | 0.02815 | 0.0040123 | -0.24708 | -0.91464 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 265596 | 7.3123e-05 | 0.0018112 | -0.053456 | -0.82064 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 187707 | 7.6338e-05 | 0.0018076 | -0.053081 | -0.81364 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 10332 | 7.0517e-05 | 0.0018221 | -0.051702 | -0.8657 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 51622 | 5.1426e-05 | 0.0018200 | -0.048755 | -0.83082 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 15935 | 0.00010529 | 0.0018194 | -0.073116 | -0.84194 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 7775 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 7775 | 2041 | 13.308 | 0.79562 | 1.7548 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 7775 | 1075.5 | 14.784 | 1.6735 | 5.8314 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 2219 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 2219 | 11458 | 134.97 | 0.28561 | -0.43083 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 2219 | 1969 | 143.87 | 0.4217 | -0.13628 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.555 | 1.6573 | 1.4273 | 2.6629 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.5578 | 1.6586 | 1.4253 | 2.6526 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 520 | 57591 | 15689. | 0.92908 | 0.079423 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 7753 | 18703 | 10512. | 2.9342 | 12.073 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7753 | 21691 | 12004. | 2.4891 | 8.3978 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7753 | 18788 | 10569. | 2.9162 | 11.911 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7753 | 18853 | 10612. | 2.9027 | 11.79 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3026 | 33938 | 14747. | 1.7719 | 3.5003 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 87 | 82828 | 10593. | -0.0060583 | -1.0553 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 2152 | 30853 | 12852. | 2.2592 | 6.1106 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2141 | 33936 | 14417. | 1.8617 | 3.8589 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2152 | 30942 | 12910. | 2.2447 | 6.0186 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2152 | 31011 | 12955. | 2.2338 | 5.9494 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 721 | 52402 | 16004. | 1.0652 | 0.52886 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 555 | 57273 | 15718. | 0.93599 | 0.10543 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 7753 | 18703 | 10512. | 2.9342 | 12.073 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7753 | 21621 | 11980. | 2.4957 | 8.4498 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7753 | 18787 | 10568. | 2.9165 | 11.914 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7753 | 18851 | 10610. | 2.9032 | 11.794 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3187 | 33720 | 14716. | 1.7812 | 3.552 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 97 | 82384 | 10800. | 0.0044313 | -1.0629 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 2197 | 30766 | 12772. | 2.2702 | 6.1952 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2197 | 33745 | 14305. | 1.88 | 3.9662 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2197 | 30854 | 12830. | 2.2558 | 6.1032 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2197 | 30921 | 12874. | 2.2449 | 6.034 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 807 | 52009 | 15954. | 1.0828 | 0.59465 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 520 | 57650 | 15696. | 0.91985 | 0.059548 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 7753 | 18692 | 10496. | 2.9315 | 12.056 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7753 | 21688 | 11986. | 2.4853 | 8.3812 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7753 | 18777 | 10553. | 2.9135 | 11.894 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7753 | 18842 | 10596. | 2.9 | 11.773 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3026 | 33921 | 14703. | 1.772 | 3.518 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 87 | 82825 | 10563. | -0.0013252 | -1.0388 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 2152 | 31399 | 13223. | 2.164 | 5.5232 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2141 | 34264 | 14609. | 1.8205 | 3.6445 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2152 | 31492 | 13280. | 2.1502 | 5.4394 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2152 | 31563 | 13324. | 2.1397 | 5.3763 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 721 | 52375 | 15976. | 1.0715 | 0.54234 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 33824 |-1.4953e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 715300 | 2.3548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 583944 |-1.8691e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 715300 | 2.3548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 715300 | 2.3548e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 195952 | 1.2081e+16 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 34787 | 1.0866 | 0.90933 | 0.32071 | -0.58222 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 34370 | 0.049112 | 0.0067502 | -2.5544 | 6.3089 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6240 |-3.8413e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 203212 |-3.0372e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 168920 |-1.4589e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 203212 |-3.0372e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 203212 |-3.0372e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 45736 |-7.3038e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 9747 | 1.1498 | 0.96345 | 0.37695 | -0.55063 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 9344 | 0.02781 | 0.0033986 | -2.2426 | 4.399 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 38.776 | 246.21 | -0.066319 | -0.71607 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 38.994 | 248.15 | -0.076921 | -0.82786 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 42.606 | 460.89 | -0.039409 | -1.53 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 41.591 | 212.98 | 0.01967 | 1.1456 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 38.679 | 465.38 | -0.023696 | -1.5276 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 39.694 | 307.08 | 0.02342 | -0.63472 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 7789 | 1.4717 | 0.52084 | 0.33016 | -0.41876 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 7789 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 2952 | 0.23438 | 0.099448 | -0.17169 | -1.0014 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 7767 | 18684 | 10551. | 2.9152 | 11.967 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 7767 | 1379 | 910.76 | 2.6252 | 10.027 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.armv8.1_a b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.armv8.1_a new file mode 100644 index 0000000000000000000000000000000000000000..7b3040ec509bedd0862f4b2d19f09ef15c62db49 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.armv8.1_a @@ -0,0 +1,609 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 5000 | 8511 | 1.7022 | + | "nTracksSelected" | 5000 | 8511 | 1.7022 | +DefaultGECFilter INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3150729 | 630.15 | 0.35291 | 630.00 | 631.00 | + | "event size statistics (KBytes)" | 5195 | 98426 | 18.946 | 5.7507 | 8.0000 | 55.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4661 | 134035 | 28.757 | + | "Created long tracks" | 4661 | 2766 | 0.59343 | + | "Empty input tracks" | 339 | + | "Input tracks" | 4661 | 137504 | 29.501 | + | "Number of candidate bins per track" | 134035 | 51742 | 0.38603 | 1.5473 | 0.0000 | 37.000 | + | "Number of complete candidates/track 1st Loop" | 20493 | 2358 | 0.11506 | 0.32001 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 19189 | 440 | 0.022930 | 0.15003 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 20493 | 7239 | 0.35324 | 0.62776 | + | "Number of x candidates per track 2nd Loop" | 19189 | 22337 | 1.1641 | 1.7825 | + | "Percentage second loop execution" | 20493 | 19189 | 0.93637 | + | "Removed duplicates" | 4661 | 25 | 0.0053637 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 1204423 | 684884 | 0.56864 | 0.53976 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 812049 | 466665 | 0.57468 | 0.53407 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 773427 | 439622 | 0.56841 | 0.53803 | 0.0000 | 4.0000 | + | "Created XZ tracks (part 0)" | 15000 | 150298 | 10.020 | 13.971 | 0.0000 | 359.00 | + | "Created XZ tracks (part 1)" | 15000 | 140724 | 9.3816 | 13.196 | 0.0000 | 225.00 | + | "Created XZ tracks in case 0" | 10000 | 103439 | 10.344 | 13.743 | 0.0000 | 322.00 | + | "Created XZ tracks in case 1" | 10000 | 102899 | 10.290 | 14.759 | 0.0000 | 359.00 | + | "Created XZ tracks in case 2" | 10000 | 84684 | 8.4684 | 12.055 | 0.0000 | 278.00 | + | "Created full hit combinations in case 0" | 166889 | 166889 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 116403 | 116403 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 117663 | 117663 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 10000 | 96230 | 9.6230 | 8.0552 | 0.0000 | 115.00 | + | "Created seed tracks (part 0)" | 5000 | 66434 | 13.287 | 11.053 | 0.0000 | 149.00 | + | "Created seed tracks (part 1)" | 5000 | 61955 | 12.391 | 10.436 | 0.0000 | 102.00 | + | "Created seed tracks in case 0" | 10000 | 50752 | 5.0752 | 4.2465 | 0.0000 | 58.000 | + | "Created seed tracks in case 1" | 10000 | 87170 | 8.7170 | 7.1310 | 0.0000 | 96.000 | + | "Created seed tracks in case 2" | 10000 | 115157 | 11.516 | 9.6063 | 0.0000 | 139.00 | + | "Created seed tracks in recovery step" | 5000 | 13232 | 2.6464 | 3.0115 | 0.0000 | 31.000 | + | "Created two-hit combinations in case 0" | 803728 | 6715381 | 8.3553 | 7.8188 | 0.0000 | 62.000 | + | "Created two-hit combinations in case 1" | 840309 | 4664031 | 5.5504 | 5.2645 | 0.0000 | 157.00 | + | "Created two-hit combinations in case 2" | 762709 | 4659993 | 6.1098 | 5.9493 | 0.0000 | 178.00 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 1119 | + | "chi2 cut" | 904 | + | "nIterations" | 2766 | 7557 | 2.7321 | + | "nOutlierIterations" | 1647 | 2561 | 1.5549 | + | "nTracksInput" | 5000 | 2766 | 0.55320 | + | "nTracksOutput" | 5000 | 743 | 0.14860 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 305 | + | "chi2 cut" | 1059 | + | "nIterations" | 8511 | 17711 | 2.0810 | + | "nOutlierIterations" | 8206 | 8353 | 1.0179 | + | "nTracksInput" | 5000 | 8511 | 1.7022 | + | "nTracksOutput" | 5000 | 7147 | 1.4294 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4632 | 51059.88 | 11.023 | + | "#MatchingMLP" | 13740 | 12553.94 | 0.91368 | + | "#MatchingTracks" | 4632 | 8511 | 1.8374 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 1587 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 815111 | -4068146 | -4.9909 | 1064.5 | -2656.3 | 2657.0 | + | "Average X in T1V" | 853884 |-1.062531e+07 | -12.444 | 1067.8 | -2657.0 | 2656.4 | + | "Average X in T1X1" | 803728 |-2.50315e+07 | -31.144 | 1089.1 | -2646.8 | 2646.7 | + | "Average X in T1X2" | 865781 |1.094691e+07 | 12.644 | 1059.8 | -2646.9 | 2647.0 | + | "Average X in T2U" | 806671 | -1836889 | -2.2771 | 1074.4 | -2655.5 | 2656.8 | + | "Average X in T2V" | 828409 |3.004511e+07 | 36.268 | 1060.0 | -2655.1 | 2656.4 | + | "Average X in T2X1" | 785966 |-3.483145e+07 | -44.317 | 1087.2 | -2645.8 | 2646.5 | + | "Average X in T2X2" | 837563 |2.974352e+07 | 35.512 | 1045.0 | -2645.3 | 2646.8 | + | "Average X in T3U" | 837044 |-1.622849e+07 | -19.388 | 1209.4 | -3187.5 | 3190.1 | + | "Average X in T3V" | 1022603 |4.52813e+07 | 44.280 | 1197.8 | -3189.3 | 3189.6 | + | "Average X in T3X1" | 881094 | 4533782 | 5.1456 | 1188.1 | -3176.5 | 3177.4 | + | "Average X in T3X2" | 917963 |-1.337318e+07 | -14.568 | 1206.7 | -3177.0 | 3178.4 | + | "Hits in T1U" | 20000 | 815111 | 40.756 | 27.493 | 0.0000 | 213.00 | + | "Hits in T1V" | 20000 | 853884 | 42.694 | 28.755 | 0.0000 | 209.00 | + | "Hits in T1X1" | 20000 | 803728 | 40.186 | 27.020 | 0.0000 | 292.00 | + | "Hits in T1X2" | 20000 | 865781 | 43.289 | 29.060 | 0.0000 | 196.00 | + | "Hits in T2U" | 20000 | 806671 | 40.334 | 26.608 | 0.0000 | 218.00 | + | "Hits in T2V" | 20000 | 828409 | 41.420 | 27.464 | 0.0000 | 195.00 | + | "Hits in T2X1" | 20000 | 785966 | 39.298 | 25.804 | 0.0000 | 195.00 | + | "Hits in T2X2" | 20000 | 837563 | 41.878 | 27.626 | 0.0000 | 191.00 | + | "Hits in T3U" | 20000 | 837044 | 41.852 | 27.147 | 0.0000 | 201.00 | + | "Hits in T3V" | 20000 | 1022603 | 51.130 | 30.550 | 0.0000 | 222.00 | + | "Hits in T3X1" | 20000 | 881094 | 44.055 | 27.328 | 0.0000 | 239.00 | + | "Hits in T3X2" | 20000 | 917963 | 45.898 | 29.682 | 0.0000 | 192.00 | + | "Total number of hits" | 5000 |1.025582e+07 | 2051.2 | 1256.4 | 18.000 | 8079.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 5000 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 5000 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 5000 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 215 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 215 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 5000 | 2872755 | 574.55 | 884.65 | 0.0000 | 11418. | + | "# Rich1Gas Segments" | 5000 | 7776 | 1.5552 | 1.6574 | 0.0000 | 11.000 | + | "# Rich2Gas Photons" | 5000 | 273889 | 54.778 | 122.10 | 0.0000 | 1570.0 | + | "# Rich2Gas Segments" | 5000 | 2175 | 0.43500 | 0.76953 | 0.0000 | 7.0000 | + | "# Selected Tracks" | 5000 | 7776 | 1.5552 | 1.6574 | 0.0000 | 11.000 | + |*"RICH selection efficiency" | 7790 | 7776 |( 99.82028 +- 0.04798837)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 7055 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 7055 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 7055 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 735 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 735 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 735 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 5000 | 1424476 | 284.90 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 5000 | 1424476 | 284.90 | + | "Nb of Produced Tracks" | 5000 | 188157 | 37.631 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 133 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 539060 | 0.00012636 | 0.0028689 | -0.074661 | -0.8841 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 539060 | 0.00012636 | 0.0028689 | -0.074661 | -0.8841 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 539060 | 0.00012636 | 0.0028689 | -0.074661 | -0.8841 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21392 | 0.00030792 | 0.0026960 | -0.21789 | -0.6572 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 74 | 3.8372e-06 | 0.0022492 | -0.24032 | 0.14198 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 462 | 0.0003986 | 0.0024019 | -0.27706 | -0.16815 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2369 | 0.00052192 | 0.0025882 | -0.19175 | -0.46584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30555 | 0.00043651 | 0.0027810 | -0.13612 | -0.73297 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 178655 | 0.00019375 | 0.0029048 | -0.047977 | -0.9201 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 200992 |-7.0016e-05 | 0.0029026 | -0.01698 | -0.94414 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 104561 | 0.00014316 | 0.0028104 | -0.15686 | -0.8184 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 21392 | 0.00030792 | 0.0026960 | -0.21789 | -0.6572 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 74 | 3.8372e-06 | 0.0022492 | -0.24032 | 0.14198 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 462 | 0.0003986 | 0.0024019 | -0.27706 | -0.16815 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2369 | 0.00052192 | 0.0025882 | -0.19175 | -0.46584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30555 | 0.00043651 | 0.0027810 | -0.13612 | -0.73297 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 178655 | 0.00019375 | 0.0029048 | -0.047977 | -0.9201 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 200992 |-7.0016e-05 | 0.0029026 | -0.01698 | -0.94414 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 104561 | 0.00014316 | 0.0028104 | -0.15686 | -0.8184 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2105991 | 0.00012569 | 0.0028781 | -0.083731 | -0.88959 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2105991 | 0.00012569 | 0.0028781 | -0.083731 | -0.88959 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2105991 | 0.00012569 | 0.0028781 | -0.083731 | -0.88959 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2105991 | 3.0805 | 1.7584 | 0.074801 | -1.103 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2105991 | 0.042744 | 0.010093 | -0.8309 | -0.023902 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1566931 | 0.00012545 | 0.0028813 | -0.086822 | -0.8915 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1566931 | 0.00012545 | 0.0028813 | -0.086822 | -0.8915 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1566931 | 0.00012545 | 0.0028813 | -0.086822 | -0.8915 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107 | 0.00093145 | 0.0016903 | 0.21145 | 1.4517 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 66011 | 3.8104e-05 | 0.0026847 | 0.076978 | -0.63264 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 451 | 0.000803 | 0.0021736 | -0.43884 | 0.3839 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1298 | 0.00055969 | 0.0024575 | -0.3049 | -0.33072 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4398 | 0.00064184 | 0.0025531 | -0.38113 | -0.37053 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21605 | 0.00075938 | 0.0026472 | -0.48182 | -0.43816 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 149007 | 0.00061617 | 0.0028230 | -0.33535 | -0.74004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 498852 | 0.00017495 | 0.0029344 | -0.13035 | -0.9468 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 511459 |-1.3233e-05 | 0.0029142 | -0.036862 | -0.93154 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313743 |-0.00010174 | 0.0028241 | 0.064292 | -0.80249 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107 | 0.00093145 | 0.0016903 | 0.21145 | 1.4517 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 66011 | 3.8104e-05 | 0.0026847 | 0.076978 | -0.63264 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 451 | 0.000803 | 0.0021736 | -0.43884 | 0.3839 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1298 | 0.00055969 | 0.0024575 | -0.3049 | -0.33072 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4398 | 0.00064184 | 0.0025531 | -0.38113 | -0.37053 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21605 | 0.00075938 | 0.0026472 | -0.48182 | -0.43816 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 149007 | 0.00061617 | 0.0028230 | -0.33535 | -0.74004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 498852 | 0.00017495 | 0.0029344 | -0.13035 | -0.9468 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 511459 |-1.3233e-05 | 0.0029142 | -0.036862 | -0.93154 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313743 |-0.00010174 | 0.0028241 | 0.064292 | -0.80249 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 223970 | 6.9112e-05 | 0.0018088 | -0.051511 | -0.81298 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 223970 | 6.9112e-05 | 0.0018088 | -0.051511 | -0.81298 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 192690 | 5.6027e-05 | 0.0018345 | -0.034421 | -0.86595 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31280 | 0.00013534 | 0.0016713 | -0.14113 | -0.48732 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5620 | 7.3459e-05 | 0.0016634 | -0.12703 | -0.42905 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16599 | 9.6079e-05 | 0.0018288 | -0.1031 | -0.85936 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10921 | 0.00012076 | 0.0018176 | -0.091838 | -0.85104 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5762 | 0.00018282 | 0.0017976 | -0.15985 | -0.77732 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9846 |-1.5613e-05 | 0.0017757 | 0.005518 | -0.69351 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16282 |-9.6422e-05 | 0.0017910 | 0.06975 | -0.75334 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16894 | 0.00010447 | 0.0018259 | -0.053754 | -0.84804 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20441 | 8.6869e-05 | 0.0018571 | -0.052389 | -0.90309 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20528 | 0.00011337 | 0.0018749 | -0.053981 | -0.94861 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25053 | 7.6316e-05 | 0.0018594 | -0.005427 | -0.93914 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24349 |-3.6643e-05 | 0.0018555 | 0.024004 | -0.89994 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20395 | 3.8711e-05 | 0.0018418 | -0.039741 | -0.88046 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1730 | 0.00011528 | 0.0014665 | -0.17155 | 0.018347 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2681 | 0.00030428 | 0.0017171 | -0.30847 | -0.60362 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1539 | 0.00035155 | 0.0017218 | -0.31843 | -0.43074 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 891 | 0.00019521 | 0.0017073 | -0.26066 | -0.47002 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2399 | -1.866e-05 | 0.0015141 | -0.038865 | -0.092995 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2633 | 3.592e-05 | 0.0016590 | -0.058666 | -0.50249 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2660 | 0.00011133 | 0.0017057 | -0.089222 | -0.5145 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2655 | 0.00019024 | 0.0016819 | -0.1019 | -0.53269 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2827 | 5.9752e-05 | 0.0016726 | -0.0078301 | -0.51194 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3706 | 7.2936e-05 | 0.0017170 | -0.081038 | -0.6457 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4044 | 7.2103e-05 | 0.0016782 | -0.18194 | -0.48968 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3515 | 0.00026835 | 0.0016990 | -0.27432 | -0.46106 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7350 | 8.495e-05 | 0.0016118 | -0.14044 | -0.31574 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19280 | 0.00012953 | 0.0018129 | -0.13639 | -0.82959 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12460 | 0.00015364 | 0.0018061 | -0.12426 | -0.80762 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6653 | 0.0001846 | 0.0017849 | -0.17285 | -0.73788 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12245 |-1.6346e-05 | 0.0017164 | -0.0014949 | -0.57003 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18915 | -7.342e-05 | 0.0017695 | 0.046705 | -0.71726 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19554 | 0.00010562 | 0.0018062 | -0.059038 | -0.79833 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23096 | 0.0001009 | 0.0018346 | -0.061257 | -0.85948 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23355 | 0.00010561 | 0.0018471 | -0.046862 | -0.89551 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 28759 | 7.5821e-05 | 0.0018393 | -0.014328 | -0.90064 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 28393 |-1.8508e-05 | 0.0018276 | -0.0071941 | -0.846 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23910 | 7.8642e-05 | 0.0018199 | -0.080962 | -0.8285 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31586 | 9.8643e-05 | 0.0018310 | -0.067885 | -0.8792 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31586 | 9.8643e-05 | 0.0018310 | -0.067885 | -0.8792 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27468 | 8.279e-05 | 0.0018489 | -0.050494 | -0.91266 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4118 | 0.00019034 | 0.0017208 | -0.16799 | -0.64634 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1101 | 0.00019209 | 0.0018935 | -0.22423 | -0.91504 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1627 | 0.00010944 | 0.0017822 | -0.047377 | -0.75734 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 901 |-5.3154e-05 | 0.0016494 | -0.048935 | -0.59541 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 492 | 6.595e-05 | 0.0014697 | 0.32034 | -0.034041 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1606 |-0.00011081 | 0.0018500 | 0.025893 | -1.0299 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2091 | 0.00012503 | 0.0018282 | -0.071219 | -0.93511 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1725 | 1.2064e-05 | 0.0018423 | 0.034905 | -0.84719 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3205 | 0.00023979 | 0.0018826 | -0.13038 | -0.92503 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4547 | 0.00013143 | 0.0018629 | -0.075408 | -0.96375 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3881 |-2.9202e-06 | 0.0019169 | 0.010137 | -1.0377 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3445 | 6.0305e-05 | 0.0018636 | -0.045021 | -0.88922 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2847 | 6.182e-05 | 0.0018240 | -0.059126 | -0.86969 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 123 | 0.00035278 | 0.0018713 | -0.24706 | -0.78176 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 274 | 0.00014052 | 0.0017522 | -0.28143 | -0.55383 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 151 | 0.00044538 | 0.0015339 | -0.26606 | 0.018063 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121 | 2.5141e-05 | 0.0011999 | 0.20845 | 0.50138 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 176 | 7.3987e-05 | 0.0015787 | 0.13107 | -0.51727 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 293 | 1.9545e-05 | 0.0017702 | 0.10766 | -0.80826 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 285 | 1.75e-05 | 0.0018114 | 0.020633 | -0.87157 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 404 | 0.00013496 | 0.0017718 | -0.27076 | -0.76827 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 584 | 0.00034366 | 0.0017719 | -0.21077 | -0.8087 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 653 | 0.00044747 | 0.0017983 | -0.34699 | -0.67348 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 535 | 3.9982e-05 | 0.0016470 | -0.15253 | -0.59612 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 519 | 0.0001065 | 0.0016193 | -0.20116 | -0.34161 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1224 | 0.0002097 | 0.0018918 | -0.22696 | -0.90021 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1901 | 0.00011428 | 0.0017776 | -0.082536 | -0.72906 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1052 | 2.1393e-05 | 0.0016423 | -0.087872 | -0.53833 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 613 | 5.6693e-05 | 0.0014131 | 0.31305 | 0.1013 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1782 |-9.2329e-05 | 0.0018255 | 0.025173 | -0.98463 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2384 | 0.00010938 | 0.0018201 | -0.045405 | -0.92157 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2010 | 1.2986e-05 | 0.0018371 | 0.032545 | -0.85078 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3609 | 0.00022547 | 0.0018682 | -0.14445 | -0.90134 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5131 | 0.00015649 | 0.0018536 | -0.092569 | -0.94959 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4534 | 6.9325e-05 | 0.0019056 | -0.048497 | -1.014 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3980 | 5.7082e-05 | 0.0018310 | -0.056539 | -0.84391 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3366 | 6.9954e-05 | 0.0017885 | -0.08093 | -0.7909 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 255556 | 7.2698e-05 | 0.0018116 | -0.053435 | -0.82131 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 255556 | 7.2698e-05 | 0.0018116 | -0.053435 | -0.82131 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 220158 | 5.9337e-05 | 0.0018363 | -0.036374 | -0.87189 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 35398 | 0.00014138 | 0.0016769 | -0.14374 | -0.50623 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 255556 | 3.3635 | 1.8364 | -0.21559 | -1.1802 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 255556 | 0.025421 | 0.0052424 | -0.68722 | -0.35215 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 131 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66538 | 0.00016552 | 0.0028362 | -0.089427 | -0.85504 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66538 | 0.00016552 | 0.0028362 | -0.089427 | -0.85504 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66538 | 0.00016552 | 0.0028362 | -0.089427 | -0.85504 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2987 | 0.00016828 | 0.0026939 | -0.20326 | -0.65399 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.00187 | 0.0024726 | -0.044378 | -1.5558 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 79 | 0.00036425 | 0.0021964 | 0.062286 | 0.35654 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 228 |-5.3346e-05 | 0.0025609 | 0.19121 | -0.34401 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2633 | 0.00025137 | 0.0027154 | 0.013314 | -0.67606 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 20205 | 0.00033555 | 0.0028536 | -0.083445 | -0.86808 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28076 |-3.8928e-05 | 0.0028727 | -0.040795 | -0.92501 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 12326 | 0.00026487 | 0.0027821 | -0.20646 | -0.7878 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2987 | 0.00016828 | 0.0026939 | -0.20326 | -0.65399 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4 | 0.00187 | 0.0024726 | -0.044378 | -1.5558 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 79 | 0.00036425 | 0.0021964 | 0.062286 | 0.35654 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 228 |-5.3346e-05 | 0.0025609 | 0.19121 | -0.34401 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2633 | 0.00025137 | 0.0027154 | 0.013314 | -0.67606 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 20205 | 0.00033555 | 0.0028536 | -0.083445 | -0.86808 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28076 |-3.8928e-05 | 0.0028727 | -0.040795 | -0.92501 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 12326 | 0.00026487 | 0.0027821 | -0.20646 | -0.7878 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 468072 | 0.00012056 | 0.0028460 | -0.090684 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 468072 | 0.00012056 | 0.0028460 | -0.090684 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 468072 | 0.00012056 | 0.0028460 | -0.090684 | -0.85543 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 468072 | 3.0492 | 1.7037 | 0.11119 | -1.0066 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 468072 | 0.043211 | 0.0099487 | -0.90475 | 0.16208 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 401534 | 0.00011258 | 0.0028476 | -0.090845 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 401534 | 0.00011258 | 0.0028476 | -0.090845 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 401534 | 0.00011258 | 0.0028476 | -0.090845 | -0.85563 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 34 | 0.001287 | 0.0014804 | -0.057993 | 0.15591 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 18382 | 8.4512e-05 | 0.0026422 | 0.042462 | -0.60071 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 297 | 0.00080495 | 0.0023304 | -0.40754 | 0.11396 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 732 | 0.00056841 | 0.0024902 | -0.30743 | -0.46717 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2289 | 0.00058232 | 0.0026034 | -0.32622 | -0.46078 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6818 | 0.00069085 | 0.0026461 | -0.49317 | -0.41222 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40027 | 0.00062076 | 0.0028093 | -0.33308 | -0.72814 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126934 | 0.0001238 | 0.0029122 | -0.11969 | -0.93005 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 122860 |-1.4976e-05 | 0.0028738 | -0.047382 | -0.88842 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 83161 |-0.00013763 | 0.0027865 | 0.067693 | -0.75469 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 34 | 0.001287 | 0.0014804 | -0.057993 | 0.15591 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 18382 | 8.4512e-05 | 0.0026422 | 0.042462 | -0.60071 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 297 | 0.00080495 | 0.0023304 | -0.40754 | 0.11396 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 732 | 0.00056841 | 0.0024902 | -0.30743 | -0.46717 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2289 | 0.00058232 | 0.0026034 | -0.32622 | -0.46078 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6818 | 0.00069085 | 0.0026461 | -0.49317 | -0.41222 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40027 | 0.00062076 | 0.0028093 | -0.33308 | -0.72814 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126934 | 0.0001238 | 0.0029122 | -0.11969 | -0.93005 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 122860 |-1.4976e-05 | 0.0028738 | -0.047382 | -0.88842 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 83161 |-0.00013763 | 0.0027865 | 0.067693 | -0.75469 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 72597 | 6.4994e-05 | 0.0017989 | -0.041676 | -0.79415 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 72597 | 6.4994e-05 | 0.0017989 | -0.041676 | -0.79415 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61332 | 4.8032e-05 | 0.0018259 | -0.014018 | -0.85547 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11265 | 0.00014152 | 0.0016694 | -0.17775 | -0.44139 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1647 | 0.00019609 | 0.0016800 | -0.15034 | -0.56265 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5516 |-3.1158e-06 | 0.0018159 | -0.016218 | -0.85664 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4119 | 9.513e-05 | 0.0018032 | -0.078635 | -0.85428 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2353 | 0.00016095 | 0.0018269 | -0.1511 | -0.8263 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3152 | 4.3828e-05 | 0.0017210 | 0.0098648 | -0.60974 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5512 |-0.00010985 | 0.0018243 | 0.086945 | -0.78893 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5863 | 1.9888e-06 | 0.0018093 | -0.020537 | -0.83518 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6788 | 0.00011475 | 0.0018642 | -0.038343 | -0.91976 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6341 | 0.00012311 | 0.0018640 | -0.052798 | -0.92495 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7345 | 0.00010607 | 0.0018436 | 0.012295 | -0.91764 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6805 |-7.2901e-05 | 0.0018312 | 0.0663 | -0.86012 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5891 | 3.451e-05 | 0.0018259 | -0.019125 | -0.83711 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 566 | 6.3209e-05 | 0.0014491 | -0.27266 | 0.29324 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1039 | 0.00019521 | 0.0017617 | -0.25519 | -0.69304 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 628 | 0.00045045 | 0.0017097 | -0.3325 | -0.38557 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 329 | 0.000251 | 0.0018572 | -0.35316 | -0.72738 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 850 | 7.6093e-05 | 0.0014598 | -0.030407 | 0.090199 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 967 |-8.7805e-06 | 0.0015806 | -0.10611 | -0.34346 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1051 | 0.00012002 | 0.0016872 | -0.20606 | -0.44248 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 994 | 0.00027358 | 0.0016112 | -0.17856 | -0.37549 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 955 | 6.2164e-05 | 0.0016764 | -0.077789 | -0.45782 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1253 | 7.2747e-05 | 0.0017313 | -0.13484 | -0.65956 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1343 | 0.00012871 | 0.0016942 | -0.22267 | -0.42872 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1290 | 0.0001725 | 0.0017399 | -0.17877 | -0.55806 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2213 | 0.00015893 | 0.0016198 | -0.1618 | -0.36979 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6555 | 3.3909e-05 | 0.0018076 | -0.060321 | -0.83986 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4747 | 0.00015217 | 0.0017932 | -0.12085 | -0.80448 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2682 | 0.00017306 | 0.0018312 | -0.17881 | -0.81643 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4002 | 5.2023e-05 | 0.0016586 |-0.00038272 | -0.4622 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6479 |-8.9728e-05 | 0.0017789 | 0.053175 | -0.71517 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6914 | 2.466e-05 | 0.0017871 | -0.054606 | -0.7747 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7782 | 0.00013862 | 0.0018293 | -0.061499 | -0.8551 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7296 | 0.00011409 | 0.0018376 | -0.05323 | -0.86672 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8598 | 0.00010089 | 0.0018266 | -0.0063072 | -0.88003 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8148 |-3.5251e-05 | 0.0018082 | 0.014432 | -0.8058 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7181 | 6.3121e-05 | 0.0018093 | -0.052027 | -0.79021 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1607 | 0.00022192 | 0.0018387 | -0.1067 | -0.91943 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1607 | 0.00022192 | 0.0018387 | -0.1067 | -0.91943 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1217 | 0.00014598 | 0.0018883 | -0.049504 | -1.0018 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 390 | 0.000471 | 0.0016413 | -0.25068 | -0.54454 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31 |-0.00079333 | 0.0019176 | 0.37985 | -0.89088 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 48 | 0.00058154 | 0.0015235 | -0.10813 | -0.17218 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6 | 0.0014525 | 0.0010148 | 1.0529 | -0.73192 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10 | 0.000375 | 0.0016277 | 0.94928 | -0.83829 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13 | -0.001645 | 0.0018108 | 0.52945 | -1.3619 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37 | 0.00034417 | 0.0013531 | 0.050882 | -0.21194 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33 | 0.000525 | 0.0020147 | -0.36727 | -0.69618 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 65 | 0.00085531 | 0.0016182 | -0.25778 | -0.71013 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 275 | 0.00036949 | 0.0019069 | -0.20702 | -1.0461 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 345 |-0.00011798 | 0.0018031 | 0.16752 | -1.013 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 233 | 9.0833e-05 | 0.0020630 | -0.083381 | -1.1405 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121 |-0.00028858 | 0.0019044 | 0.3126 | -1.0034 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 38 | 0.0003325 | 0.0015433 | 0.26021 | -0.18584 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11 | 0.001325 | 0.0011124 | 0.20945 | -1.2337 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6 | -0.00091 | 0.0012950 |-1.6464e-17 | -2 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15 | 0.00035875 | 0.0017946 | -0.042134 | -0.49318 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8 | 0.00085167 | 0.0013212 | 0.20911 | -1.5 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30 | 0.0012763 | 0.0012725 | -1.7278 | 3.6991 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 77 | 0.00042737 | 0.0016480 | 0.074756 | -1.0653 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87 | 9.5278e-05 | 0.0018064 | -0.098328 | -0.819 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 56 | 0.00032667 | 0.0015272 | -0.61077 | -0.15879 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 60 | 0.00073818 | 0.0015529 | -0.28123 | -0.28818 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32 |-0.00079333 | 0.0019176 | 0.37985 | -0.89088 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86 | 0.00047326 | 0.0015371 | 0.051796 | -0.2342 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17 | 0.0013714 | 0.0010797 | 0.44925 | -1.0008 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11 | 0.000375 | 0.0016277 | 0.94928 | -0.83829 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19 | -0.001435 | 0.0017122 | 0.31067 | -1.4951 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52 | 0.00034781 | 0.0014759 | 0.014017 | -0.15372 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41 | 0.00057167 | 0.0019343 | -0.38412 | -0.57786 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 95 | 0.00098968 | 0.0015291 | -0.60088 | -0.10197 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 352 | 0.00038071 | 0.0018597 | -0.17373 | -1.0213 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 432 |-7.6925e-05 | 0.0018057 | 0.1161 | -0.99065 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 289 | 0.00014324 | 0.0019591 | -0.17114 | -0.99367 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 181 | 1.26e-05 | 0.0018678 | 0.081881 | -1.0146 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 74204 | 6.8322e-05 | 0.0017999 | -0.042881 | -0.79718 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 74204 | 6.8322e-05 | 0.0017999 | -0.042881 | -0.79718 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 62549 | 4.998e-05 | 0.0018272 | -0.014575 | -0.85864 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 11655 | 0.00015046 | 0.0016695 | -0.17968 | -0.44445 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 74204 | 3.4128 | 1.8324 | -0.26539 | -1.1502 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 74204 | 0.025593 | 0.0051473 | -0.73036 | -0.23223 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 542 | 34.835 | 22.396 | 0.17241 | -1.0523 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7776 | 50.464 | 18.735 | -0.24172 | -1.117 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3049 | 36.639 | 23.064 | 0.11341 | -1.1489 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 109 | 21.648 | 14.769 | 0.28797 | -0.79705 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 2175 | 56.918 | 3.9100 | 0.20899 | -0.6791 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2164 | 36.115 | 10.301 | 0.16247 | -0.98962 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2175 | 55.969 | 3.8345 | 0.14342 | -0.6219 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2175 | 55.264 | 3.8189 | 0.10266 | -0.52521 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 744 | 23.968 | 15.121 | 0.21348 | -1.015 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 577 | 234.2 | 161.93 | 0.23989 | -1.0407 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 7776 | 596.76 | 8.1861 | 1.7116 | 5.6201 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7776 | 367.15 | 135.53 | -0.22611 | -1.0855 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7776 | 586.27 | 9.7914 | 0.77101 | 2.1587 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7776 | 578.45 | 12.983 | 0.19002 | 0.21658 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3210 | 253.25 | 169.05 | 0.16455 | -1.1408 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 119 | 127.5 | 94.962 | 0.36011 | -0.86353 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 2220 | 359.44 | 26.297 | 0.41113 | -0.1533 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2220 | 228.94 | 64.179 | 0.17445 | -0.97061 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2220 | 353.57 | 25.660 | 0.36235 | -0.086483 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2220 | 349.01 | 25.487 | 0.31452 | -0.066972 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 829 | 140.14 | 99.007 | 0.26951 | -1.0501 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 3279 | 1060.2 | 18.316 | 1.3824 | 2.8816 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2041 | 1961.4 | 137.24 | 0.29805 | -0.16327 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 542 | 24.081 | 15.756 | 0.25353 | -0.96381 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 7776 | 58.682 | 3.4015 | -0.25611 | 0.82275 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 7776 | 35.749 | 13.857 | -0.15118 | -1.0395 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 7776 | 57.632 | 3.3829 | -0.20453 | 0.67719 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 7776 | 56.854 | 3.4483 | -0.14127 | 0.49892 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3049 | 25.745 | 16.463 | 0.18214 | -1.0646 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 109 | 15.182 | 10.371 | 0.24079 | -1.0281 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 2175 | 35.221 | 7.5884 | -0.87347 | 0.26956 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 2164 | 23.317 | 8.1819 | 0.099793 | -0.8184 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 2175 | 34.633 | 7.5100 | -0.87634 | 0.24791 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 2175 | 34.204 | 7.4453 | -0.87991 | 0.22188 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 744 | 16.26 | 10.396 | 0.23107 | -1.0415 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 34729 | -0.0060295 | 0.22076 | 0.0019893 | -0.82355 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 736752 | -0.0014523 | 0.33860 | -1.2518 | 66.562 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 597078 | -0.0021893 | 0.25510 | -0.10307 | 0.26643 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 736752 | -0.0014523 | 0.33860 | -1.2518 | 66.562 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 736752 | -0.0014523 | 0.33860 | -1.2518 | 66.562 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 201178 | -0.0043424 | 0.23059 | -0.044069 | -0.27521 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6422 | -0.0023357 | 6.0395 | 1.0064 | 1.3788 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 209182 | -0.13787 | 7.1374 | 0.30138 | 1.8205 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 172734 | 0.0067997 | 6.3286 | 0.86536 | 1.1151 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 209182 | -0.13787 | 7.1374 | 0.30138 | 1.8205 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 209182 | -0.13787 | 7.1374 | 0.30138 | 1.8205 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 46999 | 0.0080647 | 5.9656 | 0.92424 | 1.807 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 9567352 | 0.083913 | 0.073684 | 1.5768 | 3.3174 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6978594 | 0.045144 | 0.031591 | 1.75 | 4.7741 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 7426220 | 1.2883 | 0.90366 | 8.3293 | 171.51 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 6280912 | 1.1111 | 0.40557 | 5.5724 | 62.58 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 4473902 | -12.342 | 228.91 | 0.0029447 | 0.22118 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 4473902 | -1352.8 | 63.213 | -0.92988 | 0.6274 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 5000 | 565.58 | 288.30 | 0.12082 | 0.30719 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 4962 | 1930.8 | 1395.8 | 2.4242 | 19.606 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2827896 | 3.3832 | 3.5252 | 2.6413 | 10.058 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 9567352 | 0.22352 | 227.95 | -0.031873 | 0.25312 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 9567352 | 11.064 | 245.45 | -0.073556 | -0.75814 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5093450 | 11.308 | 227.28 | -0.062223 | 0.29654 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5093450 | 1351.5 | 63.767 | 0.91126 | 0.58378 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3584882 | 3904.9 | 83.852 | -0.12133 | -0.92708 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3584882 | 11.82 | 261.62 | 0.011024 | 0.22505 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3393712 | -3902.8 | 81.878 | 0.1311 | -0.84486 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3393712 | 10.979 | 268.23 | 0.0084283 | 0.11564 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 5000 | 605.62 | 260.17 | -0.67622 | -0.16518 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 4991 | 1400.6 | 879.48 | 0.70532 | 0.49979 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1967850 | 2.3368 | 1.7107 | 1.8909 | 4.9851 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1060230 | 2.2448 | 1.7429 | 2.2778 | 7.8681 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 3028080 | 2.3046 | 1.7226 | 2.0282 | 6.0145 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6978594 | 9.4145 | 461.48 | -0.034807 | -1.527 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6978594 | 11.303 | 264.62 | 0.010869 | 0.16502 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2105991 | 0.051727 | 0.00051494 | -0.26249 | -1.1267 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2105991 | 0.050933 | 0.0054863 | -0.15662 | -0.91772 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2105991 | 0.00012574 | 0.0028782 | -0.083765 | -0.88943 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1512104 | 0.00011449 | 0.0028833 | -0.080387 | -0.89452 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 55555 | 0.0002018 | 0.0028630 | -0.12888 | -0.85438 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 305426 | 0.00014347 | 0.0028672 | -0.076662 | -0.89778 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 232906 | 0.00015704 | 0.0028629 | -0.1047 | -0.85072 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 255556 | 0.029187 | 0.00023332 | -0.0087795 | -1.185 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 255556 | 0.028162 | 0.0040040 | -0.24656 | -0.9128 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 255556 | 7.2724e-05 | 0.0018116 | -0.053472 | -0.82106 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 180591 | 7.5972e-05 | 0.0018077 | -0.053371 | -0.81356 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 9901 | 7.0579e-05 | 0.0018220 | -0.05167 | -0.86591 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 49757 | 5.0786e-05 | 0.0018214 | -0.04781 | -0.83315 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 15307 | 0.00010538 | 0.0018187 | -0.07295 | -0.84204 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 7776 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 7776 | 2041 | 13.307 | 0.79557 | 1.7553 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 7776 | 1075.5 | 14.783 | 1.6737 | 5.8326 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 2220 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 2220 | 11458 | 134.95 | 0.28493 | -0.43066 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 2220 | 1969 | 143.85 | 0.42094 | -0.13643 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 5000 | 1.5552 | 1.6574 | 1.4268 | 2.6607 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 5000 | 1.558 | 1.6587 | 1.4248 | 2.6505 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 520 | 57591 | 15689. | 0.92908 | 0.07942 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 7754 | 18704 | 10511. | 2.934 | 12.073 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7754 | 21692 | 12003. | 2.4891 | 8.3993 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7754 | 18789 | 10568. | 2.9161 | 11.912 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7754 | 18854 | 10611. | 2.9026 | 11.791 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3027 | 33934 | 14745. | 1.7724 | 3.5024 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 87 | 82828 | 10593. | -0.006058 | -1.0553 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 2153 | 30850 | 12850. | 2.26 | 6.115 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2142 | 33932 | 14416. | 1.8623 | 3.8615 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2153 | 30939 | 12908. | 2.2455 | 6.0229 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2153 | 31008 | 12952. | 2.2346 | 5.9537 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 722 | 52402 | 16004. | 1.0651 | 0.52885 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 555 | 57273 | 15718. | 0.93599 | 0.10543 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 7754 | 18704 | 10511. | 2.934 | 12.073 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7754 | 21621 | 11979. | 2.4958 | 8.4513 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7754 | 18787 | 10567. | 2.9164 | 11.914 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7754 | 18852 | 10610. | 2.903 | 11.795 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3188 | 33717 | 14715. | 1.7817 | 3.5541 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 97 | 82384 | 10800. | 0.0044315 | -1.0629 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 2198 | 30763 | 12770. | 2.2709 | 6.1995 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2198 | 33741 | 14303. | 1.8805 | 3.9687 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2198 | 30851 | 12828. | 2.2566 | 6.1075 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2198 | 30918 | 12872. | 2.2457 | 6.0382 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 807 | 52009 | 15954. | 1.0828 | 0.59465 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 520 | 57640 | 15704. | 0.91935 | 0.058965 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 7754 | 18695 | 10502. | 2.9325 | 12.063 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 7754 | 21697 | 11992. | 2.4856 | 8.3842 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 7754 | 18780 | 10558. | 2.9146 | 11.901 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 7754 | 18845 | 10601. | 2.901 | 11.78 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3027 | 33932 | 14717. | 1.7707 | 3.5093 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 87 | 82857 | 10557. | -0.0069707 | -1.0392 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 2153 | 31396 | 13218. | 2.1684 | 5.559 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 2142 | 34259 | 14612. | 1.8243 | 3.6679 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 2153 | 31488 | 13275. | 2.1546 | 5.475 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 2153 | 31559 | 13318. | 2.1441 | 5.4118 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 722 | 52413 | 16000. | 1.0712 | 0.54259 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 34729 |-2.6967e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 736752 |-2.2769e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 597078 | 4.1092e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 736752 |-2.2769e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 736752 |-2.2769e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 201178 |-3.3991e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 34792 | 1.0866 | 0.90932 | 0.32068 | -0.58226 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 34375 | 0.049111 | 0.0067499 | -2.5543 | 6.3083 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 6422 |-5.3091e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 209182 |-4.4656e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 172734 |-6.8781e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 209182 |-4.4656e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 209182 |-4.4656e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 46999 | 2.236e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 9752 | 1.1497 | 0.96340 | 0.37691 | -0.55066 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 9348 | 0.027809 | 0.0033983 | -2.2423 | 4.3975 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12000000 | 38.776 | 246.21 | -0.066319 | -0.71607 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12500000 | 26.333 | 227.90 | -0.029049 | 0.25353 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12500000 | 38.994 | 248.15 | -0.076921 | -0.82786 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12500000 | 42.606 | 460.89 | -0.039409 | -1.53 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12500000 | 41.591 | 212.98 | 0.01967 | 1.1456 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12500000 | 38.679 | 465.38 | -0.023696 | -1.5276 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12500000 | 39.694 | 307.08 | 0.02342 | -0.63472 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 7790 | 1.4717 | 0.52090 | 0.32999 | -0.41918 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 7790 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 2952 | 0.23439 | 0.099448 | -0.17189 | -1.0017 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 7768 | 18685 | 10551. | 2.9151 | 11.967 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 7768 | 1379 | 910.70 | 2.6254 | 10.029 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.x86_64_v3-opt new file mode 100644 index 0000000000000000000000000000000000000000..51ab22c276531a9ca7d7bb6a6112fd94afc30617 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2023_data_trunk_geom.ref.x86_64_v3-opt @@ -0,0 +1,600 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 4967 | 12947 | 2.6066 | + | "nTracksSelected" | 4967 | 12947 | 2.6066 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | + | "Nb events removed" | 33 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3125452 | 625.09 | 0.28675 | 625.00 | 626.00 | + | "event size statistics (KBytes)" | 5103 | 133140 | 26.091 | 6.9015 | 8.0000 | 57.000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 4842 | 224498 | 46.365 | + | "Created long tracks" | 4842 | 4721 | 0.97501 | + | "Empty input tracks" | 125 | + | "Input tracks" | 4842 | 229258 | 47.348 | + | "Number of candidate bins per track" | 224498 | 391712 | 1.7448 | 4.4229 | 0.0000 | 60.000 | + | "Number of complete candidates/track 1st Loop" | 75516 | 3679 | 0.048718 | 0.21864 | 0.0000 | 3.0000 | + | "Number of complete candidates/track 2nd Loop" | 74264 | 1135 | 0.015283 | 0.12420 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 75516 | 41504 | 0.54961 | 1.0618 | + | "Number of x candidates per track 2nd Loop" | 74264 | 184724 | 2.4874 | 3.7882 | + | "Percentage second loop execution" | 75516 | 74264 | 0.98342 | + | "Removed duplicates" | 4842 | 41 | 0.0084676 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 4792557 | 2718274 | 0.56719 | 0.54852 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 3164982 | 1800991 | 0.56904 | 0.54249 | 0.0000 | 5.0000 | + | "Created T2x1 three-hit combinations in case 2" | 2894915 | 1627626 | 0.56224 | 0.54437 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 14901 | 505555 | 33.928 | 41.714 | 0.0000 | 439.00 | + | "Created XZ tracks (part 1)" | 14901 | 447239 | 30.014 | 38.437 | 0.0000 | 448.00 | + | "Created XZ tracks in case 0" | 9934 | 326019 | 32.819 | 40.413 | 0.0000 | 439.00 | + | "Created XZ tracks in case 1" | 9934 | 346471 | 34.877 | 44.124 | 0.0000 | 448.00 | + | "Created XZ tracks in case 2" | 9934 | 280304 | 28.217 | 35.132 | 0.0000 | 358.00 | + | "Created full hit combinations in case 0" | 633552 | 633552 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 408175 | 408175 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 402411 | 402411 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 9934 | 195565 | 19.686 | 16.083 | 0.0000 | 172.00 | + | "Created seed tracks (part 0)" | 4967 | 139228 | 28.031 | 21.432 | 0.0000 | 201.00 | + | "Created seed tracks (part 1)" | 4967 | 122310 | 24.625 | 19.584 | 0.0000 | 182.00 | + | "Created seed tracks in case 0" | 9934 | 94739 | 9.5368 | 7.1362 | 0.0000 | 68.000 | + | "Created seed tracks in case 1" | 9934 | 168959 | 17.008 | 13.048 | 0.0000 | 131.00 | + | "Created seed tracks in case 2" | 9934 | 230683 | 23.222 | 18.414 | 0.0000 | 186.00 | + | "Created seed tracks in recovery step" | 4967 | 30855 | 6.2120 | 5.6472 | 0.0000 | 35.000 | + | "Created two-hit combinations in case 0" | 1355221 |1.860654e+07 | 13.730 | 11.645 | 0.0000 | 139.00 | + | "Created two-hit combinations in case 1" | 1588357 |1.346539e+07 | 8.4776 | 6.6646 | 0.0000 | 71.000 | + | "Created two-hit combinations in case 2" | 1296421 |1.229852e+07 | 9.4865 | 7.9825 | 0.0000 | 75.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 2208 | + | "chi2 cut" | 1327 | + | "nIterations" | 4721 | 13038 | 2.7617 | + | "nOutlierIterations" | 2513 | 4020 | 1.5997 | + | "nTracksInput" | 4967 | 4721 | 0.95047 | + | "nTracksOutput" | 4967 | 1186 | 0.23878 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 702 | + | "chi2 cut" | 1635 | + | "nIterations" | 12947 | 27257 | 2.1053 | + | "nOutlierIterations" | 12245 | 11883 | 0.97044 | + | "nTracksInput" | 4967 | 12947 | 2.6066 | + | "nTracksOutput" | 4967 | 10610 | 2.1361 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 4838 | 126212.5 | 26.088 | + | "#MatchingMLP" | 19211 | 17298.21 | 0.90043 | + | "#MatchingTracks" | 4838 | 12947 | 2.6761 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 731 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 1466031 |-7.671733e+07 | -52.330 | 1093.6 | -2656.2 | 2657.0 | + | "Average X in T1V" | 1634043 |-3.169497e+07 | -19.397 | 1080.3 | -2657.0 | 2656.6 | + | "Average X in T1X1" | 1355221 |1.040715e+08 | 76.793 | 1141.5 | -2646.5 | 2646.9 | + | "Average X in T1X2" | 1622851 |9.378655e+07 | 57.791 | 1029.0 | -2646.9 | 2647.1 | + | "Average X in T2U" | 1529256 | 2150083 | 1.4060 | 1084.6 | -2655.4 | 2657.0 | + | "Average X in T2V" | 1566078 |6.210436e+07 | 39.656 | 1067.5 | -2655.0 | 2656.4 | + | "Average X in T2X1" | 1484013 |-5.512842e+07 | -37.148 | 1091.5 | -2645.8 | 2646.6 | + | "Average X in T2X2" | 1581960 |6.28379e+07 | 39.722 | 1051.4 | -2645.3 | 2646.7 | + | "Average X in T3U" | 1495051 | 3.7677e+07 | 25.201 | 1147.2 | -3187.3 | 3190.0 | + | "Average X in T3V" | 1639798 |9.150891e+07 | 55.805 | 1252.5 | -3189.2 | 3189.8 | + | "Average X in T3X1" | 1563478 |-3.699402e+07 | -23.661 | 1239.7 | -3176.8 | 3177.4 | + | "Average X in T3X2" | 1701080 |6.371264e+07 | 37.454 | 1185.4 | -3177.0 | 3178.4 | + | "Hits in T1U" | 19868 | 1466031 | 73.789 | 36.941 | 0.0000 | 250.00 | + | "Hits in T1V" | 19868 | 1634043 | 82.245 | 39.579 | 0.0000 | 255.00 | + | "Hits in T1X1" | 19868 | 1355221 | 68.211 | 33.170 | 0.0000 | 231.00 | + | "Hits in T1X2" | 19868 | 1622851 | 81.682 | 39.336 | 0.0000 | 264.00 | + | "Hits in T2U" | 19868 | 1529256 | 76.971 | 36.494 | 0.0000 | 226.00 | + | "Hits in T2V" | 19868 | 1566078 | 78.824 | 37.800 | 0.0000 | 250.00 | + | "Hits in T2X1" | 19868 | 1484013 | 74.694 | 35.589 | 0.0000 | 245.00 | + | "Hits in T2X2" | 19868 | 1581960 | 79.624 | 38.209 | 0.0000 | 244.00 | + | "Hits in T3U" | 19868 | 1495051 | 75.249 | 36.221 | 0.0000 | 213.00 | + | "Hits in T3V" | 19868 | 1639798 | 82.535 | 38.433 | 0.0000 | 245.00 | + | "Hits in T3X1" | 19868 | 1563478 | 78.693 | 36.017 | 0.0000 | 219.00 | + | "Hits in T3X2" | 19868 | 1701080 | 85.619 | 40.078 | 0.0000 | 270.00 | + | "Total number of hits" | 4967 |1.863886e+07 | 3752.5 | 1678.6 | 26.000 | 8700.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 4967 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 4967 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 4967 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 4967 | 2625837 | 528.66 | +RichClusteringForMoni INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5847 | +RichPixelClustering_98aa0d87 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No DePD object found for decoded channel ID" | 5847 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 4967 | 6213443 | 1250.9 | 1375.8 | 0.0000 | 17598. | + | "# Rich1Gas Segments" | 4967 | 11519 | 2.3191 | 1.8296 | 0.0000 | 13.000 | + | "# Rich2Gas Photons" | 4967 | 677735 | 136.45 | 234.85 | 0.0000 | 3466.0 | + | "# Rich2Gas Segments" | 4967 | 3425 | 0.68955 | 0.94304 | 0.0000 | 8.0000 | + | "# Selected Tracks" | 4967 | 11519 | 2.3191 | 1.8296 | 0.0000 | 13.000 | + |*"RICH selection efficiency" | 11546 | 11519 |( 99.76615 +- 0.04495127)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 10372 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 10372 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 10372 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 1174 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 1174 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 1174 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 4967 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 4967 | 2625837 | 528.66 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 4967 | 2625837 | 528.66 | + | "Nb of Produced Tracks" | 4967 | 328026 | 66.041 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 133 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1367796 | 9.3343e-05 | 0.0029687 | -0.045753 | -0.99803 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1367796 | 9.3343e-05 | 0.0029687 | -0.045753 | -0.99803 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1367796 | 9.3343e-05 | 0.0029687 | -0.045753 | -0.99803 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 47836 | 0.0001904 | 0.0028137 | -0.14026 | -0.82739 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 204 | 0.0010744 | 0.0024836 | -0.32099 | -0.5059 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4096 | 0.00094376 | 0.0027176 | -0.28848 | -0.64319 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78450 | 0.00040185 | 0.0029228 | -0.12208 | -0.92009 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 442396 | 0.00021296 | 0.0030064 | -0.055982 | -1.0271 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 518422 |-0.00011149 | 0.0029768 | 0.014898 | -1.0209 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 276392 | 5.4085e-05 | 0.0029156 | -0.07866 | -0.96166 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 47836 | 0.0001904 | 0.0028137 | -0.14026 | -0.82739 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 204 | 0.0010744 | 0.0024836 | -0.32099 | -0.5059 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4096 | 0.00094376 | 0.0027176 | -0.28848 | -0.64319 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78450 | 0.00040185 | 0.0029228 | -0.12208 | -0.92009 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 442396 | 0.00021296 | 0.0030064 | -0.055982 | -1.0271 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 518422 |-0.00011149 | 0.0029768 | 0.014898 | -1.0209 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 276392 | 5.4085e-05 | 0.0029156 | -0.07866 | -0.96166 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 5548239 | 8.7445e-05 | 0.0029733 | -0.050301 | -0.99759 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 5548239 | 8.7445e-05 | 0.0029733 | -0.050301 | -0.99759 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 5548239 | 8.7445e-05 | 0.0029733 | -0.050301 | -0.99759 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 5548239 | 3.0728 | 1.7519 | 0.086505 | -1.0859 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 5548239 | 0.040484 | 0.011116 | -0.6164 | -0.49671 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4180443 | 8.5519e-05 | 0.0029748 | -0.05177 | -0.99748 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4180443 | 8.5519e-05 | 0.0029748 | -0.05177 | -0.99748 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4180443 | 8.5519e-05 | 0.0029748 | -0.05177 | -0.99748 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00041735 | 0.0027937 | -0.25108 | -0.56743 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 216 | 0.00077379 | 0.0023207 | -0.45954 | -0.28085 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 172657 | 0.00013238 | 0.0028124 | 0.02265 | -0.80883 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 796 | 0.00033198 | 0.0024491 | -0.35587 | -0.19664 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2214 | 8.3557e-05 | 0.0025393 | -0.19204 | -0.51934 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6750 | 0.00046513 | 0.0025951 | -0.26055 | -0.4973 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 30195 | 0.00082953 | 0.0027145 | -0.41632 | -0.55818 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 384006 | 0.00060219 | 0.0029167 | -0.28822 | -0.87295 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1299675 | 9.9267e-05 | 0.0030151 | -0.075178 | -1.039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1381251 |-5.1225e-05 | 0.0030022 | -0.0055943 | -1.0283 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 902642 |-9.5102e-05 | 0.0029341 | 0.05838 | -0.94267 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00041735 | 0.0027937 | -0.25108 | -0.56743 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 216 | 0.00077379 | 0.0023207 | -0.45954 | -0.28085 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 172657 | 0.00013238 | 0.0028124 | 0.02265 | -0.80883 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 796 | 0.00033198 | 0.0024491 | -0.35587 | -0.19664 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2214 | 8.3557e-05 | 0.0025393 | -0.19204 | -0.51934 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6750 | 0.00046513 | 0.0025951 | -0.26055 | -0.4973 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 30195 | 0.00082953 | 0.0027145 | -0.41632 | -0.55818 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 384006 | 0.00060219 | 0.0029167 | -0.28822 | -0.87295 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1299675 | 9.9267e-05 | 0.0030151 | -0.075178 | -1.039 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1381251 |-5.1225e-05 | 0.0030022 | -0.0055943 | -1.0283 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 902642 |-9.5102e-05 | 0.0029341 | 0.05838 | -0.94267 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 614701 | 8.8457e-05 | 0.0018856 | -0.056653 | -0.96012 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 614701 | 8.8457e-05 | 0.0018856 | -0.056653 | -0.96012 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 545121 | 7.6217e-05 | 0.0019029 | -0.044763 | -0.99107 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 69580 | 0.00017013 | 0.0017637 | -0.13335 | -0.71729 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18592 | 2.8358e-05 | 0.0017712 | -0.054454 | -0.72514 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 45398 | 9.0777e-05 | 0.0018871 | -0.085478 | -0.97281 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27873 | 0.00015614 | 0.0018873 | -0.11682 | -0.95307 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14714 | 0.00021178 | 0.0018370 | -0.18198 | -0.86316 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31542 |-2.6738e-05 | 0.0018395 | -0.0081216 | -0.85344 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51086 |-3.1589e-05 | 0.0018741 | 0.020814 | -0.93423 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51576 | 8.0687e-05 | 0.0019060 | -0.051056 | -0.9928 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57851 | 0.0001782 | 0.0019347 | -0.10557 | -1.0335 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56564 | 0.00015491 | 0.0019303 | -0.057132 | -1.0463 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 67789 | 4.6661e-05 | 0.0019279 | -0.0039735 | -1.0468 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 66720 | 2.5059e-05 | 0.0019237 | -0.0084678 | -1.022 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 55416 | 2.3712e-05 | 0.0019013 | -0.020594 | -0.99349 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4080 | 0.0001268 | 0.0016175 | -0.12902 | -0.37362 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5372 | 0.00035328 | 0.0017747 | -0.2956 | -0.73465 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2959 | 0.00024854 | 0.0018128 | -0.20712 | -0.76517 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1599 | 0.00044336 | 0.0017564 | -0.29025 | -0.64953 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5516 | 0.00011645 | 0.0016543 | -0.078752 | -0.55598 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5883 | 0.00012003 | 0.0017659 | -0.062458 | -0.67065 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5659 | 0.00023533 | 0.0018003 | -0.074993 | -0.77847 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6253 | 0.00012463 | 0.0017837 | -0.062042 | -0.74749 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6770 | 9.6824e-05 | 0.0017828 | -0.042025 | -0.7724 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8577 | 4.26e-05 | 0.0017720 | -0.050331 | -0.76336 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8843 | 0.0001571 | 0.0017904 | -0.18788 | -0.7521 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8069 | 0.00023939 | 0.0017652 | -0.28098 | -0.69571 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22672 | 4.931e-05 | 0.0017401 | -0.072133 | -0.6593 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50770 | 0.00012341 | 0.0018755 | -0.11251 | -0.95297 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30832 | 0.00016635 | 0.0018794 | -0.12688 | -0.93483 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16313 | 0.00023807 | 0.0018295 | -0.19562 | -0.8425 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 37058 | 6.3186e-07 | 0.0018065 | -0.025741 | -0.802 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56969 | -1.149e-05 | 0.0018609 | 0.0082161 | -0.90458 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57235 | 9.992e-05 | 0.0018939 | -0.056452 | -0.96778 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64104 | 0.0001724 | 0.0019190 | -0.10063 | -1.0065 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63334 | 0.00014843 | 0.0019145 | -0.054467 | -1.0192 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 76366 | 4.6179e-05 | 0.0019101 | -0.0082666 | -1.0168 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75563 | 4.2701e-05 | 0.0019070 | -0.03155 | -0.99367 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63485 | 5.5597e-05 | 0.0018834 | -0.058212 | -0.96434 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49509 | 0.00011925 | 0.0019154 | -0.071247 | -1.0263 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49509 | 0.00011925 | 0.0019154 | -0.071247 | -1.0263 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 42021 | 0.00010636 | 0.0019383 | -0.056354 | -1.0672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7488 | 0.00018196 | 0.0017987 | -0.14468 | -0.79327 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 176 | 8.5114e-05 | 0.0018647 | -0.014636 | -0.98525 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4104 | 0.00017447 | 0.0019240 | -0.10621 | -1.0253 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1938 | -6.108e-05 | 0.0018585 | 0.015125 | -0.86978 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1333 |-9.8344e-05 | 0.0017513 | 0.15694 | -0.70067 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 250 | 0.0003045 | 0.0021359 | -0.11105 | -1.313 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 629 | 0.00021 | 0.0018228 | -0.2251 | -0.82838 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 839 | 0.00029159 | 0.0020413 | -0.2171 | -1.1852 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2889 | 0.00060085 | 0.0019047 | -0.36115 | -0.94533 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7077 | 0.00013831 | 0.0019243 | -0.05439 | -1.0908 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7874 |-5.9445e-07 | 0.0019908 | -0.014179 | -1.1346 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8144 | 8.7412e-05 | 0.0019480 | -0.027823 | -1.06 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6768 |-5.3928e-05 | 0.0019181 | 0.01396 | -1.0518 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8 |-0.00054833 | 0.0021418 | 0.23214 | -1.602 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 845 | 8.7539e-05 | 0.0017601 | -0.098062 | -0.74162 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 423 | 1.4391e-05 | 0.0018837 | -0.021573 | -0.88118 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 266 | 2.8099e-05 | 0.0015516 | 0.1 | -0.22591 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32 | 0.0010958 | 0.0011989 | -0.4185 | -0.6363 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 160 | 0.00037977 | 0.0017372 | -0.4721 | -0.45736 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 266 | 8.7901e-05 | 0.0018596 | -0.1281 | -0.83365 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 596 | 0.00059153 | 0.0017158 | -0.32676 | -0.65341 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1174 | 0.0002718 | 0.0018564 | -0.19588 | -0.86788 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1377 | 3.5371e-05 | 0.0018121 | -0.044365 | -0.89497 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1188 | 0.00024544 | 0.0018211 | -0.24353 | -0.78417 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1153 | 0.00010283 | 0.0017568 | -0.068958 | -0.71221 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 184 | 4.4681e-05 | 0.0018900 | -0.012234 | -1.0422 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4949 | 0.00015507 | 0.0018890 | -0.10084 | -0.96831 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2361 |-4.3952e-05 | 0.0018645 | 0.0071147 | -0.87273 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1599 |-7.5116e-05 | 0.0017171 | 0.14211 | -0.6289 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 282 | 0.00039553 | 0.0020655 | -0.19937 | -1.2164 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 789 | 0.00025463 | 0.0018023 | -0.28788 | -0.75196 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1105 | 0.00023243 | 0.0019924 | -0.18472 | -1.1026 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3485 | 0.00059921 | 0.0018727 | -0.35681 | -0.89797 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8251 | 0.00015812 | 0.0019150 | -0.075302 | -1.0636 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9251 | 5.3043e-06 | 0.0019627 | -0.019427 | -1.0982 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9332 | 0.00010702 | 0.0019334 | -0.053546 | -1.0347 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7921 | -2.506e-05 | 0.0018904 | -0.0044408 | -0.99902 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 664210 | 9.0789e-05 | 0.0018879 | -0.057698 | -0.96533 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 664210 | 9.0789e-05 | 0.0018879 | -0.057698 | -0.96533 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 587142 | 7.8401e-05 | 0.0019055 | -0.045528 | -0.99682 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 77068 | 0.00017128 | 0.0017671 | -0.13444 | -0.72491 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 664210 | 3.3945 | 1.8452 | -0.25037 | -1.1737 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 664210 | 0.024895 | 0.0055361 | -0.55986 | -0.60116 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 121 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137679 | 0.00013188 | 0.0029227 | -0.059931 | -0.96033 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137679 | 0.00013188 | 0.0029227 | -0.059931 | -0.96033 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137679 | 0.00013188 | 0.0029227 | -0.059931 | -0.96033 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4803 | 0.0001024 | 0.0027698 | -0.11911 | -0.77461 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 33 |-0.00014587 | 0.0018686 | -0.065427 | 0.40176 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 607 | 0.0010463 | 0.0027322 | -0.27948 | -0.70873 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5927 | 0.00017171 | 0.0027908 | 0.032081 | -0.80258 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41007 | 0.00031981 | 0.0029706 | -0.092015 | -0.99984 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 59305 |-9.3956e-05 | 0.0029362 | 0.0041607 | -0.99367 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25997 | 0.00025456 | 0.0028409 | -0.15686 | -0.86605 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4803 | 0.0001024 | 0.0027698 | -0.11911 | -0.77461 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 33 |-0.00014587 | 0.0018686 | -0.065427 | 0.40176 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 607 | 0.0010463 | 0.0027322 | -0.27948 | -0.70873 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5927 | 0.00017171 | 0.0027908 | 0.032081 | -0.80258 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41007 | 0.00031981 | 0.0029706 | -0.092015 | -0.99984 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 59305 |-9.3956e-05 | 0.0029362 | 0.0041607 | -0.99367 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 25997 | 0.00025456 | 0.0028409 | -0.15686 | -0.86605 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1008387 | 8.1896e-05 | 0.0029415 | -0.052242 | -0.96382 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1008387 | 8.1896e-05 | 0.0029415 | -0.052242 | -0.96382 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1008387 | 8.1896e-05 | 0.0029415 | -0.052242 | -0.96382 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1008387 | 3.0357 | 1.7164 | 0.13238 | -1.0127 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1008387 | 0.040683 | 0.011120 | -0.64111 | -0.46542 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 870708 | 7.3663e-05 | 0.0029445 | -0.050885 | -0.96446 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 870708 | 7.3663e-05 | 0.0029445 | -0.050885 | -0.96446 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 870708 | 7.3663e-05 | 0.0029445 | -0.050885 | -0.96446 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00041735 | 0.0027937 | -0.25108 | -0.56743 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 114 | 0.0011794 | 0.0024920 | -0.41675 | -0.55701 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 39176 | 0.00014209 | 0.0027850 | 0.014005 | -0.78745 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 423 | 0.0004675 | 0.0022390 | -0.49133 | 0.15274 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1295 | 0.00013874 | 0.0024474 | -0.19215 | -0.42856 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3444 | 0.00031411 | 0.0025982 | -0.19477 | -0.5589 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8391 | 0.00062501 | 0.0027257 | -0.35102 | -0.60198 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 83279 | 0.00059441 | 0.0028844 | -0.28729 | -0.83731 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269522 | 6.6026e-05 | 0.0029867 | -0.064828 | -1.008 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 272314 |-7.6833e-05 | 0.0029786 | -0.0024686 | -1.0045 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192709 |-9.5565e-05 | 0.0029134 | 0.056803 | -0.91769 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 41 | 0.00041735 | 0.0027937 | -0.25108 | -0.56743 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 114 | 0.0011794 | 0.0024920 | -0.41675 | -0.55701 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 39176 | 0.00014209 | 0.0027850 | 0.014005 | -0.78745 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 423 | 0.0004675 | 0.0022390 | -0.49133 | 0.15274 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1295 | 0.00013874 | 0.0024474 | -0.19215 | -0.42856 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 3444 | 0.00031411 | 0.0025982 | -0.19477 | -0.5589 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8391 | 0.00062501 | 0.0027257 | -0.35102 | -0.60198 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 83279 | 0.00059441 | 0.0028844 | -0.28729 | -0.83731 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269522 | 6.6026e-05 | 0.0029867 | -0.064828 | -1.008 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 272314 |-7.6833e-05 | 0.0029786 | -0.0024686 | -1.0045 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 192709 |-9.5565e-05 | 0.0029134 | 0.056803 | -0.91769 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 154280 | 7.7585e-05 | 0.0018793 | -0.05174 | -0.94772 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 154280 | 7.7585e-05 | 0.0018793 | -0.05174 | -0.94772 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 134911 | 6.6917e-05 | 0.0018985 | -0.037759 | -0.98248 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19369 | 0.00014053 | 0.0017607 | -0.13747 | -0.70626 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4402 | 4.1707e-05 | 0.0017390 | -0.042849 | -0.67421 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10487 | 7.2481e-05 | 0.0018651 | -0.057012 | -0.95011 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6666 | 4.1038e-05 | 0.0018800 | -0.061682 | -0.92723 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3613 | 0.00016325 | 0.0018512 | -0.1204 | -0.89807 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7488 | 2.34e-05 | 0.0018483 | -0.020325 | -0.84191 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12856 |-5.4557e-05 | 0.0018668 | 0.02257 | -0.93443 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13815 | 3.3521e-05 | 0.0018984 | -0.014062 | -0.98142 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15894 | 0.00012595 | 0.0019328 | -0.079537 | -1.0268 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15508 | 8.9898e-05 | 0.0019373 | -0.018309 | -1.0611 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16832 | 0.00012257 | 0.0019311 | -0.062407 | -1.04 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14868 | 3.0322e-05 | 0.0019109 | -0.0093983 | -1.0066 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12482 | 8.1303e-05 | 0.0018947 | -0.054252 | -0.97845 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1270 | 0.0002412 | 0.0015596 | -0.18981 | -0.2543 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1487 | 0.00024426 | 0.0017865 | -0.19615 | -0.8091 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 802 | 0.00022924 | 0.0018459 | -0.20364 | -0.78361 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 359 | 0.00061775 | 0.0018328 | -0.37836 | -0.63694 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1702 | 8.2697e-05 | 0.0016618 | -0.17703 | -0.50931 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1904 | 0.00011782 | 0.0017274 | -0.088289 | -0.59051 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1891 | 0.00016536 | 0.0017831 | -0.022892 | -0.75199 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1823 | 6.727e-05 | 0.0017834 | -0.042906 | -0.80179 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1700 | 0.00014639 | 0.0017958 | -0.06755 | -0.8092 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2086 | 3.0837e-06 | 0.0017676 | -0.09346 | -0.7075 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2275 | 6.3727e-05 | 0.0018191 | -0.18878 | -0.85313 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2070 | 0.00018158 | 0.0017592 | -0.29223 | -0.67997 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5672 | 9.317e-05 | 0.0016968 | -0.085976 | -0.58523 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11974 | 9.7544e-05 | 0.0018548 | -0.077897 | -0.93439 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7468 | 6.5449e-05 | 0.0018767 | -0.080242 | -0.91353 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3972 | 0.00021435 | 0.0018547 | -0.14761 | -0.88367 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9190 | 3.7104e-05 | 0.0018071 | -0.052042 | -0.77403 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14760 |-2.6228e-05 | 0.0018457 | 0.0020364 | -0.88832 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15706 | 5.4321e-05 | 0.0018813 | -0.018565 | -0.94758 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17717 | 0.00011872 | 0.0019152 | -0.074458 | -1.0016 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17208 | 9.6316e-05 | 0.0019218 | -0.024154 | -1.0356 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18918 | 0.00010957 | 0.0019143 | -0.062116 | -1.0078 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17143 | 3.5102e-05 | 0.0018981 | -0.032611 | -0.98719 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14552 | 9.6331e-05 | 0.0018753 | -0.086577 | -0.94326 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2414 | 0.000111 | 0.0018976 | -0.045817 | -1.012 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2414 | 0.000111 | 0.0018976 | -0.045817 | -1.012 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1971 | 9.9103e-05 | 0.0019116 | -0.031429 | -1.0374 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 443 | 0.00016113 | 0.0018370 | -0.10731 | -0.89149 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 238 | 2.7e-05 | 0.0019346 | -0.0065765 | -1.064 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101 |-0.00027479 | 0.0018276 | -0.090262 | -0.88556 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78 |-0.00063598 | 0.0013094 | 0.21919 | -0.28489 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15 | 0.001575 | 0.0016058 | -0.62033 | -1.0837 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 246 | 0.00027341 | 0.0018748 | -0.10033 | -1.1898 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 456 | 0.00016869 | 0.0020419 | -0.12704 | -1.2029 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 486 | 8.8303e-05 | 0.0019030 | -0.022855 | -0.89712 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 351 | 0.00014596 | 0.0018187 | 0.035993 | -0.98096 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 59 | 0.00019833 | 0.0018553 | -0.20173 | -0.79991 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13 | 0.00085944 | 0.0021108 | -0.25987 | -1.4584 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5 | -0.000483 | 0.0014178 | 0.92514 | -0.29923 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12 | 0.0014583 | 0.00092484 | -0.56337 | -0.51856 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 117 | 0.000404 | 0.0018095 | -0.18943 | -0.78169 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 122 |-0.00036346 | 0.0018110 | -0.0039794 | -1.0077 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 55 | -2.1e-05 | 0.0015680 | -0.19834 | -0.62975 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 60 | 0.000245 | 0.0018909 | 0.052062 | -1.1349 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 297 | 6.7971e-05 | 0.0019173 | -0.052768 | -1.015 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 114 | -9.25e-05 | 0.0019217 | -0.029552 | -0.93633 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83 |-0.00061935 | 0.0013225 | 0.31934 | -0.23609 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27 | 0.001525 | 0.0013577 | -0.60377 | -0.69041 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 363 | 0.00031736 | 0.0018541 | -0.13135 | -1.0653 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 578 | 6.7701e-05 | 0.0020110 | -0.083214 | -1.1694 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 541 | 7.9118e-05 | 0.0018774 | -0.027091 | -0.86688 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 411 | 0.00015984 | 0.0018293 | 0.040053 | -1.0026 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 156694 | 7.8148e-05 | 0.0018797 | -0.05162 | -0.94882 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 156694 | 7.8148e-05 | 0.0018797 | -0.05162 | -0.94882 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 136882 | 6.743e-05 | 0.0018987 | -0.037645 | -0.98335 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 19812 | 0.00014099 | 0.0017624 | -0.13665 | -0.7107 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 156694 | 3.4528 | 1.8531 | -0.30871 | -1.1558 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 156694 | 0.025033 | 0.0054654 | -0.59289 | -0.52691 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 899 | 33.662 | 22.289 | 0.18544 | -1.1003 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11519 | 50.92 | 18.851 | -0.25761 | -1.126 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 4716 | 37.596 | 23.276 | 0.042478 | -1.1676 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 178 | 18.454 | 13.610 | 0.64706 | -0.61063 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 3425 | 56.469 | 3.7515 | 0.29311 | -0.61309 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3415 | 36.242 | 10.061 | 0.11282 | -1.0147 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3425 | 55.542 | 3.6764 | 0.20341 | -0.59971 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3425 | 54.852 | 3.6628 | 0.12611 | -0.57575 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1240 | 23.233 | 14.913 | 0.19274 | -1.0546 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 949 | 227.22 | 158.90 | 0.25185 | -1.0632 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 11519 | 595.94 | 7.2809 | 1.7991 | 7.4748 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11519 | 371.29 | 136.34 | -0.25805 | -1.0936 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 11519 | 585.77 | 9.1076 | 0.65666 | 2.3397 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 11519 | 578.08 | 12.573 | 0.070216 | 0.015268 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 4902 | 261.8 | 168.48 | 0.085051 | -1.1644 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 191 | 110.22 | 86.547 | 0.67428 | -0.58051 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 3486 | 356.5 | 25.207 | 0.49893 | 0.0054738 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3486 | 229.31 | 62.750 | 0.12171 | -1.0047 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3486 | 350.67 | 24.510 | 0.41035 | -0.035056 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3486 | 346.38 | 24.433 | 0.33301 | -0.07494 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1340 | 138.59 | 96.527 | 0.23936 | -1.0816 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 3854 | 1057.4 | 17.539 | 1.7994 | 4.7908 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 3195 | 1943.8 | 131.70 | 0.34 | -0.18734 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 899 | 23.083 | 15.484 | 0.25692 | -0.98848 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 11519 | 58.62 | 3.6271 | -0.56684 | 1.9825 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 11519 | 36.137 | 13.890 | -0.18462 | -1.055 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 11519 | 57.588 | 3.6133 | -0.52768 | 1.8005 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 11519 | 56.823 | 3.6721 | -0.45604 | 1.487 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 4716 | 26.258 | 16.438 | 0.10547 | -1.0896 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 178 | 12.602 | 9.4306 | 0.65603 | -0.58111 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 3425 | 35.042 | 7.4687 | -0.80184 | -0.021875 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 3415 | 23.415 | 8.1703 | 0.078719 | -0.83194 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 3425 | 34.476 | 7.4030 | -0.81061 | -0.037077 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 3425 | 34.064 | 7.3620 | -0.81021 | -0.052384 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1240 | 15.83 | 10.305 | 0.23521 | -0.99778 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 53944 | -0.0029883 | 0.21301 | 0.011676 | -1.1114 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1013672 | -0.0025028 | 0.37497 | -1.8063 | 203.09 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 847552 | -0.0021129 | 0.26356 | -3.8557 | 180 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1013672 | -0.0025028 | 0.37497 | -1.8063 | 203.09 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1013672 | -0.0025028 | 0.37497 | -1.8063 | 203.09 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 298344 | -0.0037232 | 0.22520 | -0.010825 | -0.42666 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 9144 | 0.0062336 | 5.8446 | 0.89967 | 1.5834 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 305640 | -0.11034 | 7.1018 | 0.42258 | 1.1598 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 258672 | -0.0027971 | 6.3429 | 0.82822 | 0.81154 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 305640 | -0.11034 | 7.1018 | 0.42258 | 1.1598 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 305640 | -0.11034 | 7.1018 | 0.42258 | 1.1598 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 72064 | 0.001457 | 6.0985 | 0.88533 | 1.2864 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 17487413 | 0.11453 | 0.093642 | 1.0979 | 0.89494 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 13576965 | 0.065409 | 0.040081 | 1.2319 | 2.0795 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 12744094 | 1.3722 | 1.1553 | 7.8156 | 116.78 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 11745702 | 1.1559 | 0.49974 | 4.9051 | 42.618 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 8441008 | -11.865 | 232.28 | -0.002945 | 0.1683 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 8441008 | -1354.6 | 64.629 | -0.90026 | 0.49746 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 4967 | 864.2 | 278.05 | -0.66943 | 0.83891 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 4967 | 3521.7 | 1772.8 | 0.84089 | 4.1595 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 4292502 | 4.0739 | 4.4867 | 2.431 | 7.4424 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 4292502 | 4.0739 | 4.4867 | 2.431 | 7.4424 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 17487413 | -1.3447 | 230.57 | -0.033396 | 0.20561 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 17487413 | 4.2096 | 249.42 | -0.035819 | -0.76563 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 9046405 | 8.5077 | 229.28 | -0.060749 | 0.25326 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 9046405 | 1352.7 | 65.169 | 0.89177 | 0.47743 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 6977253 | 3904.7 | 84.185 | -0.1207 | -0.93279 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 6977253 | 11.186 | 262.07 | 0.011018 | 0.23389 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 6599712 | -3902.6 | 81.960 | 0.12976 | -0.84898 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 6599712 | 11.834 | 268.02 | 0.0074412 | 0.1424 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 4967 | 866.58 | 210.49 | -1.9608 | 4.6431 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 4967 | 2733.9 | 1253.7 | 0.20397 | -0.1695 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 2809151 | 3.2064 | 2.3697 | 1.557 | 3.158 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 1495156 | 3.0563 | 2.3065 | 1.7983 | 4.6462 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 4304307 | 3.1543 | 2.3491 | 1.6369 | 3.6305 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 13576965 | 9.5372 | 461.28 | -0.034265 | -1.5245 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 13576965 | 11.391 | 264.75 | 0.010668 | 0.18304 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 5548239 | 0.051896 | 0.00051333 | -0.29428 | -1.1021 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 5548239 | 0.052294 | 0.0066453 | -0.0058512 | -0.98963 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 5548239 | 8.7423e-05 | 0.0029734 | -0.050331 | -0.99741 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 4110892 | 8.0095e-05 | 0.0029760 | -0.048382 | -0.99837 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 66792 | 0.00014462 | 0.0029570 | -0.077 | -0.97257 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 927705 | 0.00011334 | 0.0029630 | -0.05448 | -0.99841 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 442850 | 9.0666e-05 | 0.0029731 | -0.055137 | -0.98996 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 664210 | 0.029276 | 0.00023043 | -0.074602 | -1.1436 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 664210 | 0.028136 | 0.0041237 | -0.21788 | -1.0171 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 664210 | 9.0838e-05 | 0.0018879 | -0.057683 | -0.96494 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 491094 | 8.9631e-05 | 0.0018815 | -0.053607 | -0.9542 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 12520 | 0.00010473 | 0.0019087 | -0.066028 | -1.0342 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 139077 | 9.0619e-05 | 0.0019090 | -0.07099 | -0.99491 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 21519 | 0.00011109 | 0.0018905 | -0.06066 | -0.98085 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 11519 | 972 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 11519 | 2040 | 12.007 | 0.71862 | 2.2475 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 11519 | 1074.2 | 13.050 | 1.8158 | 8.0912 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 3486 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 3486 | 11443 | 129.16 | 0.3595 | -0.36693 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 3486 | 1952.7 | 137.61 | 0.50558 | 0.0034303 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 4967 | 2.3191 | 1.8296 | 1.0505 | 1.5545 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 4967 | 2.3245 | 1.8327 | 1.0482 | 1.5375 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 872 | 56764 | 14349. | 0.78695 | -0.044918 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 11492 | 19097 | 10753. | 2.6723 | 9.614 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11492 | 22167 | 12154. | 2.251 | 6.571 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11492 | 19185 | 10808. | 2.6553 | 9.4792 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11492 | 19253 | 10849. | 2.6424 | 9.3782 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4689 | 34184 | 14341. | 1.6032 | 2.6472 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 151 | 78816 | 9828.7 | 0.37295 | -0.97376 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 3398 | 31181 | 12624. | 2.0562 | 4.8016 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3388 | 34156 | 14009. | 1.6851 | 2.9349 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3398 | 31269 | 12677. | 2.0426 | 4.7249 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3398 | 31336 | 12717. | 2.0324 | 4.6671 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1213 | 51751 | 14828. | 0.92156 | 0.25539 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 922 | 56451 | 14397. | 0.79251 | -0.031174 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 11492 | 19097 | 10753. | 2.6723 | 9.614 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11492 | 22095 | 12132. | 2.2573 | 6.6136 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11492 | 19184 | 10807. | 2.6555 | 9.4811 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11492 | 19251 | 10848. | 2.6428 | 9.3816 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4875 | 33977 | 14321. | 1.6114 | 2.6886 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 164 | 78535 | 9914.4 | 0.37657 | -0.95186 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 3459 | 31058 | 12550. | 2.0742 | 4.9088 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3459 | 33956 | 13922. | 1.7067 | 3.0365 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3459 | 31144 | 12603. | 2.0607 | 4.8313 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3459 | 31211 | 12643. | 2.0504 | 4.773 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1313 | 51437 | 14831. | 0.93562 | 0.28914 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 872 | 56778 | 14362. | 0.77991 | -0.063886 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 11492 | 19097 | 10749. | 2.6742 | 9.6427 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 11492 | 22168 | 12155. | 2.253 | 6.5914 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 11492 | 19185 | 10804. | 2.6571 | 9.5079 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 11492 | 19253 | 10846. | 2.6443 | 9.4068 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 4689 | 34174 | 14346. | 1.6074 | 2.6668 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 151 | 78915 | 9796.3 | 0.35817 | -0.98187 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 3398 | 31791 | 12987. | 1.955 | 4.2453 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 3388 | 34567 | 14213. | 1.6321 | 2.6922 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 3398 | 31882 | 13038. | 1.9422 | 4.1763 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 3398 | 31951 | 13077. | 1.9324 | 4.1244 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1213 | 51773 | 14810. | 0.91808 | 0.25466 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 53944 |-3.9029e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1013672 |-9.0596e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 847552 | 5.3322e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1013672 |-9.0596e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1013672 |-9.0596e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 298344 |-2.9331e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 51840 | 1.0949 | 0.91709 | 0.33386 | -0.56216 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 51206 | 0.049237 | 0.0066982 | -2.5752 | 6.4669 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 9144 |-9.8268e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 305640 |-4.7286e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 258672 |-2.5532e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 305640 |-4.7286e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 305640 |-4.7286e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 72064 | -5.506e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 15374 | 1.1536 | 0.96506 | 0.36995 | -0.56753 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 14782 | 0.027878 | 0.0033817 | -2.2791 | 4.685 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12417500 | 24.724 | 231.87 | -0.030375 | 0.1822 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 11920800 | 31.811 | 251.55 | -0.030105 | -0.73974 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12417500 | 24.724 | 231.87 | -0.030375 | 0.1822 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12417500 | 31.862 | 253.29 | -0.037774 | -0.8454 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12417500 | 41.898 | 460.77 | -0.035023 | -1.5221 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12417500 | 41.963 | 226.16 | 0.020102 | 0.87851 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12417500 | 38.437 | 465.77 | -0.02166 | -1.5218 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12417500 | 40.155 | 321.61 | 0.021614 | -0.7874 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 11546 | 1.4738 | 0.53169 | 0.33463 | -0.49102 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 11546 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 3642 | 0.24321 | 0.096462 | -0.24793 | -0.92772 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 11519 | 19093 | 10784. | 2.6478 | 9.4768 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 11523 | 1326.1 | 837.87 | 2.6005 | 9.9893 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref index 4755903d7fec8da7eea2b5ca8ed37e30f63b6964..6de7ef73be285cbd1fb4d4eb02b25f5abbba2d76 100644 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref @@ -5,8 +5,8 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_ab47e101 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 893 | 18734 | 20.979 | - | "nTracksSelected" | 893 | 18734 | 20.979 | + | "nTracksInput" | 893 | 20127 | 22.539 | + | "nTracksSelected" | 893 | 20127 | 22.539 | DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 1000 | @@ -16,21 +16,21 @@ HLTControlFlowMgr INFO Number of counters : 1 | "Processed events" | 1000 | PrForwardTrackingVelo_5399212b INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 892 | 93999 | 105.38 | - | "Created long tracks" | 892 | 1006 | 1.1278 | + | "Accepted input tracks" | 892 | 97582 | 109.40 | + | "Created long tracks" | 892 | 1018 | 1.1413 | | "Empty input tracks" | 1 | - | "Input tracks" | 892 | 99463 | 111.51 | - | "Number of candidate bins per track" | 93999 | 49035 | 0.52165 | 1.1843 | 0.0000 | 19.000 | - | "Number of complete candidates/track 1st Loop" | 25485 | 769 | 0.030175 | 0.17244 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 24929 | 252 | 0.010109 | 0.10043 | 0.0000 | 2.0000 | - | "Number of x candidates per track 1st Loop" | 25485 | 5689 | 0.22323 | 0.48719 | - | "Number of x candidates per track 2nd Loop" | 24929 | 19437 | 0.77969 | 1.0419 | - | "Percentage second loop execution" | 25485 | 24929 | 0.97818 | - | "Removed duplicates" | 892 | 12 | 0.013453 | + | "Input tracks" | 892 | 102351 | 114.74 | + | "Number of candidate bins per track" | 97582 | 50641 | 0.51896 | 1.1767 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 26427 | 777 | 0.029402 | 0.16982 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 25864 | 266 | 0.010285 | 0.10127 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 26427 | 5931 | 0.22443 | 0.48841 | + | "Number of x candidates per track 2nd Loop" | 25864 | 20116 | 0.77776 | 1.0392 | + | "Percentage second loop execution" | 26427 | 25864 | 0.97870 | + | "Removed duplicates" | 892 | 23 | 0.025785 | PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 609 | 2440 | 4.0066 | - | "#tracks with hits added" | 609 | + | "#UT hits added" | 622 | 2509 | 4.0338 | + | "#tracks with hits added" | 622 | PrHybridSeeding_46e539c7 INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Created T2x1 three-hit combinations in case 0" | 449086 | 251724 | 0.56053 | 0.54375 | 0.0000 | 3.0000 | @@ -56,32 +56,32 @@ PrHybridSeeding_46e539c7 INFO Number of counters : 21 | "Created two-hit combinations in case 2" | 243181 | 1454820 | 5.9825 | 4.6459 | 0.0000 | 83.000 | PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 137 | - | "chi2 cut" | 343 | - | "nIterations" | 1006 | 2336 | 2.3221 | - | "nOutlierIterations" | 869 | 912 | 1.0495 | - | "nTracksInput" | 893 | 1006 | 1.1265 | - | "nTracksOutput" | 893 | 526 | 0.58903 | + | "Pre outlier chi2 cut" | 143 | + | "chi2 cut" | 336 | + | "nIterations" | 1018 | 2352 | 2.3104 | + | "nOutlierIterations" | 875 | 905 | 1.0343 | + | "nTracksInput" | 893 | 1018 | 1.1400 | + | "nTracksOutput" | 893 | 539 | 0.60358 | PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 216 | - | "chi2 cut" | 4072 | - | "nIterations" | 18734 | 37786 | 2.0170 | - | "nOutlierIterations" | 18518 | 17156 | 0.92645 | - | "nTracksInput" | 893 | 18734 | 20.979 | - | "nTracksOutput" | 893 | 14446 | 16.177 | + | "Pre outlier chi2 cut" | 262 | + | "chi2 cut" | 3829 | + | "nIterations" | 20127 | 40631 | 2.0187 | + | "nOutlierIterations" | 19865 | 16630 | 0.83715 | + | "nTracksInput" | 893 | 20127 | 22.539 | + | "nTracksOutput" | 893 | 16036 | 17.957 | PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | PrMatchNN_959da4d3 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 888 | 227202.3 | 255.86 | - | "#MatchingMLP" | 26109 | 23292.25 | 0.89212 | - | "#MatchingTracks" | 888 | 18734 | 21.097 | + | "#MatchingChi2" | 888 | 237546 | 267.51 | + | "#MatchingMLP" | 27987 | 24947.9 | 0.89141 | + | "#MatchingTracks" | 888 | 20127 | 22.666 | PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 14812 | 59997 | 4.0506 | - | "#tracks with hits added" | 14812 | + | "#UT hits added" | 15008 | 60882 | 4.0566 | + | "#tracks with hits added" | 15008 | PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Empty Long tracks" | 10 | @@ -119,32 +119,32 @@ PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | PrTrackAssociator_825c239a INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Efficiency" | 14483 | 13893 |( 95.92626 +- 0.1642617)% | - | "MC particles per track" | 13893 | 16252 | 1.1698 | + |*"Efficiency" | 15086 | 14485 |( 96.01617 +- 0.1592338)% | + | "MC particles per track" | 14485 | 16950 | 1.1702 | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | RiMCOpticalPhotonsLong INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Charge mis-match between reco track and matched MCParticle"| 272938 | 2 |(0.0007327671 +- 0.0005181427)% | + |*"Charge mis-match between reco track and matched MCParticle"| 276723 | 2 |(0.0007227444 +- 0.0005110556)% | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 893 | 4037155 | 4520.9 | 4087.3 | 0.0000 | 22184. | - | "# Rich1Gas Segments" | 893 | 8921 | 9.9899 | 6.1403 | 0.0000 | 35.000 | - | "# Rich2Gas Photons" | 893 | 1170955 | 1311.3 | 1200.3 | 0.0000 | 7025.0 | - | "# Rich2Gas Segments" | 893 | 4851 | 5.4323 | 3.6598 | 0.0000 | 20.000 | - | "# Selected Tracks" | 893 | 11367 | 12.729 | 7.3209 | 0.0000 | 36.000 | - |*"RICH selection efficiency" | 14483 | 11367 |( 78.48512 +- 0.3414553)% | + | "# Rich1Gas Photons" | 893 | 4100282 | 4591.6 | 4201.6 | 0.0000 | 22117. | + | "# Rich1Gas Segments" | 893 | 9015 | 10.095 | 6.3028 | 0.0000 | 37.000 | + | "# Rich2Gas Photons" | 893 | 1466871 | 1642.6 | 1454.5 | 0.0000 | 8164.0 | + | "# Rich2Gas Segments" | 893 | 5943 | 6.6551 | 4.2447 | 0.0000 | 23.000 | + | "# Selected Tracks" | 893 | 12230 | 13.695 | 7.8447 | 0.0000 | 39.000 | + |*"RICH selection efficiency" | 15086 | 12230 |( 81.06854 +- 0.3189563)% | TBTCMatch_e6402d48 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 13963 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 13963 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 13963 | + |*"BadInput" | 14573 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 14573 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 14573 | TBTC_Forward_c95b0b3d INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 520 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 520 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 520 | + |*"BadInput" | 513 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 513 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 513 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# Converted Clusters" | 893 | 837869 | 938.26 | @@ -187,1233 +187,1342 @@ VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | - | "Nb of Produced Tracks" | 893 | 187333 | 209.78 | + | "Nb of Produced Tracks" | 893 | 190113 | 212.89 | RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3934989 | 5.9218e-05 | 0.0013711 | -0.046583 | -0.97253 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 2998562 | 5.7886e-05 | 0.0013669 | -0.046252 | -0.96486 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3383354 | 5.5594e-05 | 0.0013931 | -0.047969 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3383354 | 5.5594e-05 | 0.0013931 | -0.047969 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3689306 | 8.6575e-06 | 0.0015275 |-0.00046091 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2786587 | 1.2104e-06 | 0.0015270 | 0.0065575 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3137675 | 2.118e-05 | 0.0015280 | -0.014545 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3137675 | 2.118e-05 | 0.0015280 | -0.014545 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245683 | 0.00014929 | 0.0010292 | 0.011709 | -0.50996 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211975 | 0.00015705 | 0.0010209 | 0.016262 | -0.50474 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245683 | 0.00014929 | 0.0010292 | 0.011709 | -0.50996 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245679 | 0.00012861 | 0.0010475 | -0.020908 | -0.48903 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245679 | 0.00012861 | 0.0010475 | -0.020908 | -0.48903 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3689306 | 3.1325 | 1.8198 | 0.010199 | -1.195 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245683 | 3.1259 | 1.8119 | 0.013544 | -1.1892 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3689306 | 0.040422 | 0.010707 | -0.58816 | -0.41138 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245683 | 0.049951 | 0.0047073 | -3.5134 | 14.344 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1310098 | 1.6681e-05 | 0.0010193 | -0.001311 | -0.82421 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1081122 | 1.4737e-05 | 0.0010172 | 0.0011424 | -0.8164 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1121184 | 1.3624e-05 | 0.0010422 | -0.0040716 | -0.89357 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1121184 | 1.3624e-05 | 0.0010422 | -0.0040716 | -0.89357 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1209596 | 2.02e-05 | 0.0011532 | -0.012328 | -1.1997 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 989336 | 1.7142e-05 | 0.0011528 | -0.0076166 | -1.1993 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1020682 | 2.8877e-05 | 0.0011582 | -0.026615 | -1.211 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1020682 | 2.8877e-05 | 0.0011582 | -0.026615 | -1.211 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | 8.7241e-06 | 0.00061755 | 0.066148 | 0.17414 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91786 | 9.3483e-06 | 0.00061285 | 0.063534 | 0.20059 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85328 | 4.5584e-06 | 0.00060839 | 0.072549 | 0.25036 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15174 | 3.1854e-05 | 0.00066563 | 0.021341 | -0.18991 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | -2.59e-05 | 0.00065021 | -0.066488 | 0.23776 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | -2.59e-05 | 0.00065021 | -0.066488 | 0.23776 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1209596 | 3.1511 | 1.8136 | -0.0087359 | -1.1873 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100502 | 3.1465 | 1.8161 | -0.0026331 | -1.2019 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1209596 | 0.024678 | 0.0054893 | -0.44562 | -0.66454 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100502 | 0.028818 | 0.0022808 | -3.1777 | 12.133 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3980250 | 6.7735e-05 | 0.0013509 | -0.058914 | -0.91189 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 3042978 | 6.6455e-05 | 0.0013465 | -0.059637 | -0.90269 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3429717 | 5.6518e-05 | 0.0013789 | -0.055621 | -0.96887 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3429717 | 5.6518e-05 | 0.0013789 | -0.055621 | -0.96887 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3731912 | 9.7791e-06 | 0.0015339 | 0.00060062 | -1.2591 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2829130 | 2.8844e-06 | 0.0015330 | 0.0073787 | -1.2586 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3181384 | 2.3009e-05 | 0.0015335 | -0.01635 | -1.2582 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3181384 | 2.3009e-05 | 0.0015335 | -0.01635 | -1.2582 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248338 | 0.00017172 | 0.00092783 | 0.068782 | -0.33255 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 213848 | 0.00017862 | 0.00091955 | 0.071962 | -0.329 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248338 | 0.00017172 | 0.00092783 | 0.068782 | -0.33255 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248333 | 0.00012773 | 0.00096802 | -0.031424 | -0.25894 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248333 | 0.00012773 | 0.00096802 | -0.031424 | -0.25894 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3731912 | 3.1362 | 1.8170 | 0.0060679 | -1.1908 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 248338 | 3.1314 | 1.8210 | 0.0072853 | -1.1975 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3731912 | 0.04053 | 0.010659 | -0.59793 | -0.38877 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 248338 | 0.050047 | 0.0045504 | -3.7006 | 15.945 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1650565 | 1.7262e-05 | 0.0010207 | -0.0015966 | -0.82929 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1370269 | 1.5528e-05 | 0.0010187 |-9.6542e-05 | -0.82144 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1411634 | 9.728e-06 | 0.0010474 | -0.0033461 | -0.90824 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1411634 | 9.728e-06 | 0.0010474 | -0.0033461 | -0.90824 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1524458 | 2.2964e-05 | 0.0011536 | -0.017443 | -1.2019 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1256251 | 1.9982e-05 | 0.0011533 | -0.013278 | -1.2013 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1285527 | 3.1063e-05 | 0.0011581 | -0.030816 | -1.2112 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1285527 | 3.1063e-05 | 0.0011581 | -0.030816 | -1.2112 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126107 | 4.1192e-06 | 0.00061297 | 0.080159 | 0.18246 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 114018 | 5.3922e-06 | 0.00061003 | 0.074406 | 0.20456 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 108729 | 7.8473e-07 | 0.00060638 | 0.085127 | 0.2447 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 17378 | 2.4754e-05 | 0.00065189 | 0.04223 | -0.15263 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126107 |-4.7168e-05 | 0.00066465 | -0.13561 | 0.25268 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126107 |-4.7168e-05 | 0.00066465 | -0.13561 | 0.25268 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1524458 | 3.1748 | 1.8175 | -0.031378 | -1.1865 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 126107 | 3.1435 | 1.8170 |-0.00042478 | -1.204 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1524458 | 0.024652 | 0.0055241 | -0.45629 | -0.64735 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 126107 | 0.028777 | 0.0023565 | -3.0627 | 11.46 | RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 107329 | 0.00047518 | 0.0028637 | -0.22781 | -0.81612 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00022406 | 0.0020902 | 0.20779 | 0.36336 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 |-0.00012492 | 0.0023201 | 0.19826 | 0.017093 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8738 | 6.8824e-05 | 0.0025528 | 0.024537 | -0.37448 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29856 | 0.0003011 | 0.0026996 | -0.10223 | -0.58724 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142267 | 0.00040858 | 0.0028909 | -0.12598 | -0.85785 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 456881 | 7.6255e-05 | 0.0029829 | -0.021627 | -0.98999 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 512505 |-2.2285e-05 | 0.0029763 | 0.016652 | -0.98061 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 364155 | 1.1267e-05 | 0.0029414 | -0.027196 | -0.93854 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 107329 | 0.00047518 | 0.0028637 | -0.22781 | -0.81612 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00022406 | 0.0020902 | 0.20779 | 0.36336 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 |-0.00012492 | 0.0023201 | 0.19826 | 0.017093 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8738 | 6.8824e-05 | 0.0025528 | 0.024537 | -0.37448 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29856 | 0.0003011 | 0.0026996 | -0.10223 | -0.58724 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142267 | 0.00040858 | 0.0028909 | -0.12598 | -0.85785 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 456881 | 7.6255e-05 | 0.0029829 | -0.021627 | -0.98999 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 512505 |-2.2285e-05 | 0.0029763 | 0.016652 | -0.98061 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 364155 | 1.1267e-05 | 0.0029414 | -0.027196 | -0.93854 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3383354 | 3.132 | 1.8193 | 0.010429 | -1.1946 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3383354 | 0.041239 | 0.010669 | -0.69368 | -0.32387 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126966 | 0.00024309 | 0.0028941 | -0.049143 | -0.87948 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1078 | 0.00038721 | 0.0021951 | -0.41598 | 0.66553 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2702 | 0.00032223 | 0.0024640 | -0.22531 | -0.17415 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6921 | 0.00034162 | 0.0025744 | -0.12193 | -0.43364 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 26101 | 0.00048206 | 0.0026830 | -0.3057 | -0.53826 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142020 | 0.00058742 | 0.0028807 | -0.27017 | -0.81093 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487764 | 0.00017928 | 0.0029847 | -0.096693 | -1.0004 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 552849 | 6.9477e-06 | 0.0029861 | -0.0095319 | -1.0034 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 410915 | -9.344e-05 | 0.0029498 | 0.063684 | -0.94991 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126966 | 0.00024309 | 0.0028941 | -0.049143 | -0.87948 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1078 | 0.00038721 | 0.0021951 | -0.41598 | 0.66553 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2702 | 0.00032223 | 0.0024640 | -0.22531 | -0.17415 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6921 | 0.00034162 | 0.0025744 | -0.12193 | -0.43364 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 26101 | 0.00048206 | 0.0026830 | -0.3057 | -0.53826 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142020 | 0.00058742 | 0.0028807 | -0.27017 | -0.81093 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487764 | 0.00017928 | 0.0029847 | -0.096693 | -1.0004 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 552849 | 6.9477e-06 | 0.0029861 | -0.0095319 | -1.0034 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 410915 | -9.344e-05 | 0.0029498 | 0.063684 | -0.94991 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 568180 | 5.1492e-05 | 0.0018627 | -0.019762 | -0.91847 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 568180 | 5.1492e-05 | 0.0018627 | -0.019762 | -0.91847 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 533781 | 4.2992e-05 | 0.0018751 | -0.014696 | -0.94324 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34399 | 0.00015677 | 0.0016981 | -0.063528 | -0.54868 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5955 | 1.7095e-05 | 0.0017884 | 0.0041819 | -0.77845 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15195 | 0.00036399 | 0.0018198 | -0.17497 | -0.85412 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4346 | 0.00026886 | 0.0018471 | -0.14153 | -0.84935 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1910 | 8.007e-05 | 0.0017410 | -0.0085557 | -0.62921 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12995 | 6.6571e-05 | 0.0018212 | 0.033493 | -0.87406 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32154 | 0.00010028 | 0.0018672 | -0.021103 | -0.93455 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57682 | 8.7216e-05 | 0.0018671 | -0.035288 | -0.92661 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 87578 | -1.219e-05 | 0.0018629 | 0.01771 | -0.90525 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 97504 |-4.2443e-05 | 0.0018856 | 0.031118 | -0.94745 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101407 |-5.3498e-05 | 0.0018998 | 0.029768 | -0.98941 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 77974 | 8.3453e-05 | 0.0018837 | -0.05404 | -0.97431 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39081 | 0.00016348 | 0.0018608 | -0.072889 | -0.92606 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 894 | 0.00011823 | 0.0016748 | -0.007199 | -0.51688 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1326 | 9.9142e-05 | 0.0017407 | -0.076359 | -0.64476 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 709 | 5.6399e-05 | 0.0017856 | -0.045142 | -0.67289 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 393 | 0.00011408 | 0.0015566 | 0.038851 | -0.073996 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1443 | 5.842e-05 | 0.0016852 | 0.003769 | -0.49845 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2676 | 0.00018232 | 0.0017168 | -0.084423 | -0.57559 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3626 | 0.00018336 | 0.0017293 | -0.1296 | -0.6051 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4920 | 0.00015728 | 0.0016971 | -0.057315 | -0.53693 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5996 | 0.00017559 | 0.0016766 | -0.032998 | -0.50206 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5918 | 0.00014242 | 0.0017159 | -0.078646 | -0.56012 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4031 | 0.00021739 | 0.0016976 | -0.10391 | -0.58456 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2467 | 0.0001136 | 0.0016177 | 0.03174 | -0.47507 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6849 | 3.2988e-05 | 0.0017714 |-0.00015767 | -0.74084 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16521 | 0.00034206 | 0.0018149 | -0.16473 | -0.84101 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5055 | 0.00023463 | 0.0018390 | -0.12401 | -0.82661 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2303 | 8.6993e-05 | 0.0017051 | -0.0032632 | -0.53337 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14438 | 6.5642e-05 | 0.0018062 | 0.03097 | -0.83699 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34830 | 0.00010796 | 0.0018538 | -0.027583 | -0.90603 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61308 | 9.3882e-05 | 0.0018581 | -0.041999 | -0.90786 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92498 |-6.2739e-07 | 0.0018525 | 0.010815 | -0.88457 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103500 |-2.5229e-05 | 0.0018708 | 0.022158 | -0.91909 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 107325 | -3.968e-05 | 0.0018881 | 0.02028 | -0.96588 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 82005 | 9.1158e-05 | 0.0018737 | -0.058382 | -0.95533 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41548 | 0.00016029 | 0.0018462 | -0.06728 | -0.902 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 553004 | 6.3556e-05 | 0.0018577 | -0.024801 | -0.90391 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 553004 | 6.3556e-05 | 0.0018577 | -0.024801 | -0.90391 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 521989 | 5.4994e-05 | 0.0018692 | -0.020798 | -0.92669 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31015 | 0.0001791 | 0.0016910 | -0.052398 | -0.53965 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1393 | 0.00011954 | 0.0018233 | 0.029771 | -0.7526 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30321 | 9.4002e-05 | 0.0018699 | -0.021434 | -0.90613 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11682 | 0.00013837 | 0.0017865 | -0.036857 | -0.76438 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5143 | -2.148e-05 | 0.0018231 | -0.0093256 | -0.82114 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3553 | 0.00024471 | 0.0018059 | -0.094505 | -0.86292 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14642 | 0.00038245 | 0.0018323 | -0.17156 | -0.87007 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41223 | 0.00015549 | 0.0018775 | -0.065651 | -0.94583 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78361 | 8.2378e-05 | 0.0018882 | -0.035129 | -0.97301 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 99916 |-3.4575e-05 | 0.0018808 | 0.01704 | -0.95994 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 96383 |-3.4213e-05 | 0.0018825 | 0.0226 | -0.93828 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86021 | 3.4807e-06 | 0.0018534 | -0.0068685 | -0.89637 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53351 | 0.00012866 | 0.0018395 | -0.046181 | -0.87057 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 336 |-5.4946e-05 | 0.0014953 | 0.014414 | -0.27254 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2439 | 0.00026405 | 0.0017462 | -0.11672 | -0.59663 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1334 | 5.2329e-05 | 0.0017139 | 0.072638 | -0.61489 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 958 | 4.1025e-05 | 0.0016202 | 0.014639 | -0.31412 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 556 | 0.00028353 | 0.0015553 | 0.0082304 | -0.51383 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1339 | 4.6253e-05 | 0.0016937 | 0.081186 | -0.53178 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2186 | 0.00016316 | 0.0016811 | -0.048857 | -0.49902 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3611 | 0.00019906 | 0.0017245 | -0.06939 | -0.6216 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5148 | 0.00014872 | 0.0016586 | -0.074462 | -0.48518 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5218 | 0.00022047 | 0.0017107 | -0.071731 | -0.58006 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4381 | 0.00024486 | 0.0016664 | -0.10074 | -0.4837 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3509 | 0.0001446 | 0.0017054 | -0.0098841 | -0.5449 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1729 | 8.0487e-05 | 0.0017567 | 0.045987 | -0.64537 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32760 | 0.00010859 | 0.0018602 | -0.030918 | -0.88414 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13016 | 0.00012868 | 0.0017787 | -0.024661 | -0.75013 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6101 |-1.0327e-05 | 0.0017887 | -0.0095216 | -0.74445 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4109 | 0.00025064 | 0.0017700 | -0.086488 | -0.80996 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15981 | 0.00035281 | 0.0018230 | -0.14698 | -0.85553 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43409 | 0.00015592 | 0.0018670 | -0.065146 | -0.92486 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 81972 | 8.848e-05 | 0.0018802 | -0.038054 | -0.95721 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 105064 | -2.287e-05 | 0.0018680 | 0.0090366 | -0.9361 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101601 |-1.5716e-05 | 0.0018717 | 0.012645 | -0.91744 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 90402 | 1.8416e-05 | 0.0018433 | -0.015459 | -0.876 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 56860 | 0.00012973 | 0.0018309 | -0.044475 | -0.85145 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1121184 | 5.7452e-05 | 0.0018603 | -0.022267 | -0.91132 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1121184 | 5.7452e-05 | 0.0018603 | -0.022267 | -0.91132 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1055770 | 4.894e-05 | 0.0018722 | -0.017735 | -0.93509 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 65414 | 0.00016736 | 0.0016948 | -0.058365 | -0.54419 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1121184 | 3.1507 | 1.8138 | -0.0082221 | -1.1885 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1121184 | 0.025076 | 0.0054059 | -0.58356 | -0.54745 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1589730 | 0.00011502 | 0.0029471 | -0.04862 | -0.94715 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1589730 | 0.00011502 | 0.0029471 | -0.04862 | -0.94715 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1589730 | 0.00011502 | 0.0029471 | -0.04862 | -0.94715 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00080544 | 0.0013714 | 1.0728 | 1.7334 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 248 | 0.00025629 | 0.0021415 | -0.27438 | 0.40004 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 110683 | 0.00032245 | 0.0028645 | -0.11157 | -0.83938 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 968 | 0.00021767 | 0.0021102 | -0.013809 | 0.32869 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2685 | 0.00017881 | 0.0023030 | -0.18799 | 0.15978 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8716 | 0.00024309 | 0.0025247 | -0.1137 | -0.32133 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28417 | 0.0003128 | 0.0027087 | -0.11155 | -0.60992 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133475 | 0.00044573 | 0.0028770 | -0.1561 | -0.84658 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 442274 | 0.00013151 | 0.0029888 | -0.055936 | -0.99471 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 503664 | 2.8866e-06 | 0.0029811 | -0.0081083 | -0.99501 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 358534 |-2.5938e-05 | 0.0029379 | 0.0025848 | -0.93592 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00080544 | 0.0013714 | 1.0728 | 1.7334 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 248 | 0.00025629 | 0.0021415 | -0.27438 | 0.40004 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 110683 | 0.00032245 | 0.0028645 | -0.11157 | -0.83938 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 968 | 0.00021767 | 0.0021102 | -0.013809 | 0.32869 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2685 | 0.00017881 | 0.0023030 | -0.18799 | 0.15978 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8716 | 0.00024309 | 0.0025247 | -0.1137 | -0.32133 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28417 | 0.0003128 | 0.0027087 | -0.11155 | -0.60992 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133475 | 0.00044573 | 0.0028770 | -0.1561 | -0.84658 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 442274 | 0.00013151 | 0.0029888 | -0.055936 | -0.99471 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 503664 | 2.8866e-06 | 0.0029811 | -0.0081083 | -0.99501 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 358534 |-2.5938e-05 | 0.0029379 | 0.0025848 | -0.93592 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3429717 | 0.00011214 | 0.0029490 | -0.047895 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3429717 | 0.00011214 | 0.0029490 | -0.047895 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3429717 | 0.00011214 | 0.0029490 | -0.047895 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3429717 | 3.1359 | 1.8173 | 0.0061487 | -1.1912 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3429717 | 0.041345 | 0.010618 | -0.7048 | -0.29823 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1839987 | 0.00010964 | 0.0029506 | -0.047264 | -0.94733 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1839987 | 0.00010964 | 0.0029506 | -0.047264 | -0.94733 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1839987 | 0.00010964 | 0.0029506 | -0.047264 | -0.94733 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304 | 1.462e-05 | 0.0023724 | -0.10926 | 0.34335 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 129524 | 0.00035266 | 0.0028878 | -0.14418 | -0.85114 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1074 | 0.00025875 | 0.0021603 | -0.16487 | 0.64919 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2764 | 0.00022069 | 0.0024378 | -0.17138 | -0.14018 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7237 | 0.00028072 | 0.0025490 | -0.082996 | -0.34426 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27350 | 0.00026639 | 0.0026471 | -0.062984 | -0.52254 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 153264 | 0.00047412 | 0.0028795 | -0.15329 | -0.84326 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 517783 | 9.4495e-05 | 0.0029823 | -0.033971 | -0.98856 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 573469 | 2.8451e-06 | 0.0029811 | -0.012316 | -0.98977 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 427199 |-2.3211e-05 | 0.0029457 | -0.0072656 | -0.94434 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304 | 1.462e-05 | 0.0023724 | -0.10926 | 0.34335 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 129524 | 0.00035266 | 0.0028878 | -0.14418 | -0.85114 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1074 | 0.00025875 | 0.0021603 | -0.16487 | 0.64919 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2764 | 0.00022069 | 0.0024378 | -0.17138 | -0.14018 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7237 | 0.00028072 | 0.0025490 | -0.082996 | -0.34426 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27350 | 0.00026639 | 0.0026471 | -0.062984 | -0.52254 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 153264 | 0.00047412 | 0.0028795 | -0.15329 | -0.84326 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 517783 | 9.4495e-05 | 0.0029823 | -0.033971 | -0.98856 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 573469 | 2.8451e-06 | 0.0029811 | -0.012316 | -0.98977 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 427199 |-2.3211e-05 | 0.0029457 | -0.0072656 | -0.94434 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 768126 | 5.0229e-05 | 0.0018690 | -0.020268 | -0.92976 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 768126 | 5.0229e-05 | 0.0018690 | -0.020268 | -0.92976 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 728738 | 4.2618e-05 | 0.0018797 | -0.016491 | -0.95118 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39388 | 0.0001592 | 0.0017045 | -0.051442 | -0.56391 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7393 |-0.00011346 | 0.0017868 | 0.061594 | -0.76531 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17265 | 0.00039011 | 0.0018205 | -0.18643 | -0.86153 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4526 | 0.00028533 | 0.0018457 | -0.14652 | -0.8464 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1865 | 0.00012497 | 0.0017635 | -0.017974 | -0.67357 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18337 | 0.00017733 | 0.0018371 | -0.03571 | -0.9035 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 48302 | 6.6101e-05 | 0.0018747 | -0.012967 | -0.94833 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 85763 | 6.939e-05 | 0.0018719 | -0.028651 | -0.92759 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 123086 |-1.2898e-05 | 0.0018658 | 0.014604 | -0.91476 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 136338 |-6.2788e-05 | 0.0018884 | 0.04172 | -0.95494 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 140683 |-3.2995e-05 | 0.0019006 | 0.020034 | -0.99181 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 97515 | 0.00011153 | 0.0018868 | -0.071484 | -0.97701 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 47665 | 0.00017039 | 0.0018664 | -0.082302 | -0.93192 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1131 | 0.00013711 | 0.0016597 | 0.018734 | -0.4964 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1360 | 0.00012348 | 0.0017368 | -0.07836 | -0.62345 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 744 | 0.00010672 | 0.0017402 | -0.071996 | -0.62665 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 385 | 9.4456e-05 | 0.0015342 | 0.029698 | -0.019319 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1798 | 6.5e-05 | 0.0016655 | -0.0096298 | -0.44853 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3455 | 0.00015728 | 0.0017494 | -0.054041 | -0.69065 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4537 | 0.0002046 | 0.0017314 | -0.09174 | -0.59514 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5941 | 0.0001984 | 0.0017017 | -0.051042 | -0.53407 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6837 | 0.00017382 | 0.0016858 | -0.030854 | -0.52425 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6323 | 0.00014465 | 0.0017325 | -0.065604 | -0.5987 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4244 | 0.00014632 | 0.0016991 | -0.078783 | -0.59318 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2633 | 0.00012367 | 0.0016226 | 0.0071106 | -0.47941 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8524 |-6.9482e-05 | 0.0017678 | 0.046807 | -0.72336 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18625 | 0.00037034 | 0.0018158 | -0.1765 | -0.84848 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5270 | 0.00025651 | 0.0018303 | -0.13161 | -0.81679 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2250 | 0.00011869 | 0.0017189 | -0.0088404 | -0.56361 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20135 | 0.00016613 | 0.0018210 | -0.03075 | -0.86591 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51757 | 7.3744e-05 | 0.0018647 | -0.017277 | -0.92915 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 90300 | 7.7624e-05 | 0.0018639 | -0.033526 | -0.91041 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129027 | 5.2805e-07 | 0.0018566 | 0.0080093 | -0.89484 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 143175 |-4.6476e-05 | 0.0018761 | 0.033185 | -0.93126 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 147006 |-2.3239e-05 | 0.0018922 | 0.013966 | -0.97448 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101759 | 0.00011321 | 0.0018781 | -0.07228 | -0.96108 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50298 | 0.00016773 | 0.0018534 | -0.077978 | -0.91042 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 643508 | 4.9966e-05 | 0.0018665 | -0.01568 | -0.92551 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 643508 | 4.9966e-05 | 0.0018665 | -0.01568 | -0.92551 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 608810 | 4.0496e-05 | 0.0018765 | -0.011863 | -0.94477 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34698 | 0.00018167 | 0.0017155 | -0.04031 | -0.61672 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1075 | 2.8841e-05 | 0.0017567 | 0.070269 | -0.61583 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 44899 | 9.1596e-05 | 0.0018710 | -0.031063 | -0.91694 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14871 | 0.0002305 | 0.0017962 | -0.088556 | -0.79081 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6179 |-6.4008e-05 | 0.0017951 | 0.035878 | -0.79577 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2439 | 0.00026925 | 0.0017692 | -0.10515 | -0.75748 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9077 | 0.00040931 | 0.0018301 | -0.20084 | -0.85945 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30942 | 0.00025232 | 0.0018720 | -0.11545 | -0.94653 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78555 | 0.00017925 | 0.0018803 | -0.087369 | -0.96958 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119045 |-4.8824e-05 | 0.0018943 | 0.030211 | -0.98355 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 115763 |-8.3457e-05 | 0.0018871 | 0.049377 | -0.95223 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 107551 |-4.0559e-05 | 0.0018692 | 0.023775 | -0.92304 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78414 | 4.2263e-05 | 0.0018547 | 0.00097169 | -0.90341 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 253 | 3.5507e-06 | 0.0014769 | -0.010505 | -0.30682 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3230 | 0.00017255 | 0.0017236 | -0.051879 | -0.64041 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1455 | 0.00013738 | 0.0017278 | 0.097535 | -0.66106 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 925 |-5.9138e-05 | 0.0016303 | 0.07315 | -0.40795 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 447 | 0.00020985 | 0.0015671 | -0.024799 | -0.39489 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1032 | 0.00015069 | 0.0016739 | 0.1105 | -0.54884 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1902 | 0.00013508 | 0.0016974 | -0.073152 | -0.51705 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3201 | 0.00022253 | 0.0017344 | -0.064771 | -0.67626 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5431 | 0.00018054 | 0.0016820 | -0.030903 | -0.54455 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6115 | 0.00026839 | 0.0017283 | -0.067627 | -0.62474 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5913 | 0.00018445 | 0.0017206 | -0.082981 | -0.61095 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4794 | 0.00013863 | 0.0017555 | -0.028711 | -0.72345 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1328 | 2.3063e-05 | 0.0016969 | 0.061045 | -0.53292 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 48129 | 9.7984e-05 | 0.0018600 | -0.033834 | -0.89727 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16326 | 0.00022163 | 0.0017900 | -0.07159 | -0.78189 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7104 |-6.3328e-05 | 0.0017730 | 0.039798 | -0.7485 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2886 | 0.00025875 | 0.0017353 | -0.091619 | -0.70027 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10109 | 0.00038095 | 0.0018154 | -0.16699 | -0.84346 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32844 | 0.00024525 | 0.0018622 | -0.11165 | -0.92557 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 81756 | 0.00018107 | 0.0018744 | -0.087063 | -0.95854 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 124476 |-3.5836e-05 | 0.0018837 | 0.02365 | -0.96352 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121878 |-5.8017e-05 | 0.0018783 | 0.036889 | -0.93423 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 113464 |-2.4446e-05 | 0.0018599 | 0.014082 | -0.90524 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83208 | 4.8754e-05 | 0.0018484 | -0.0017633 | -0.89222 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1411634 | 5.0108e-05 | 0.0018678 | -0.018165 | -0.92781 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1411634 | 5.0108e-05 | 0.0018678 | -0.018165 | -0.92781 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1337548 | 4.1644e-05 | 0.0018782 | -0.01437 | -0.94825 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 74086 | 0.00016967 | 0.0017097 | -0.046072 | -0.58858 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1411634 | 3.1721 | 1.8175 | -0.028779 | -1.188 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1411634 | 0.025048 | 0.0054401 | -0.59191 | -0.52805 | RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 246 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48075 | 0.00052892 | 0.0028303 | -0.25452 | -0.73993 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 887 |-0.00023285 | 0.0020883 | 0.20102 | 0.32463 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 |-0.00011587 | 0.0023319 | 0.19263 | -0.012882 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8392 | 6.5802e-05 | 0.0025586 | 0.02233 | -0.37972 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27082 | 0.0002893 | 0.0026989 | -0.098256 | -0.59112 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 106473 | 0.00029534 | 0.0028798 | -0.091471 | -0.84657 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 259802 | 4.0862e-05 | 0.0029700 | -0.0088878 | -0.97009 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 280393 |-7.5135e-06 | 0.0029616 | 0.0065441 | -0.96453 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 186621 | 7.3273e-05 | 0.0029252 | -0.051509 | -0.9135 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 246 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48075 | 0.00052892 | 0.0028303 | -0.25452 | -0.73993 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 887 |-0.00023285 | 0.0020883 | 0.20102 | 0.32463 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 |-0.00011587 | 0.0023319 | 0.19263 | -0.012882 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8392 | 6.5802e-05 | 0.0025586 | 0.02233 | -0.37972 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27082 | 0.0002893 | 0.0026989 | -0.098256 | -0.59112 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 106473 | 0.00029534 | 0.0028798 | -0.091471 | -0.84657 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 259802 | 4.0862e-05 | 0.0029700 | -0.0088878 | -0.97009 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 280393 |-7.5135e-06 | 0.0029616 | 0.0065441 | -0.96453 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 186621 | 7.3273e-05 | 0.0029252 | -0.051509 | -0.9135 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1885107 | 3.1362 | 1.8179 | 0.006381 | -1.1915 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1885107 | 0.041237 | 0.010679 | -0.6944 | -0.32926 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 275 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 55020 | 0.000275 | 0.0028525 | -0.044536 | -0.82406 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1035 | 0.0003956 | 0.0021841 | -0.42896 | 0.71376 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2548 | 0.00034376 | 0.0024610 | -0.247 | -0.15941 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6499 | 0.00032427 | 0.0026009 | -0.12252 | -0.46853 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23372 | 0.00048735 | 0.0026811 | -0.31127 | -0.53068 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106109 | 0.00046643 | 0.0028868 | -0.22813 | -0.83736 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269307 | 0.00014583 | 0.0029769 | -0.082978 | -0.98906 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 294376 |-6.2287e-06 | 0.0029749 | -0.0018243 | -0.98523 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 205885 |-3.9098e-05 | 0.0029257 | 0.045277 | -0.92231 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 275 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 55020 | 0.000275 | 0.0028525 | -0.044536 | -0.82406 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1035 | 0.0003956 | 0.0021841 | -0.42896 | 0.71376 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2548 | 0.00034376 | 0.0024610 | -0.247 | -0.15941 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6499 | 0.00032427 | 0.0026009 | -0.12252 | -0.46853 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23372 | 0.00048735 | 0.0026811 | -0.31127 | -0.53068 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106109 | 0.00046643 | 0.0028868 | -0.22813 | -0.83736 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269307 | 0.00014583 | 0.0029769 | -0.082978 | -0.98906 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 294376 |-6.2287e-06 | 0.0029749 | -0.0018243 | -0.98523 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 205885 |-3.9098e-05 | 0.0029257 | 0.045277 | -0.92231 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 162013 | 4.029e-05 | 0.0018576 | -0.0073823 | -0.91305 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 162013 | 4.029e-05 | 0.0018576 | -0.0073823 | -0.91305 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 146340 | 3.2154e-05 | 0.0018753 | -0.0021288 | -0.94893 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15673 | 0.00010423 | 0.0017112 | -0.039169 | -0.57766 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3394 |-9.2587e-06 | 0.0017722 | 0.037181 | -0.7518 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5408 | 0.00017478 | 0.0018190 | -0.071408 | -0.8334 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2535 | 0.00021566 | 0.0018437 | -0.1139 | -0.87299 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1328 | 3.1829e-05 | 0.0017385 | -0.016666 | -0.62616 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7624 | 7.1083e-05 | 0.0018221 | 0.024722 | -0.8842 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14352 |-5.8347e-05 | 0.0018446 | 0.073457 | -0.88917 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19105 | -5.344e-05 | 0.0018627 | 0.039416 | -0.90996 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22011 |-4.4746e-06 | 0.0018843 | 0.015707 | -0.95188 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24891 | 3.0114e-05 | 0.0019017 | -0.015037 | -0.99342 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23765 | 7.2018e-05 | 0.0019084 | -0.031731 | -1.015 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13308 | 0.00012873 | 0.0018946 | -0.063461 | -0.99155 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8619 | 3.4925e-05 | 0.0018718 | -0.0099985 | -0.95429 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 382 | 0.000175 | 0.0017988 | -0.092569 | -0.62071 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 883 | 0.00012783 | 0.0017588 | -0.091473 | -0.68576 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 523 |-0.00012149 | 0.0018348 | 0.077884 | -0.71325 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 291 | 0.0001337 | 0.0015940 | 0.032012 | -0.1769 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 684 |-5.2809e-05 | 0.0016836 | 0.070944 | -0.53335 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1439 | 0.00022711 | 0.0017136 | -0.09399 | -0.58662 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1629 | 0.00014828 | 0.0017157 | -0.093693 | -0.62577 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1918 | 0.00012608 | 0.0017099 | -0.089973 | -0.56798 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2191 | 9.8613e-05 | 0.0016890 | 0.03175 | -0.52605 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2402 | 8.3048e-05 | 0.0017381 | -0.057601 | -0.56477 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1955 | 0.00010834 | 0.0017298 | -0.056304 | -0.67158 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1376 | 3.4381e-05 | 0.0015750 | 0.076545 | -0.37301 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3776 | 1.0702e-05 | 0.0017760 | 0.023511 | -0.74028 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6291 | 0.00016754 | 0.0018100 | -0.073587 | -0.8116 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3058 | 0.00014719 | 0.0018469 | -0.074526 | -0.85456 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1619 | 5.4143e-05 | 0.0017084 | -0.013049 | -0.53832 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8308 | 5.9488e-05 | 0.0018099 | 0.030767 | -0.856 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15791 |-2.6247e-05 | 0.0018325 | 0.051668 | -0.86578 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20734 |-3.2329e-05 | 0.0018489 | 0.023629 | -0.88675 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23929 | 8.4875e-06 | 0.0018681 | 0.0043257 | -0.92089 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27082 | 3.6636e-05 | 0.0018826 | -0.013864 | -0.95598 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26167 | 7.304e-05 | 0.0018933 | -0.033871 | -0.98039 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15263 | 0.00012567 | 0.0018708 | -0.061989 | -0.94911 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9995 | 3.4841e-05 | 0.0018294 | -0.0015297 | -0.8804 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 167664 | 5.3989e-05 | 0.0018479 | -0.005442 | -0.88753 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 167664 | 5.3989e-05 | 0.0018479 | -0.005442 | -0.88753 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 153280 | 4.5193e-05 | 0.0018665 | -0.0018115 | -0.92411 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14384 | 0.00013207 | 0.0016719 | -0.015779 | -0.49827 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1072 |-3.1943e-05 | 0.0017901 | 0.095846 | -0.68073 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15346 |-6.1556e-05 | 0.0018381 | 0.085486 | -0.84668 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6814 | 0.00018558 | 0.0017620 | -0.031866 | -0.73969 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2504 |-1.1418e-05 | 0.0018114 | 0.0072925 | -0.78571 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2043 | 0.00020083 | 0.0017671 | -0.076191 | -0.76341 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4914 | 0.00014613 | 0.0018039 | -0.054201 | -0.79069 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8317 | 5.9217e-05 | 0.0018831 | -0.028125 | -0.91447 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13612 | 0.00028824 | 0.0018887 | -0.14989 | -0.95472 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27371 | 6.3441e-05 | 0.0018881 | -0.027986 | -0.97902 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27508 |-2.8377e-05 | 0.0018884 | 0.025203 | -0.97145 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 23846 | 2.873e-05 | 0.0018672 | 0.0015586 | -0.92605 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19933 | -4.59e-05 | 0.0018645 | 0.076523 | -0.90942 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 257 | 1.4097e-05 | 0.0014755 | 0.15757 | -0.1918 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1397 | 0.00024224 | 0.0017227 | -0.10391 | -0.58441 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 793 | 1.6894e-05 | 0.0016946 | 0.19714 | -0.56692 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 471 |-4.9918e-05 | 0.0015764 | -0.020351 | -0.056494 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 373 | 0.00029155 | 0.0015301 | 0.069882 | -0.32007 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 835 |-3.5216e-06 | 0.0016535 | 0.16911 | -0.42777 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1162 | 0.00016137 | 0.0016981 | 0.0072794 | -0.55663 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1601 | 9.6941e-05 | 0.0016675 | -0.064442 | -0.55134 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1968 | 6.2833e-05 | 0.0016544 | -0.084352 | -0.47244 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1966 | 0.00013986 | 0.0016927 | -0.022084 | -0.52304 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1863 | 0.00020914 | 0.0016659 | -0.10691 | -0.44451 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1698 | 0.00019226 | 0.0016790 | 0.027174 | -0.52421 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1329 | -2.093e-05 | 0.0017202 | 0.10089 | -0.56667 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16743 |-3.1509e-05 | 0.0018292 | 0.064444 | -0.83092 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7607 | 0.00016741 | 0.0017557 | -0.0076149 | -0.72903 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2975 | -1.828e-05 | 0.0017719 | 0.0062696 | -0.68311 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2416 | 0.00021693 | 0.0017277 | -0.064436 | -0.68846 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5749 | 0.00012135 | 0.0017808 | -0.018937 | -0.74581 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9479 | 7.4322e-05 | 0.0018573 | -0.028137 | -0.86644 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15213 | 0.00026418 | 0.0018634 | -0.13467 | -0.91456 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29339 | 6.3397e-05 | 0.0018722 | -0.030815 | -0.94922 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29474 |-1.4594e-05 | 0.0018737 | 0.018355 | -0.94147 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 25709 | 4.5473e-05 | 0.0018502 | -0.010844 | -0.89108 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21631 |-2.4432e-05 | 0.0018498 | 0.067188 | -0.88078 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 329677 | 4.7298e-05 | 0.0018527 | -0.0064551 | -0.90003 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 329677 | 4.7298e-05 | 0.0018527 | -0.0064551 | -0.90003 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 299620 | 3.8867e-05 | 0.0018708 | -0.0020153 | -0.9362 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 30057 | 0.00011771 | 0.0016923 | -0.028823 | -0.53923 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 329677 | 3.1615 | 1.8141 | -0.016772 | -1.1889 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 329677 | 0.02531 | 0.0052902 | -0.62529 | -0.45832 | -RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 882539 | 0.00010442 | 0.0029333 | -0.041968 | -0.92768 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 882539 | 0.00010442 | 0.0029333 | -0.041968 | -0.92768 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 882539 | 0.00010442 | 0.0029333 | -0.041968 | -0.92768 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 215 | 0.00023397 | 0.0022056 | -0.24566 | 0.34934 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54775 | 0.00033109 | 0.0028512 | -0.10568 | -0.81916 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 842 | 0.00019707 | 0.0021317 | 0.025823 | 0.23137 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2398 | 0.00018881 | 0.0023476 | -0.16318 | 0.069517 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7473 | 0.00021611 | 0.0025054 | -0.089267 | -0.3079 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22948 | 0.00029013 | 0.0027192 | -0.10546 | -0.63064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 86730 | 0.00034715 | 0.0028650 | -0.12799 | -0.8334 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 242357 | 0.00012357 | 0.0029820 | -0.052221 | -0.98427 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 276811 |-1.0809e-05 | 0.0029763 |-1.1346e-05 | -0.98409 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 187951 | -1.978e-05 | 0.0029247 | 0.0097791 | -0.91618 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 215 | 0.00023397 | 0.0022056 | -0.24566 | 0.34934 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54775 | 0.00033109 | 0.0028512 | -0.10568 | -0.81916 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 842 | 0.00019707 | 0.0021317 | 0.025823 | 0.23137 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2398 | 0.00018881 | 0.0023476 | -0.16318 | 0.069517 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7473 | 0.00021611 | 0.0025054 | -0.089267 | -0.3079 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22948 | 0.00029013 | 0.0027192 | -0.10546 | -0.63064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 86730 | 0.00034715 | 0.0028650 | -0.12799 | -0.8334 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 242357 | 0.00012357 | 0.0029820 | -0.052221 | -0.98427 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 276811 |-1.0809e-05 | 0.0029763 |-1.1346e-05 | -0.98409 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 187951 | -1.978e-05 | 0.0029247 | 0.0097791 | -0.91618 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2066446 | 0.00010086 | 0.0029365 | -0.042273 | -0.93031 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2066446 | 0.00010086 | 0.0029365 | -0.042273 | -0.93031 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2066446 | 0.00010086 | 0.0029365 | -0.042273 | -0.93031 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2066446 | 3.1375 | 1.8062 | 0.0041634 | -1.1751 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2066446 | 0.041425 | 0.010573 | -0.71393 | -0.27493 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1183907 | 9.8203e-05 | 0.0029389 | -0.042489 | -0.93227 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1183907 | 9.8203e-05 | 0.0029389 | -0.042489 | -0.93227 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1183907 | 9.8203e-05 | 0.0029389 | -0.042489 | -0.93227 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304 | 1.462e-05 | 0.0023724 | -0.10926 | 0.34335 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 69897 | 0.00036972 | 0.0028719 | -0.14299 | -0.83379 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1069 | 0.00024196 | 0.0021521 | -0.16654 | 0.67732 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2726 | 0.00023054 | 0.0024534 | -0.17715 | -0.16278 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7058 | 0.00027006 | 0.0025447 | -0.085457 | -0.33559 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25722 | 0.00026775 | 0.0026410 | -0.056693 | -0.52269 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126059 | 0.0003642 | 0.0028780 | -0.11564 | -0.84965 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 335375 | 5.0369e-05 | 0.0029835 | -0.021941 | -0.98767 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 359279 |-1.4509e-05 | 0.0029760 | -0.0051257 | -0.98107 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 256399 | 2.1007e-05 | 0.0029320 | -0.020035 | -0.92692 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304 | 1.462e-05 | 0.0023724 | -0.10926 | 0.34335 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 69897 | 0.00036972 | 0.0028719 | -0.14299 | -0.83379 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1069 | 0.00024196 | 0.0021521 | -0.16654 | 0.67732 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2726 | 0.00023054 | 0.0024534 | -0.17715 | -0.16278 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7058 | 0.00027006 | 0.0025447 | -0.085457 | -0.33559 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25722 | 0.00026775 | 0.0026410 | -0.056693 | -0.52269 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126059 | 0.0003642 | 0.0028780 | -0.11564 | -0.84965 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 335375 | 5.0369e-05 | 0.0029835 | -0.021941 | -0.98767 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 359279 |-1.4509e-05 | 0.0029760 | -0.0051257 | -0.98107 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 256399 | 2.1007e-05 | 0.0029320 | -0.020035 | -0.92692 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 377738 | 5.3651e-05 | 0.0018664 | -0.020761 | -0.92254 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 377738 | 5.3651e-05 | 0.0018664 | -0.020761 | -0.92254 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 348259 | 4.5657e-05 | 0.0018833 | -0.016615 | -0.95557 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29479 | 0.00012728 | 0.0017019 | -0.043197 | -0.55957 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5315 |-8.2524e-05 | 0.0017927 | 0.013711 | -0.74754 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12235 | 0.00025716 | 0.0018110 | -0.10718 | -0.84401 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4271 | 0.00028183 | 0.0018408 | -0.1487 | -0.83618 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1807 | 0.00010009 | 0.0017408 | -0.02174 | -0.64206 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11541 | 0.00014435 | 0.0018476 | -0.028698 | -0.90818 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27803 | 1.5845e-05 | 0.0018652 | 0.010411 | -0.93067 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41000 | 4.7792e-05 | 0.0018773 | -0.015972 | -0.93915 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 53673 | 1.8499e-05 | 0.0018847 | -0.0068902 | -0.94684 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 60693 |-2.5765e-05 | 0.0019081 | 0.022937 | -0.98649 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64256 |-3.0937e-07 | 0.0019090 | 0.0061783 | -1.0025 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41029 | 0.00010748 | 0.0018885 | -0.065522 | -0.97702 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24636 | 9.381e-05 | 0.0018620 | -0.031703 | -0.93943 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 970 | 0.00014576 | 0.0016460 | 0.010914 | -0.49717 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1258 | 0.00012049 | 0.0017488 | -0.085153 | -0.65434 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 676 | 5.1011e-05 | 0.0017329 | -0.056758 | -0.62648 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 301 | 9.0185e-05 | 0.0015055 | 0.07418 | 0.010481 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1430 | 7.3918e-05 | 0.0016725 |-0.00092304 | -0.40617 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2533 | 0.00016284 | 0.0017544 | -0.057583 | -0.69784 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3228 | 0.00017739 | 0.0017667 | -0.10687 | -0.6536 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4048 | 0.00019511 | 0.0017028 | -0.041745 | -0.55185 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4728 | 8.8265e-05 | 0.0016773 | -0.0097888 | -0.51899 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4714 | 4.6288e-05 | 0.0017242 | -0.024202 | -0.56087 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3346 | 0.0001864 | 0.0016782 | -0.10409 | -0.56268 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2247 | 9.3762e-05 | 0.0015898 | 0.035091 | -0.41918 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6285 | -3.569e-05 | 0.0017660 | 0.003194 | -0.69713 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13493 | 0.00024359 | 0.0018054 | -0.10377 | -0.82668 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4947 | 0.00024485 | 0.0018259 | -0.13002 | -0.80951 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2108 | 9.8367e-05 | 0.0017022 | -0.0096239 | -0.54935 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12971 | 0.00013543 | 0.0018265 | -0.023672 | -0.85592 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30336 | 3.1084e-05 | 0.0018545 | 0.0018998 | -0.90971 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 44228 | 5.9372e-05 | 0.0018681 | -0.024773 | -0.91766 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57721 | 3.5772e-05 | 0.0018684 | -0.014088 | -0.9139 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 65421 |-1.4641e-05 | 0.0018871 | 0.017035 | -0.94883 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 68970 | 3.6242e-06 | 0.0018941 | 0.0031835 | -0.97162 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 44375 | 0.00011458 | 0.0018707 | -0.070321 | -0.94526 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26883 | 9.3805e-05 | 0.0018378 | -0.027655 | -0.89782 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 299455 | 3.9092e-05 | 0.0018699 | -0.0088257 | -0.93289 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 299455 | 3.9092e-05 | 0.0018699 | -0.0088257 | -0.93289 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 278305 | 2.9145e-05 | 0.0018833 | -0.0051081 | -0.95844 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21150 | 0.00014372 | 0.0017184 | -0.023732 | -0.62232 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 478 |-1.3146e-05 | 0.0018401 | 0.035483 | -0.70668 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26077 | 7.4639e-05 | 0.0018637 | -0.028282 | -0.90523 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7737 | 0.00026032 | 0.0017980 | -0.10149 | -0.80762 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3278 |-0.00016429 | 0.0017814 | 0.11704 | -0.78453 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1044 | 0.00016989 | 0.0018138 | -0.049132 | -0.91384 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2842 | 0.00029299 | 0.0018784 | -0.14791 | -0.95591 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9795 | 0.0002231 | 0.0018590 | -0.10016 | -0.93107 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28500 | 0.00029552 | 0.0018922 | -0.16102 | -0.97726 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 55172 |-2.5598e-05 | 0.0018988 | 0.022568 | -0.99448 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53021 |-0.00011728 | 0.0018938 | 0.072575 | -0.96506 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49032 |-4.3583e-05 | 0.0018849 | 0.027611 | -0.95013 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41329 |-3.4416e-05 | 0.0018591 | 0.039974 | -0.91025 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78 |-0.00041794 | 0.0015672 | 0.013302 | -0.89116 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1896 | 0.00016788 | 0.0017420 | -0.055646 | -0.70396 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 751 | 0.00017598 | 0.0018036 | 0.082524 | -0.83863 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 485 | -0.0001728 | 0.0016511 | 0.11795 | -0.57376 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 161 |-4.0765e-05 | 0.0016911 | -0.064936 | -0.65158 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 407 | 0.00022743 | 0.0017356 | 0.034344 | -0.7018 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 990 | 0.00014158 | 0.0017172 | -0.12703 | -0.48573 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1886 | 0.00017196 | 0.0017341 | -0.040849 | -0.68084 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3332 | 0.00013665 | 0.0016843 | 0.012952 | -0.54332 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4049 | 0.0002085 | 0.0017098 | -0.04956 | -0.57043 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4097 | 0.00011309 | 0.0017145 | -0.034753 | -0.60491 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3018 | 0.0001191 | 0.0017247 | -0.013557 | -0.66623 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 556 |-7.0732e-05 | 0.0018094 | 0.055531 | -0.6945 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27973 | 8.2002e-05 | 0.0018546 | -0.03147 | -0.89042 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8488 | 0.00025203 | 0.0017987 | -0.083299 | -0.81344 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3763 |-0.00016546 | 0.0017641 | 0.1175 | -0.75681 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1205 | 0.00013814 | 0.0017974 | -0.045182 | -0.87568 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3249 | 0.0002833 | 0.0018581 | -0.1241 | -0.92458 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10785 | 0.0002156 | 0.0018466 | -0.10055 | -0.89642 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30386 | 0.00028738 | 0.0018824 | -0.15292 | -0.96178 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 58504 |-1.4561e-05 | 0.0018855 | 0.018608 | -0.96888 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 57070 |-8.4186e-05 | 0.0018785 | 0.054467 | -0.9352 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53129 |-2.6734e-05 | 0.0018679 | 0.018229 | -0.91876 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 44347 |-2.1964e-05 | 0.0018490 | 0.033862 | -0.89288 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 677193 | 4.7201e-05 | 0.0018680 | -0.015478 | -0.9272 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 677193 | 4.7201e-05 | 0.0018680 | -0.015478 | -0.9272 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 626564 | 3.8292e-05 | 0.0018833 | -0.011482 | -0.95692 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 50629 | 0.00013408 | 0.0017088 | -0.034875 | -0.58569 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 677193 | 3.1959 | 1.8138 | -0.048259 | -1.1828 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 677193 | 0.025091 | 0.0054260 | -0.60468 | -0.49786 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 850 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 44634 | 0.034053 | 0.011743 | -0.35459 | -1.0567 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41354 | 1.4802 | 0.10982 | -0.33322 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30781 | 1.6982 | 0.19151 | -0.10335 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37656 | 1.6272 | -0.038101 | -0.33405 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3559 | 0.40268 | 0.21591 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.067105 | 1.8455 | -0.015785 | -0.303 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40083 | 1.4810 | 0.19451 | -0.11868 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17885 | 1.6677 | -0.0094296 | -0.5545 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28648 | 1.5501 | 0.27167 | -0.26379 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12105 | 1.5357 | 0.14197 | -0.38564 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17881 | 1.5171 | 0.22882 | -0.40567 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75556 | 1.5767 | 0.13413 | -0.6617 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10405 | 2.0853 | 0.0013962 | -1.159 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 900047 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13222 | 1.7393 | 0.23727 | -0.9569 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53794 | 1.3882 | 0.098124 | -0.6461 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.13108 | 1.1665 | 0.12187 | -1.1392 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081863 | 1.4200 | 0.32646 | -0.049255 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12284 | 1.3806 | 0.28142 | 0.0080634 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.15119 | 1.5163 | 0.21243 | -0.28537 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.097429 | 1.5984 | 0.21461 | -0.25587 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.21201 | 1.6958 | 0.074181 | -0.42664 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.149 | 1.6527 | 0.17768 | -0.3137 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21449 | 1.6167 | 0.12506 | -0.2631 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24364 | 1.4704 | 0.20206 | -0.25098 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.21713 | 1.5568 | 0.1858 | -0.12206 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17414 | 1.5223 | 0.1299 | -0.15439 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27181 | 1.5534 | 0.13553 | -0.22511 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.086966 | 1.6893 | 0.15081 | -0.40573 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12663 | 1.6032 | 0.15408 | -0.21379 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19733 | 1.6076 | 0.08175 | -0.27337 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23926 | 1.6377 | 0.12939 | -0.16968 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.2879 | 1.6100 | 0.07258 | -0.24934 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15256 | 1.5991 | 0.18919 | -0.15372 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24288 | 1.6693 | 0.064346 | -0.42772 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30011 | 1.7230 | 0.13649 | -0.58897 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32913 | 1.7872 | 0.078516 | -0.46435 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16402 | 1.6101 | 0.13848 | -0.14658 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.078603 | 1.6275 | 0.18969 | -0.1718 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24408 | 1.6735 | 0.10915 | -0.25883 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 436 | 0.3149 | 1.6427 | 0.26075 | -0.34036 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31495 | 1.7099 | 0.31525 | -0.26773 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.2288 | 1.6139 | 0.095902 | -0.21735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20535 | 1.6557 | -0.03898 | -0.52565 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32079 | 1.6266 | 0.18544 | -0.41092 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.36269 | 1.5751 | -0.029637 | -0.31216 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25551 | 1.6284 | 0.29198 | -0.19735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.2954 | 1.7015 | 0.17292 | -0.31655 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.38153 | 1.5021 | 0.13731 | -0.12473 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50318 | 1.5185 | 0.12362 | -0.8527 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016667 | 1.7620 | 0.25013 | -0.38515 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.67733 | 1.8470 | -0.21219 | -0.14925 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6902 | 0.16529 | -0.57033 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29745 | 1.7234 | 0.12926 | -0.38707 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.014615 | 1.4612 | 0.53561 | 0.3768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50467 | 1.6435 | 0.098456 | -0.66506 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.061957 | 1.4045 | -0.080063 | -0.70991 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.042308 | 1.4186 | 0.9014 | 0.19789 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.195 | 1.5848 | 0.05333 | -0.62788 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98333 | 1.4874 | 0.043743 | -0.72483 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.27727 | 1.5883 | 0.64925 | -0.13121 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23203 | 1.5403 | -0.073266 | -0.23165 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 900047 | 0.0009885 | 0.00019062 | 0.54306 | -0.88199 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 900047 | 0.03885 | 0.0089273 | -0.554 | -0.77264 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.925 | 1.7600 | 0.21659 | -0.60644 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.058163 | 1.5368 | -0.073383 | -0.58866 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 900047 | 0.051593 | 0.00033083 | 0.12032 | -1.0637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.02 | 1.5217 | -0.29073 | 0.35222 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45455 | 1.2499 | -0.055441 | -0.41423 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.57096 | 1.5527 | -0.058361 | -0.78048 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11 | 1.2729 | 0.34514 | -0.74248 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.7134 | 1.7087 | 0.1548 | -0.81312 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.38537 | 1.5590 | 0.13731 | -0.56279 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2289 | 1.8326 | 0.56336 | -0.82816 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.37536 | 1.5520 | 0.064166 | -0.06599 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15465 | 0.27435 | 1.5848 | 0.095533 | -0.15923 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.24362 | 1.3709 | -0.033615 | -0.37275 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29854 | 1.6154 | 0.10658 | -0.25914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28226 | 1.6046 | 0.077173 | -0.28205 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.29991 | 1.6130 | 0.065541 | -0.28259 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26079 | 1.6248 | 0.081986 | -0.35146 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28903 | 1.6473 | 0.12506 | -0.33874 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26651 | 1.6103 | 0.098053 | -0.3186 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.30971 | 1.6625 | 0.049576 | -0.30984 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29553 | 1.6542 | 0.088536 | -0.32966 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25214 | 1.6358 | 0.10994 | -0.30414 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23698 | 1.6613 | 0.14833 | -0.31106 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.33476 | 1.6382 | 0.11523 | -0.3304 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5903 | 0.30029 | 1.6576 | 0.088737 | -0.24665 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.28807 | 1.6792 | 0.088402 | -0.38528 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26139 | 1.6885 | 0.12369 | -0.41207 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.24042 | 1.6848 | 0.12782 | -0.38768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30301 | 1.6410 | 0.10511 | -0.36465 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32677 | 1.6507 | 0.13508 | -0.34843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30838 | 1.6285 | 0.12056 | -0.38406 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21285 | 1.5926 | 0.089883 | -0.28358 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31553 | 1.6429 | 0.12197 | -0.41622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31422 | 1.6529 | 0.12913 | -0.38597 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.28428 | 1.6397 | 0.12177 | -0.26928 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33148 | 1.5714 | 0.062941 | -0.36594 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32772 | 1.6548 | 0.080008 | -0.27433 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26906 | 1.6048 | 0.1312 | -0.2979 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36283 | 1.5711 | 0.077056 | -0.41534 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26103 | 1.6854 | 0.17728 | -0.305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32301 | 1.6281 | 0.036456 | -0.13348 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28488 | 1.6115 | 0.10403 | -0.26268 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34221 | 1.6248 | 0.1105 | -0.36116 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.3203 | 1.5589 | 0.068465 | -0.19429 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.26023 | 1.6693 | 0.13959 | -0.22833 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21396 | 1.6271 | 0.17004 | -0.2827 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 992 | 0.3323 | 1.6111 | -0.057597 | -0.21516 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.22961 | 1.6684 | 0.10993 | -0.27217 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22173 | 1.7092 | 0.18014 | -0.52896 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.19889 | 1.5159 | 0.13291 | -0.37813 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19821 | 1.6441 | 0.077323 | -0.42367 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14691 | 1.5883 | 0.25853 | -0.23979 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.18868 | 1.6214 | 0.23984 | -0.19698 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.21234 | 1.6023 | 0.15693 | -0.374 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.4831 | 1.5812 | -0.073099 | -0.052163 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27399 | 1.6242 | 0.14462 | -0.51643 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 302 | 0.27158 | 1.6015 | 0.0176 | -0.48446 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21276 | 1.5051 | 0.050208 | -0.30501 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.2466 | 1.7297 | 0.16708 | -0.77772 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029924 | 1.6038 | 0.0040817 | -0.57272 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25623 | 1.7120 | 0.16833 | -0.32784 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13868 | 1.4401 | 0.10285 | -0.57552 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13228 | 1.7225 | 0.3734 | -0.27166 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48577 | 1.5249 | 0.29054 | -0.59967 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21606 | 1.5844 | 0.20703 | -0.18586 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.047778 | 1.3782 | 0.092849 | -0.2244 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44465 | 1.4778 | 0.31679 | 0.0066977 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.037179 | 1.5860 | 0.68844 | 0.5606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.0047619 | 1.1521 | -0.24185 | -0.56354 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 900047 | 0.051207 | 0.00053529 | -0.22087 | -0.90838 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.37857 | 1.3698 | 0.38363 | -1.1311 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.385 | 1.6138 | -0.028016 | -0.46143 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.16379 | 1.0092 | -0.14535 | -0.70538 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22256 | 1.5766 | 0.21016 | -0.26552 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10585 | 1.6421 | 0.049025 | -0.11625 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.33023 | 1.7794 | 0.05798 | -0.5483 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.038081 | 1.7082 | 0.18076 | -0.46191 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27627 | 1.8537 | 0.30866 | -0.36393 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24676 | 1.6987 | -0.033537 | -0.40979 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10841 | 1.5827 | 0.059012 | -0.39803 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21738 | 1.7378 | 0.049562 | -0.58915 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31423 | 1.5646 | -0.04752 | -0.24692 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38254 | 1.5952 | -0.062604 | -0.50834 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57615 | 1.7044 | 0.17497 | -0.40468 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.3348 | 1.6110 | 0.13931 | -0.41708 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15431 | 1.6410 | -0.014716 | -0.045588 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 275 | 0.61367 | 1.7499 | -0.0018473 | -0.14649 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35904 | 1.7839 | -0.081599 | -0.52142 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36549 | 1.6270 | -0.13351 | -0.35492 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72241 | 1.5960 | 0.06958 | -0.60115 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25385 | 1.5134 | -0.54018 | -0.88175 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.054878 | 1.5916 | 0.1421 | -0.79794 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058636 | 1.6750 | 0.14252 | -0.17343 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.34649 | 1.5657 | 0.31774 | 0.18382 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.03254 | 1.6312 | -0.057783 | -0.19349 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72963 | 1.9937 | 0.3549 | -0.90151 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1817 | 1.2112 | -0.093692 | -0.66263 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45625 | 1.2222 | 0.28737 | -1.0067 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.465 | 1.3251 | 0.17729 | -0.20539 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53289 | 1.4866 | 0.068419 | -0.66878 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55435 | 1.3209 | 0.026026 | 0.41006 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33475 | 1.2043 | 0.40392 | -0.36906 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 340686 | 0.0011013 | 0.00027211 | 0.16059 | -1.5888 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 340686 | 0.032842 | 0.010500 | -0.21686 | -0.85377 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 29818 | 0.00043528 | 4.4431e-06 | -0.2978 | -1.0268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 29818 | 0.020844 | 0.0049634 | -0.372 | -0.88073 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.098077 | 1.3689 | 0.19061 | -0.063405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.066632 | 1.3958 | 0.17689 | 0.10601 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.056667 | 1.4629 | -0.40682 | -0.95953 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3027 | 0.11429 | 0.01587 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.32115 | 1.2688 | 0.10327 | -0.54035 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.059375 | 1.0835 | -0.37509 | 1.0281 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.55667 | 0.83942 | -0.81496 | -0.36191 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.46538 | 1.1330 | 0.54125 | -0.55434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1104 | -0.7856 | 1.3411 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 340840 | 0.00047314 | 1.3653e-05 | 0.051685 | -0.99757 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 340840 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.080986 | 1.3504 | -0.34313 | 0.15186 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.85277 | 0.088469 | -0.90074 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17 | 1.2695 | 0.29674 | -0.38437 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11824 | 1.2263 | -0.074943 | 0.061187 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13706 | 1.3991 | -0.11224 | -0.74857 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.256 | 1.3395 | -0.36243 | -0.075635 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2557 | 0.13564 | -0.70594 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13929 | 1.2437 | 0.36657 | -0.63665 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.062871 | 1.2248 | 0.082352 | -0.30141 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.17941 | 1.1549 | 0.13387 | -0.56358 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.084615 | 1.0217 | 0.3316 | -0.71296 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.079508 | 1.3272 | 0.51994 | 0.86529 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.043333 | 1.2369 | 0.060205 | -0.26176 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.40652 | 1.4770 | 0.9318 | 0.23771 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.1337 | 1.3860 | -0.5266 | 0.9479 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18 | 1.3731 | 0.19521 | -0.21415 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.07 | 1.0914 | 0.68672 | 0.24413 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.142 | 1.3871 | -1.0489 | 0.61929 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31389 | 1.1387 | 0.22697 | -0.80638 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30763 | 1.3304 | -0.11544 | -0.39823 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27333 | 1.3829 | -0.16623 | -0.55006 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12353 | 1.3316 | 0.64105 | 0.42264 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.11883 | 1.2498 | 0.51138 | 0.0098555 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16448 | 1.4744 | 0.18896 | 0.078346 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.15788 | 1.4104 | 0.090401 | -0.13777 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.043648 | 1.3408 | -0.10996 | -0.39692 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031195 | 1.3906 | 0.3243 | 0.12566 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.068674 | 1.3804 | -0.057813 | 0.3377 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.032393 | 1.4028 | 0.11839 | 0.050807 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.012754 | 1.4321 | 0.077871 | 0.0083314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.094543 | 1.4004 | 0.41504 | 0.48936 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.18875 | 1.2933 | 0.26825 | 0.446 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28402 | 1.4817 | -0.047007 | -0.32548 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24683 | 1.3834 | 0.27887 | 0.23793 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | 0.12512 | 1.5383 | 0.0097925 | 0.4635 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.079361 | 1.2905 | 0.33198 | 0.11265 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.046864 | 1.4712 | 0.32108 | 0.16535 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14349 | 1.4138 | 0.080436 | -0.0081098 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23857 | 1.3349 | 0.36636 | 0.041313 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.094142 | 1.4201 | 0.26302 | 0.22664 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.12014 | 1.4669 | 0.27336 | -0.25894 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.11253 | 1.3108 | -0.083076 | -0.049253 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13467 | 1.2019 | 0.23606 | -0.23005 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.047922 | 1.5240 | 0.047055 | 0.73744 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05186 | 1.2725 | 0.32382 | -0.26885 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.010741 | 1.3589 | 0.31229 | -0.20029 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23113 | 1.4254 | 0.30895 | 0.63358 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 260 | 0.2023 | 1.4412 | 0.15371 | -0.012408 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.014103 | 1.4593 | 0.44163 | -0.18783 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.22143 | 1.3210 | 0.24791 | 0.14418 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.048347 | 1.2003 | -0.026975 | 0.038475 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.09898 | 1.1666 | 0.3383 | -0.30996 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.045238 | 1.3810 | 0.26613 | -0.094714 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22875 | 1.3048 | 0.12211 | 0.051739 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10636 | 1.2702 | -0.044514 | -0.27822 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.38043 | 1.1943 | 0.19918 | -0.05729 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.07043 | 1.3929 | -0.35001 | 0.62748 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.090179 | 1.4991 | 0.44387 | 0.86283 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25 | 1.1202 | 0.67946 | -0.20627 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.26892 | 1.4025 | 0.13975 | 0.19776 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.31393 | 1.2118 | 0.010435 | -0.32981 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0055102 | 1.3713 | -0.27209 | 0.2064 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.25741 | 1.2802 | 0.18647 | 0.067365 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.026812 | 1.4558 | -0.13595 | -0.55868 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.0745e-16 | 1.4996 | 0.19546 | -0.87122 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.017521 | 1.3892 | 0.28353 | -0.13306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.15 | 1.0117 | 0.097882 | -0.47268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15 | 1.3052 | -0.11333 | -0.53696 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74687 | 1.2675 | -0.43877 | 0.03693 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16176 | 1.3565 | 0.24546 | -0.16486 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.3 | 1.4107 | -0.27358 | -0.29179 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.081387 | 1.1802 | 0.13574 | -0.44145 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.045652 | 1.5810 | 0.32623 | -0.27142 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.15105 | 1.5708 | 0.81104 | 0.44966 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.02551 | 1.2621 | -0.45706 | 0.55759 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.0855 | 1.3332 | -0.23203 | 0.56704 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10354 | 1.2452 | -0.15157 | 0.046372 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 340837 | 0.00047175 | 3.3146e-05 | 1.2111 | 0.45989 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 340837 | 0.023684 | 0.0036143 | -0.085714 | -1.0807 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13738 | 0.92271 | -0.054151 | -0.14809 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.12846 | 1.6776 | -0.70165 | -0.21547 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.42391 | 1.8202 | 0.066959 | -1.3514 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.07 | 0.75912 | 0.94276 | 0.88948 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5052 | 1.5156 | -0.078646 | -1.0186 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13367 | 1.3439 | 0.36617 | -0.12324 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.146 | 1.3913 | 0.49505 | -0.011039 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21774 | 1.3760 | -0.57004 | 0.76132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67609 | 1.4932 | -0.0199 | -0.074268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.12742 | 0.81388 | 0.1927 | -0.59613 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 340840 | 0.00051352 | 2.5261e-05 | -0.72676 | -0.57263 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 340840 | 0.029684 | 0.00015509 | -0.098897 | -0.80895 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20205 | 1.3525 | 0.36593 | 0.12277 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.043075 | 1.4985 | 0.15043 | -0.055205 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 129 | 0.12184 | 1.4199 | 0.015512 | 1.5199 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.12057 | 1.4303 | 0.2978 | -0.12303 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27648 | 1.6652 | 0.22561 | 0.099185 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.037313 | 1.1713 | 0.015391 | -0.23132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11698 | 1.3049 | 0.17247 | -0.62696 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.040385 | 1.6040 | 0.24866 | -0.14749 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.01 | 1.6066 | -0.3327 | -0.20678 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.27105 | 1.7181 | 0.063592 | 0.31824 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.11111 | 1.4253 | 0.69884 | 1.9919 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36594 | 1.4844 | -0.20098 | 0.78315 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.2125 | 1.7909 | -0.022502 | -0.41361 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2359 | 0.3816 | 0.34897 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.14262 | 1.3657 | -0.31941 | 0.098629 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31667 | 1.2579 | -0.37918 | 0.21767 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.26096 | 1.5893 | 0.089083 | -0.48257 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.011644 | 1.2351 | -0.23605 | 0.32613 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28333 | 1.1882 | 0.05981 | 0.29472 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.0025253 | 1.2768 | 0.49311 | 0.050834 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18231 | 1.5384 | -0.47607 | -0.10631 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.025676 | 1.2466 | 0.24787 | 0.34582 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0090909 | 1.1312 | 0.17509 | -0.94287 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0043689 | 1.7195 | -0.049407 | -0.21501 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17807 | 1.3184 | -0.048648 | 0.31965 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.095045 | 1.4346 | -0.54947 | 1.3654 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.074444 | 0.99402 | 0.65118 | 0.88702 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.016087 | 1.5421 | 0.10581 | 0.58276 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.24459 | 1.2366 | 0.2098 | 0.77443 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.09878 | 1.4623 | 0.32497 | 1.0796 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.026667 | 1.3534 | -0.087046 | -0.52434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19468 | 1.5160 | -0.38974 | -0.97391 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61333 | 1.1427 | 0.7599 | -0.55147 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.085632 | 1.2700 | -0.41937 | 0.27979 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.039157 | 1.3203 | 0.40174 | -0.025693 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.15185 | 1.2632 | 0.25099 | 1.2147 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.058247 | 1.4819 | 0.092497 | -0.36791 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21981 | 1.3379 | 0.40764 | 0.20959 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.0075 | 1.5821 | -0.03132 | -0.51694 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25615 | 1.5964 | 0.029879 | -0.62811 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.20714 | 1.2610 | 0.048398 | -0.5136 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43889 | 1.3800 | 0.31636 | -0.83367 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.39168 | 1.9068 | 0.24089 | 0.32745 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.015789 | 1.3524 | 0.049243 | 0.046783 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088312 | 1.1805 | 0.062495 | -0.44113 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.017539 | 1.4237 | -0.32716 | 0.48168 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.13475 | 1.3333 | 0.92491 | 1.6881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.1402 | 1.3974 | -0.12011 | -0.39538 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59571 | 1.1236 | 0.15253 | -0.20349 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13382 | 1.3593 | 0.25828 | -0.32732 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.014234 | 1.2693 | -0.053422 | -0.54499 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0081818 | 1.3261 | 0.1673 | -0.55588 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.052941 | 1.0107 | -0.0042894 | -1.0738 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21486 | 1.1454 | 0.87467 | 2.1396 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10769 | 1.4396 | 0.155 | 0.40365 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.037728 | 1.3825 | 0.10936 | 0.22667 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.035207 | 1.3415 | 0.02678 | 0.53216 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.016364 | 1.3581 | 0.078614 | 0.54888 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0085208 | 1.3691 | -0.074302 | 0.42112 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.028118 | 1.3765 | 0.038052 | 0.49109 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.026 | 1.3394 | 0.084908 | 0.40699 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.055394 | 1.3357 | 0.10662 | 0.47525 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3010 | -0.020237 | 1.3444 | 0.16236 | 0.55011 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.043106 | 1.4568 | 0.086815 | 0.53523 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3541 | 0.015316 | 1.3574 | 0.13127 | 0.63824 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.031539 | 1.3723 | 0.1655 | 0.38835 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.06859 | 1.3428 | 0.05906 | 0.76697 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.00093278 | 1.4047 | 0.086299 | 0.46016 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.012364 | 1.3570 | 0.10743 | 0.33406 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.079592 | 1.3332 | 0.1278 | 0.20835 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.056156 | 1.3931 | 0.0472 | 0.45769 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.092678 | 1.4166 | 0.16254 | 0.26471 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.029023 | 1.4237 | 0.23304 | 0.36582 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1481 | 0.015773 | 1.3482 | 0.065393 | 0.29421 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1292 | -0.036722 | 1.3616 | 0.14296 | 0.42494 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.047241 | 1.2971 | 0.030547 | 0.02745 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.029093 | 1.4506 | 0.15855 | 0.34405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.045893 | 1.4455 | 0.061202 | 0.55883 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.02077 | 1.3207 | 0.18267 | 0.15639 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1373 | 0.047198 | 1.3263 | 0.075693 | 0.16813 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.013041 | 1.4170 | -0.017138 | 0.13513 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.010987 | 1.3525 | 0.22758 | 0.19222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 711 | 0.07448 | 1.3440 | 0.099512 | -0.11618 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 590 | 0.060545 | 1.4491 | 0.043463 | 0.81815 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.0017264 | 1.3979 | 0.1205 | 0.34811 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.1117 | 1.3428 | -0.02872 | 0.34789 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.10931 | 1.5627 | -0.059325 | 0.0965 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.046354 | 1.5465 | 0.014579 | 0.27534 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027279 | 1.5447 | 0.066569 | 0.74334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.02197 | 1.4301 | 0.053011 | 0.4552 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04825 | 1.3890 | -0.099231 | 0.50511 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17755 | 1.4639 | 0.073642 | 1.1168 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.052993 | 1.3748 | 0.058347 | -0.061781 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.029379 | 1.2557 | 0.11507 | -0.38 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11236 | 1.3657 | 0.29962 | 0.57823 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045008 | 1.2982 | 0.070479 | 0.1736 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3832 | 0.0049769 | 0.085851 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.074413 | 1.5791 | 0.0276 | 0.982 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.032913 | 1.3373 | 0.06873 | -0.10459 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15785 | 1.2765 | -0.092362 | 0.63541 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.2609 | 1.2673 | 0.31575 | 0.021388 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.27997 | 1.4024 | 0.36475 | 0.094743 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.013246 | 1.5119 | 0.33449 | 0.24892 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19575 | 1.4595 | 0.2578 | 0.28875 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15585 | 1.2682 | 0.026315 | -0.32675 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10575 | 1.2418 | 0.13292 | 0.34294 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.088671 | 1.3369 | 0.17251 | 1.0131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12515 | 1.3262 | 0.11463 | 0.11289 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11399 | 1.2903 | 0.24434 | 0.010278 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.021847 | 1.2933 | -0.075716 | 0.1085 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.05381 | 1.4400 | -0.30835 | 0.49976 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039697 | 1.2186 | 0.2132 | -0.16206 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.11996 | 1.3207 | 0.30017 | 0.47242 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.096711 | 1.2817 | 0.074813 | 0.25636 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050476 | 1.2240 | -0.26252 | -0.22191 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.034173 | 1.4143 | 0.17138 | -0.3135 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.22956 | 1.2287 | 0.35009 | 0.059646 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.023859 | 1.4926 | 0.074454 | -0.14745 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.12972 | 1.3429 | 0.13056 | 0.4705 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10916 | 1.1666 | 0.0078262 | 0.2137 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.03 | 1.2578 | -0.063497 | 0.37146 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.05979 | 1.5040 | -0.012453 | 0.42076 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16737 | 1.4819 | 0.39336 | 0.42517 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 340840 | 0.00045372 | 8.9382e-06 | 0.46655 | -0.94235 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 340840 | 0.029506 | 0.00023674 | 0.19639 | -1.1222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0086 | 0.21872 | 0.32303 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.076563 | 1.4033 | 0.066494 | -0.023738 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3366 | 1.1936 | 1.9128 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28913 | 1.2015 | 0.49318 | -0.026685 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49643 | 1.3973 | 0.34265 | -0.16583 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.39118 | 1.4789 | 0.13373 | 0.17833 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.028125 | 1.3462 | 0.46977 | 0.06325 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.26852 | 1.3386 | -0.32471 | -0.3034 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.18684 | 1.1536 | -0.28681 | -0.21564 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.041667 | 1.4660 | -0.22723 | -0.90851 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.125 | 1.9071 | -0.41821 | -0.16491 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.1 | 0.91624 | -0.38164 | -0.46204 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32727 | 1.5556 | 0.35204 | -0.92548 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.27391 | 1.2985 | 0.64602 | 1.7324 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.34808 | 1.4969 | 0.026314 | -0.47986 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.095455 | 0.90958 | -0.7757 | 0.48492 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.32391 | 1.1983 | -0.51064 | -0.15802 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25105 | 1.4439 | 0.05158 | 0.194 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.20333 | 1.5945 | -0.49165 | -0.32469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.86667 | 1.7995 | -0.037321 | -0.44153 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32442 | 1.9543 | -0.057212 | -0.83039 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.26111 | 1.3670 | -0.19305 | -0.89152 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15357 | 1.7691 | -0.59632 | -0.56382 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95606 | 1.6668 | -0.060134 | -0.26099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58429 | 1.2081 | -0.20615 | -0.97647 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46197 | 1.7649 | 0.043762 | -0.55426 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.47526 | 1.5518 | -0.38317 | -0.38775 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41364 | 1.1440 | 0.40473 | -0.97403 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.59667 | 1.4028 | -1.3874 | 2.0305 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.025676 | 1.5660 | 0.013653 | -0.39601 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16212 | 1.5566 | 0.19955 | -0.26783 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.34737 | 1.2960 | 0.11432 | -0.074239 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19568 | 1.3658 | 0.53111 | 0.061642 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0053 | 1.2296 | 0.024809 | -0.36402 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.012745 | 1.4361 | -0.42597 | -0.18583 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.057692 | 1.4603 | 0.34378 | 0.66787 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49468 | 1.3878 | 0.30047 | -0.46767 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11761 | 1.2323 | 0.50648 | 0.44843 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.15781 | 1.5066 | 0.0299 | -0.35243 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | -0.0071429 | 2.1231 | -0.043549 | -0.39684 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.1775 | 1.9503 | 0.47931 | -0.86019 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.27083 | 1.3705 | 0.14245 | -0.0062807 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.25185 | 1.3313 | 0.42292 | -0.44177 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.145 | 1.0934 | 0.954 | 0.53036 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21462 | 1.1367 | 0.14703 | -0.46503 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 126285 | 0.00049539 | 7.1402e-05 | 0.6622 | -1.2948 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 126285 | 0.021027 | 0.0058176 | -0.2332 | -1.2581 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 92074 | 0.032594 | 0.010182 | -0.27908 | -0.84428 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.15426 | 1.1888 | 0.081159 | -0.66229 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | -0.15323 | 1.2259 | 0.0087169 | -0.6283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 255 | 0.44569 | 1.4272 | 0.09551 | -0.21556 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.33699 | 1.4020 | 0.11531 | -0.066732 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 182 | 0.42017 | 1.6336 | 0.12468 | -0.37574 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.22346 | 1.6823 | 0.14179 | -0.43129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.51953 | 1.4910 | -0.040183 | -0.02104 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 117 | 0.23205 | 1.4837 | -0.23873 | 0.52475 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 154 | 0.20779 | 1.6673 | 0.4027 | 0.10174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | 0.29359 | 1.3608 | -0.083321 | -0.94404 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.095732 | 1.3506 | 0.13313 | -0.47678 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.088 | 1.2980 | 0.21417 | -0.46957 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.2375 | 1.3986 | -0.079006 | -0.55381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.17794 | 1.2621 | 0.17494 | -0.38168 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 82 | 0.04878 | 1.3383 | -0.25164 | -0.36072 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.27264 | 1.2794 | 0.23368 | -0.20206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.33889 | 1.3642 | 0.72337 | 0.27094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.54365 | 1.3346 | 0.066766 | -0.67594 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 14 | 0.11429 | 1.1505 | -0.72821 | -0.19188 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.31279 | 1.2781 | 0.36093 | 0.40813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.53846 | 1.3628 | 0.37576 | -0.34829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.175 | 1.6407 | -0.18682 | -0.29432 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 22 | -0.11364 | 1.1648 | -0.31398 | -0.8958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.072222 | 1.3439 | 0.38655 | -0.52899 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.61667 | 1.1671 | -0.48136 | -0.5175 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.70833 | 1.3551 | 0.097798 | -0.20147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 42 | 0.10952 | 1.2704 | 0.65447 | 0.93495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.17917 | 1.1681 | -0.1635 | 0.48958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.10313 | 1.2971 | 0.18248 | -0.55147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | -0.14322 | 1.3557 | 0.22452 | -0.46831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.2875 | 0.98607 | -0.45115 | -0.93039 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.34189 | 1.3641 | 0.22587 | -0.75319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.22222 | 0.94328 | -0.72731 | 2.0386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.14583 | 1.4273 | 0.49827 | -0.84187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 35 | 0.63286 | 1.4750 | 0.20869 | -0.86119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 58 | 0.26207 | 1.1168 | 0.61667 | 0.38071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 17 | 0.10882 | 1.3712 | -0.78984 | -0.2466 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 912523 | 0.05209 | 6.5854e-10 |-2.8472e+08 | 4.0532e+16 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.16125 | 1.4093 | 0.40694 | -0.31898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.1007 | 0.13969 | -0.24134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.28191 | 1.3722 | 0.10928 | -0.83696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.082 | 1.2936 | -0.015117 | -0.66559 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.27778 | 1.3080 | 0.49257 | -0.42588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | -0.05 | 0.85732 | 0.76095 | -0.49354 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.36304 | 1.3612 | 0.45247 | -0.2078 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.069231 | 1.4345 | 0.39391 | 0.5968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.7951 | 1.5000 | 0.021322 | -0.81517 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.29706 | 1.3114 | 0.33075 | -0.085562 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.1218 | -0.16424 | -0.83412 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.31 | 1.1153 | -0.42437 | -0.55301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.57642 | 1.5114 | 0.08471 | -0.6656 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.2168 | 0.11295 | 0.16294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.2431 | 1.4178 | 0.37097 | 0.41441 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.098387 | 1.1739 | 0.053194 | -0.27456 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.1413 | 1.4043 | 0.6802 | -0.21306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.27879 | 1.2370 | 0.40217 | 0.59222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.48929 | 1.1660 | 0.006125 | -0.37829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.36111 | 1.6960 | 0.43071 | -1.016 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.51818 | 1.3178 | -0.53101 | -0.30605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.14677 | 1.2785 | -0.49149 | -0.97099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.13871 | 1.1622 | -0.04128 | -0.81978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.45811 | 1.3498 | 0.36127 | -0.88187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 621 | 0.073441 | 1.3757 | 0.24025 | -0.048435 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.4518 | -0.010351 | -0.8896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 968 | 0.13066 | 1.3127 | 0.37374 | -0.052569 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.31774 | 1.3238 | 0.9854 | 0.7267 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1044 | 0.14417 | 1.4458 | 0.34664 | -0.20079 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1337 | 0.10792 | 1.5342 | 0.17288 | -0.22884 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.23333 | 1.3957 | 0.96352 | 1.4539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.218 | 1.3540 | 0.33272 | -0.24258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 966 | 0.26616 | 1.6442 | 0.23035 | -0.19515 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1253 | 0.13068 | 1.4341 | 0.27148 | -0.21196 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1121 | 0.18993 | 1.4824 | 0.20778 | -0.082018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1006 | 0.2819 | 1.4284 | 0.15825 | -0.30685 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1108 | 0.20847 | 1.4625 | 0.26446 | -0.25525 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1071 | 0.17743 | 1.4086 | 0.24413 | 0.14777 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.27863 | 1.4540 | 0.22573 | -0.048292 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 872 | 0.15934 | 1.4457 | 0.24711 | -0.15951 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 765 | 0.1849 | 1.5105 | 0.23645 | -0.30252 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 770 | 0.31404 | 1.5423 | 0.21436 | -0.20865 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.29649 | 1.4873 | 0.18523 | -0.15243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 944 | 0.30418 | 1.4683 | 0.23561 | -0.25496 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 597 | 0.24129 | 1.4413 | 0.28744 | 0.098878 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 512 | 0.26457 | 1.4149 | 0.26532 | 0.11098 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 560 | 0.42647 | 1.5503 | 0.21844 | -0.32311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.37049 | 1.5348 | 0.077514 | 0.11206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 644 | 0.28459 | 1.4606 | 0.28324 | 0.022709 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 403 | 0.25189 | 1.4899 | 0.12768 | -0.24903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 433 | 0.25459 | 1.4472 | 0.28434 | -0.047753 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.30458 | 1.3344 | 0.3144 | -0.0065244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 407 | 0.2311 | 1.4864 | 0.29882 | -0.23373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 491 | 0.36314 | 1.4106 | 0.19084 | -0.15106 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 391 | 0.30146 | 1.4399 | 0.14033 | -0.2623 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 374 | 0.2844 | 1.3809 | 0.20117 | -0.17772 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.28689 | 1.4216 | 0.13139 | -0.20812 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 337 | 0.25115 | 1.3960 | 0.13002 | -0.5117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.29493 | 1.4496 | 0.29643 | 0.29452 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 423 | 0.28646 | 1.3279 | 0.013723 | -0.45368 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 258 | 0.53135 | 1.4118 | 0.26505 | -0.099333 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.54767 | 1.3271 | 0.36503 | 0.077683 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 349 | 0.22623 | 1.4375 | 0.25903 | -0.084101 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 209 | 0.35603 | 1.4113 | 0.14855 | -0.16021 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | 0.39719 | 1.3477 | 0.20492 | -0.39676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | 0.39407 | 1.3484 | 0.40429 | 0.21218 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 192 | 0.40938 | 1.3058 | 0.11289 | -0.32733 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 386 | 0.3071 | 1.3647 | 0.095231 | -0.35031 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 387 | 0.28091 | 1.3190 | 0.36746 | -0.17458 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.083987 | 1.3601 | 0.14438 | -0.14973 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 262 | 0.40687 | 1.3322 | 0.28968 | -0.36815 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.27553 | 1.3259 | 0.032299 | -0.32247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.31154 | 1.3440 | 0.3437 | -0.2023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 128 | 0.16172 | 1.3687 | 0.29136 | -0.2763 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.22295 | 1.2662 | 0.20963 | -0.50503 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.26538 | 1.5540 | 0.49357 | 0.029153 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.10871 | 1.3645 | 0.22811 | -0.27052 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.23814 | 1.4138 | 0.048709 | -0.73945 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.30975 | 1.2515 | 0.48016 | 0.20827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 173 | 0.22603 | 1.2465 | 0.19651 | -0.4307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | -0.0073529 | 1.1967 | -0.087554 | -0.76893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.31053 | 1.3365 | 0.25763 | 0.087152 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.2182 | 1.3439 | 0.52428 | 0.47493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | 0.057857 | 1.3552 | 0.22158 | -0.36501 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.63452 | 1.3587 | 0.23838 | -0.36225 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.41774 | 1.3006 | 0.68633 | 0.5958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 165 | 0.15954 | 1.2351 | 0.46762 | 0.17925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | 0.20676 | 1.3920 | 0.25214 | 0.32968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.25206 | 1.3104 | 0.32977 | -0.18968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35986 | 1.3615 | 0.11206 | -0.5971 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 | 0.29476 | 1.4117 | 0.62128 | 0.028928 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.39375 | 1.2276 | 0.078506 | 0.25223 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.15541 | 1.4618 | 0.64119 | 0.19113 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.58048 | 1.4003 | -0.0087549 | -0.57437 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.80588 | 1.3692 | -0.07403 | 0.26205 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.40882 | 1.4488 | 0.48904 | -0.48572 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.14231 | 0.99534 | -0.70728 | 0.26226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.42722 | 1.2158 | -0.049842 | -0.25717 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.34518 | 1.3312 | 0.22086 | -0.38234 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.091071 | 1.3166 | 0.19325 | -0.40433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.21744 | 1.0856 | 0.16871 | -0.18609 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.24032 | 1.4192 | 0.58272 | 0.12602 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.41364 | 1.0915 | 0.083064 | -0.31073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.52024 | 1.2594 | 0.29621 | -0.17317 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.48333 | 1.2238 | 0.32974 | -0.45189 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.030357 | 1.4352 | 0.63067 | 0.66139 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.068182 | 1.3884 | 0.37369 | -0.46563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.29066 | 1.2578 | -0.010228 | -0.73252 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.40147 | 1.3507 | 0.28472 | 0.023381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 912523 | 0.00098739 | 0.00018978 | 0.55238 | -0.85563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 912523 | 0.039405 | 0.0091659 | -0.54769 | -0.79541 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.73846 | 1.9268 | 0.49755 | -0.76767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.27821 | 1.3825 | 0.50129 | -0.26828 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.55 | 1.6065 | 0.06886 | -0.34849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.1096 | 1.3070 | 0.29612 | 0.24149 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.58636 | 1.5663 | -0.83414 | 0.55878 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.75 | 1.1314 | 0.56236 | 0.39619 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.44524 | 1.6557 | -0.033305 | -0.72476 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.018966 | 1.6967 | 0.1788 | 0.059926 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.2 | 1.4006 | 0.14585 | -0.32338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.162 | 1.3834 | 0.081347 | -0.28792 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3 | 1.3762 | -0.056137 | -0.58296 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 912523 | 0.051619 | 0.00034441 | 0.039932 | -1.2155 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 95 | 0.33316 | 1.4069 | 0.12475 | -0.13492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.19561 | 1.0928 | -0.11982 | 0.42227 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.18801 | 1.2707 | 0.3352 | -0.33311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52037 | 1.4476 | 0.32257 | -1.0287 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.0080952 | 1.2475 | 0.31928 | 0.32201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15752 | 1.2980 | 0.27906 | -0.57738 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.33667 | 1.4396 | 0.15202 | -0.76103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.49051 | 1.2767 | 0.4699 | -0.8398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.29 | 1.4156 | 0.51763 | 0.65378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.20714 | 1.2475 | 0.019569 | -0.0064398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.003125 | 1.1178 | 0.56203 | -0.7573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 210 | 0.39115 | 1.3484 | 0.34448 | -0.027893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.17143 | 1.2582 | 0.50648 | 0.040303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.19304 | 1.2387 | 0.26012 | 0.1294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.29907 | 1.2497 | 0.51644 | 0.20907 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.27576 | 1.1752 | 0.19125 | -0.049959 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.73291 | 1.5920 | 0.068327 | -0.56803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.17222 | 1.2003 | 0.77641 | -0.29755 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.43772 | 1.3276 | 0.073047 | -0.86495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.098718 | 1.2500 | 0.35076 | -0.31066 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.14464 | 1.3216 | 0.0084706 | 0.4927 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35845 | 1.3305 | 0.53943 | -0.10612 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.057692 | 1.4191 | 0.27836 | -0.16384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.60833 | 1.2579 | 0.377 | -1.0019 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.1 | 1.3279 | -0.32409 | -0.62328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38261 | 1.3307 | 0.56799 | 0.068695 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.16565 | 1.3063 | 0.25364 | -0.26464 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.43077 | 1.1276 | -0.26764 | -0.49122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.31923 | 1.0542 | 0.33773 | 0.10721 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.058696 | 1.1861 | 0.4669 | -0.7128 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.33 | 1.3486 | -0.046807 | -0.24911 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.22536 | 1.3721 | 0.13574 | -0.6124 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.55333 | 1.4018 | 0.3125 | -0.0079929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.25 | 0.94956 | -0.44149 | -0.85116 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.40952 | 1.3659 | 0.079067 | -0.20338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.28393 | 1.2106 | -0.17263 | -0.0032724 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.15938 | 1.0162 | 0.49142 | -0.47676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.89737 | 1.1028 | 0.69314 | 0.065418 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.10455 | 1.4015 | 1.3204 | 2.2426 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | 0.45714 | 0.96914 | -0.60915 | -0.39231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 937 | 0.31834 | 1.5920 | -0.03497 | -0.062323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.22143 | 1.2191 | -0.031656 | -1.0065 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.63421 | 1.3705 | 0.010212 | -0.68538 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 1.0409 | 0.84901 | -0.56607 | -1.0784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.79865 | 1.3329 | -0.010656 | -0.20202 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15226 | 0.29847 | 1.4709 | 0.1292 | -0.094787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.067647 | 1.1893 | 1.1178 | 0.34819 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.47593 | 0.91958 | 0.16664 | -0.70162 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.19211 | 1.1472 | 0.62423 | 0.36094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.041489 | 1.2406 | -0.042265 | -0.88447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.12368 | 1.5610 | -0.48466 | -1.3136 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.45462 | 1.2722 | -0.13229 | 0.062307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16757 | 0.28831 | 1.4899 | 0.13268 | -0.10458 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.055882 | 1.3892 | 0.381 | -0.80846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.49828 | 1.4333 | 0.4153 | -0.52859 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.82576 | 1.3289 | 0.036114 | -0.0098258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14274 | 0.31136 | 1.4752 | 0.12908 | -0.15238 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.37766 | 1.3425 | 0.37089 | -0.18304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.4425 | 1.0785 | 0.075684 | -0.6159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 13640 | 0.30327 | 1.4799 | 0.10418 | -0.12837 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.29348 | 1.3752 | -0.040547 | -1.2849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.53077 | 1.4938 | 0.4227 | -0.39335 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.58143 | 1.2599 | -0.55088 | 0.6073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 214 | 0.30089 | 1.3814 | 0.33291 | -0.19972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11225 | 0.31745 | 1.4867 | 0.13864 | -0.10158 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9612 | 0.2807 | 1.4954 | 0.14169 | -0.17628 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9686 | 0.30158 | 1.4673 | 0.078499 | -0.16176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9046 | 0.32996 | 1.4936 | 0.1155 | -0.20893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8446 | 0.33963 | 1.4989 | 0.15286 | -0.20456 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7016 | 0.31312 | 1.4679 | 0.12518 | -0.24104 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6613 | 0.28527 | 1.4844 | 0.12243 | -0.19215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5725 | 0.32356 | 1.4652 | 0.16397 | -0.2151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5689 | 0.34687 | 1.4855 | 0.096118 | -0.20496 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3984 | 0.31608 | 1.4541 | 0.18576 | -0.25392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5232 | 0.28421 | 1.4639 | 0.15851 | -0.2417 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3539 | 0.26452 | 1.4579 | 0.15264 | -0.19386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2972 | 0.29643 | 1.4556 | 0.20293 | -0.072075 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3406 | 0.34456 | 1.4639 | 0.16633 | -0.25831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3125 | 0.29223 | 1.4538 | 0.14836 | -0.16049 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2357 | 0.2499 | 1.4346 | 0.22232 | -0.15384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2536 | 0.31646 | 1.3633 | 0.17195 | -0.19055 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2714 | 0.32186 | 1.4298 | 0.12705 | -0.22289 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2211 | 0.24537 | 1.4256 | 0.19051 | -0.26143 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1603 | 0.34089 | 1.3809 | 0.13221 | -0.17142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1952 | 0.29892 | 1.3755 | 0.16153 | -0.2524 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2374 | 0.26869 | 1.3366 | 0.27106 | 0.04071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1475 | 0.33581 | 1.3756 | 0.17365 | -0.12781 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1629 | 0.27299 | 1.3572 | 0.25906 | 0.026539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1389 | 0.27028 | 1.4164 | 0.16576 | 0.0045271 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1415 | 0.30113 | 1.3618 | 0.22981 | -0.24505 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1278 | 0.32534 | 1.3993 | 0.15783 | -0.10398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1240 | 0.2787 | 1.2931 | 0.17555 | -0.085026 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1248 | 0.19473 | 1.3804 | 0.31159 | -0.17805 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 870 | 0.31283 | 1.3334 | 0.26704 | -0.15422 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1196 | 0.32997 | 1.3540 | 0.20852 | -0.20142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1219 | 0.26467 | 1.3427 | 0.38641 | 0.07987 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 655 | 0.26544 | 1.3781 | 0.39831 | -0.079031 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 795 | 0.3479 | 1.3786 | 0.28858 | -0.071176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 887 | 0.29672 | 1.3347 | 0.11578 | -0.35004 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 540 | 0.3541 | 1.3503 | 0.26037 | -0.10939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1107 | 0.25569 | 1.3578 | 0.1835 | -0.15917 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 853 | 0.21248 | 1.3454 | 0.3382 | -0.046999 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 588 | 0.33324 | 1.3475 | 0.23982 | 0.0097532 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 571 | 0.36541 | 1.3079 | 0.25222 | 0.087708 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.24823 | 1.3385 | 0.11508 | -0.43183 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 444 | 0.20631 | 1.2996 | 0.31249 | -0.17972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 661 | 0.22307 | 1.2856 | 0.19228 | -0.054339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 506 | 0.34682 | 1.3056 | 0.17777 | -0.42696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 432 | 0.22883 | 1.4025 | 0.28509 | -0.089498 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 379 | 0.2736 | 1.3221 | 0.17104 | -0.35506 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.31223 | 1.3887 | 0.30054 | -0.19738 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 424 | 0.33686 | 1.3391 | 0.28302 | -0.19905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 306 | 0.25065 | 1.2184 | 0.22554 | -0.32727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 504 | 0.30133 | 1.3786 | 0.20947 | -0.2611 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15677 | 1.3470 | 0.38562 | -0.12255 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 288 | 0.3461 | 1.4076 | 0.095012 | -0.26808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.077397 | 1.2477 | 0.39209 | 0.38848 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 259 | 0.44807 | 1.4256 | 0.38235 | 0.060458 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.17526 | 1.5593 | 0.63677 | -0.3014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.18121 | 1.2725 | 0.26619 | 0.027382 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 367 | 0.16059 | 1.2944 | 0.45448 | 0.025747 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 447 | 0.13848 | 1.2188 | 0.323 | 0.10943 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 339 | 0.35442 | 1.3554 | 0.19191 | -0.49331 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 156 | 0.21822 | 1.1690 | 0.49529 | 0.3638 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.22394 | 1.2887 | 0.34682 | 0.14951 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.076238 | 1.2545 | 0.3808 | 0.25125 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 198 | 0.31515 | 1.2755 | 0.32304 | 0.16686 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.13889 | 1.3966 | 0.55534 | 0.12277 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 341 | 0.30179 | 1.3061 | 0.25136 | -0.33533 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 268 | 0.36007 | 1.2218 | 0.19088 | -0.30292 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 326 | 0.33105 | 1.3005 | 0.34867 | -0.38215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 256 | 0.35 | 1.2977 | 0.092445 | -0.45987 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.4602 | 1.3168 | 0.3619 | -0.25539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.21964 | 1.2078 | -0.075298 | -0.05573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 190 | 0.22263 | 1.3886 | 0.3131 | -0.42756 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.2117 | 1.0428 | -0.10752 | -0.078925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 191 | 0.20478 | 1.2776 | 0.34215 | -0.15511 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.11006 | 1.2976 | 0.22531 | -0.41121 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.41142 | 1.3920 | 0.49347 | 0.063192 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.062698 | 1.2589 | 0.55804 | 0.51513 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.16128 | 1.1583 | 0.30466 | -0.31912 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.34244 | 1.3594 | 0.076774 | -0.35024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.35562 | 1.2863 | 0.49867 | 0.37946 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 91 | 0.31264 | 1.3629 | 0.16949 | -0.32974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 912523 | 0.051252 | 0.00056508 | -0.18567 | -0.98643 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.57571 | 1.2650 | 0.2336 | -0.42936 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.071429 | 1.4809 | 0.32943 | -0.28491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 102 | 0.63431 | 1.4904 | 0.2976 | -0.77661 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.086 | 1.0766 | 0.47382 | -0.55677 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.059524 | 1.5065 | 0.02905 | -0.9059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 105 | 0.35381 | 1.3698 | 0.21206 | -0.82378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.26034 | 1.4204 | -0.13459 | -0.91529 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.63333 | 1.4690 | 0.47233 | -0.98757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.04 | 1.2494 | 0.40009 | -0.70182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | 0.11651 | 1.2252 | 0.55461 | 0.0095537 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.31818 | 1.1636 | 0.15923 | -0.91034 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.538 | 0.97788 | 0.25741 | -0.13873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.62941 | 1.3429 | 0.045183 | -0.72813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3775 | 0.86627 | 0.68082 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.21438 | 1.2948 | 0.051066 | -0.20007 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.47 | 1.1078 | 0.53067 | -0.92768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.382 | 1.1471 | -0.45878 | -0.27237 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3001 | 0.5589 | -0.26118 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.12188 | 1.3158 | 0.59831 | 0.15076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.17222 | 1.3147 | 0.94516 | 0.55718 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.31667 | 1.2266 | 0.29937 | -0.33142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.43222 | 1.1902 | -0.030025 | 0.17067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.22 | 0.84149 | -0.10698 | -1.1362 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.41486 | 1.2257 | 0.45097 | -0.46367 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.43333 | 1.2855 | 0.12912 | 0.63588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.083333 | 1.2941 | 1.5328 | 3.1831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.33333 | 1.3478 | 0.71016 | 0.44717 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47222 | 0.92349 | 0.19635 | -0.85241 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.51667 | 1.3055 | 0.37988 | -0.69824 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.42619 | 1.1019 | -0.87539 | 0.34803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.38651 | 1.2915 | 0.29306 | 0.10023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 1.9037 | 1.5315 | -0.37415 | -0.5972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.4436 | 1.6978 | 0.076931 | 0.095193 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 179 | 0.32737 | 1.4437 | 0.17904 | -0.29851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 231 | -0.01 | 1.5939 | 0.11149 | -0.26278 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 163 | 0.079233 | 1.5676 | 0.46238 | 0.054258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.021174 | 1.6979 | 0.41886 | 0.019326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 276 | -0.16068 | 1.5709 | 0.19824 | -0.10311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 180 | 0.0071288 | 1.6786 | 0.2163 | -0.18872 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 175 | 0.60154 | 1.6376 | 0.12578 | -0.40774 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 373 | 0.035337 | 1.5284 | 0.26747 | -0.1134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 268 | 0.3665 | 1.5682 | 0.25587 | -0.40749 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 339 | 0.065079 | 1.5763 | 0.10885 | -0.12573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 237 | 0.13977 | 1.5005 | 0.25678 | -0.075742 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 244 | 0.26088 | 1.4780 | 0.22828 | -0.27903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 222 | 0.033945 | 1.4577 | 0.31418 | 0.10647 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 337 | 0.2345 | 1.4273 | 0.34019 | -0.016022 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 221 | 0.56005 | 1.4410 | 0.23715 | -0.4858 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 171 | 0.28409 | 1.4513 | 0.14868 | -0.6193 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 304 | 0.32349 | 1.3298 | 0.16069 | -0.4808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 250 | 0.18133 | 1.4940 | 0.10097 | 0.17719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | 0.42217 | 1.2974 | 0.40147 | -0.13321 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 130 | 0.071538 | 1.4650 | 0.73259 | 0.39814 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.095455 | 1.2874 | 0.24497 | -0.24475 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | 0.17893 | 1.2405 | 0.17193 | -0.1541 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | -0.10204 | 1.2939 | 0.47382 | 0.55166 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 112 | 0.32589 | 1.4371 | 0.13904 | -0.49974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 229 | 0.31097 | 1.3870 | 0.19441 | -0.47932 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | 0.526 | 1.2748 | 0.10232 | 0.15784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 166 | 0.32258 | 1.2697 | 0.4284 | 0.20386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 120 | 0.18713 | 1.3224 | 0.097647 | -0.93743 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.3331 | 1.3857 | 0.10266 | 0.304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.052353 | 1.3480 | 0.35385 | -0.092872 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 103 | 0.34893 | 1.2740 | 0.12082 | -0.275 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 269 | 0.35388 | 1.4582 | 0.33062 | -0.35075 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | 0.23093 | 1.4694 | 0.12882 | -0.46374 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 85 | 0.74669 | 1.2850 | 0.3223 | -0.55985 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 227 | 0.34824 | 1.4894 | 0.23156 | -0.3754 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 122 | 0.07459 | 1.2053 | 0.03749 | -0.48284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.33736 | 1.3494 | 0.37958 |-0.00046676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 196 | 0.10042 | 1.2985 | 0.2923 | 0.038834 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.62467 | 1.3061 | 0.4106 | -0.57373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | -0.10133 | 1.2607 | 0.42863 | -0.40488 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | 0.44685 | 1.3037 | 0.22365 | -0.48353 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 149 | 0.55 | 1.3555 | 0.32114 | -0.11983 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 84 | 0.30621 | 1.4539 | 0.22471 | -0.32171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.49 | 1.5661 | 0.38834 | -0.26387 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.3754 | 1.2451 | 0.64259 | 0.96516 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.75 | 1.3202 | 0.055077 | -0.0046684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 181 | 0.50373 | 1.3265 | 0.11006 | -0.46693 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 48 | 0.49627 | 1.4246 | 0.12244 | -0.48897 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.08125 | 1.3381 | -0.060435 | -0.69443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.45 | 1.4259 | 0.85977 | 0.52786 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 200 | 0.1485 | 1.3110 | 0.27371 | -0.41373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.37745 | 1.3152 | 0.26384 | -0.033206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 117 | 0.23291 | 1.4345 | 0.13973 | -0.64059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.24615 | 1.2243 | 0.48063 | -0.87018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.33148 | 1.3314 | 0.29682 | -0.86302 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.46842 | 1.3694 | 0.47739 | -0.81018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.15625 | 1.2178 | -0.51512 | -0.21903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.19902 | 1.3018 | 0.2258 | -0.25938 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.37778 | 1.4305 | 0.37121 | -0.44816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31622 | 1.3341 | -0.0091835 | -0.079166 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 106 | 0.19528 | 1.2268 | 0.47825 | 0.67978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.14286 | 1.1322 | 0.40976 | -0.54869 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.42037 | 1.1408 | -0.16132 | -0.7235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.12458 | 1.2177 | 0.22936 | -0.60447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.14815 | 1.1121 | -0.048653 | -0.44286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.17857 | 1.5508 | 0.40952 | -1.1018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 369499 | 0.0011091 | 0.00027546 | 0.10765 | -1.6257 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 369499 | 0.035489 | 0.011047 | -0.48774 | -0.85225 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 36538 | 0.00043367 | 4.3480e-06 | 0.095707 | -0.96733 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 36538 | 0.018937 | 0.0049438 | 0.08171 | -1.01 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.29348 | 1.3128 | 0.019408 | -0.78371 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.031481 | 1.4358 | 1.1147 | 2.1143 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 75 | -0.0033333 | 1.3471 | -0.17439 | 0.31202 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 88 | -0.11241 | 1.1852 | 0.12805 | 1.4807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 177 | 0.07884 | 1.6296 | 0.43136 | 0.2224 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | 0.26667 | 1.3212 | 0.14759 | -0.33155 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.068519 | 1.2783 | -0.11535 | 0.51547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 34 | 0.026471 | 1.1548 | -0.20922 | -0.14512 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 93 | 0.21237 | 1.3476 | -0.10626 | -0.16954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | 0.15566 | 1.0616 | 0.11587 | 0.22569 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | -0.26944 | 2.1520 | 0.24465 | -0.51349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.074 | 1.1406 | -0.20598 | -0.060978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.142 | 1.3778 | 0.41645 | -0.34493 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.078125 | 1.0932 | -0.18533 | 0.50326 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.29 | 1.1215 | 0.33697 | -0.18013 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | 0.12959 | 1.2129 | -0.34893 | -0.70234 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.0058824 | 2.0028 | 0.53457 | 0.44988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.33462 | 1.4269 | 0.27411 | -0.19288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.38333 | 2.2429 | -0.16762 | -0.50714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.17963 | 0.99399 | 0.97096 | 0.69269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.20758 | 1.2983 | 0.02751 |-0.00069255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.45769 | 1.1307 | 0.56254 | -0.52082 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.24091 | 1.0449 | 0.28981 | -0.13563 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26026 | 1.1096 | -0.79355 | 1.3604 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.4375 | 1.5101 | 0.52715 | 0.96329 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.48462 | 1.3887 | 0.30381 | -0.28653 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 20 | 0.335 | 1.5749 | -0.3259 | 0.24139 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | 0.54286 | 1.6040 | 0.33435 | -0.058668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.55968 | 2.1191 | 0.0031544 | -0.85114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.08871 | 1.3727 | -0.58948 | 0.91708 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.375 | 1.2194 | 0.44242 | -0.67564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.2587 | 1.1538 | -0.14076 | -0.78589 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.78571 | 1.0968 | -0.45017 | 0.82893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.066667 | 1.1146 | 0.018996 | -1.1555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.43095 | 2.2208 | 0.01764 | -1.1459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 429038 | 0.00046948 | 1.2747e-05 | 0.57517 | -0.66838 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 429038 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | -0.052985 | 1.0931 | 0.097503 | -0.23203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.25263 | 1.6657 | 0.62383 | 1.2014 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.40185 | 1.3598 | 0.26612 | -0.35522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.1625 | 0.78412 | -0.017769 | -0.5366 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17632 | 1.2834 | -0.069065 | 0.46164 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.030952 | 1.4302 | -0.78301 | 0.66353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.085 | 1.3057 | -0.19544 | 0.088717 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.12867 | 1.2598 | 0.083633 | -0.30596 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.25374 | 1.7349 | 0.32321 | -0.10472 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.13257 | 1.2749 | 0.078998 | 0.3172 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | -0.006 | 1.3381 | -0.55716 | 0.03749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.041765 | 1.3898 | 0.19465 | -0.58571 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.122 | 0.98164 | -0.23296 | -0.33756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.18636 | 1.6729 | -0.15234 | -0.78213 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.16176 | 1.1987 | -0.70664 | 0.74487 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.08253 | 1.3263 | 0.1981 | -0.65915 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.18333 | 1.4554 | -0.23884 | -0.51873 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.32049 | 1.4815 | 0.77621 | 0.31124 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.62037 | 1.1251 | 0.55331 | 0.45655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.36273 | 1.4140 | 0.32622 | 0.215 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.12708 | 1.4179 | 0.48939 | 0.21795 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.080769 | 1.0224 | 0.32003 | -0.72391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 3.1347e-16 | 1.3842 | 1.1644 | 1.4899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.22742 | 0.98822 | 0.11987 | -0.79769 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.38333 | 1.3042 | 0.90062 | 0.21107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.42647 | 1.4683 | 0.97787 | -0.16799 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.01 | 1.6023 | -0.085991 | -0.55954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.034615 | 1.6014 | -0.22691 | -0.87703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.003125 | 1.5060 | 0.011794 | -1.0107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.17771 | 1.4136 | 0.27231 | -0.52026 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.015385 | 1.2338 | 1.3109 | 3.1709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.07449 | 1.1941 | 0.07678 | 0.080183 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.022727 | 1.3381 | -0.23149 | -0.85584 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.05 | 0.90686 | 0.25487 | -0.20283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.07069 | 1.1565 | 0.80364 | 0.090864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.78846 | 1.0616 | 0.11189 | 0.40279 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.21383 | 1.3259 | -0.2696 | -0.4522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.053571 | 1.2938 | 0.61678 | 0.59763 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.096154 | 1.3622 | 0.22083 | -0.14863 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.122 | 1.3061 | -0.98819 | 0.37958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.058 | 1.0692 | 0.75031 | 0.21041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4746 | 0.5634 | 0.61589 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.2625 | 1.3720 | 0.17411 | -0.85037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.48 | 1.6935 | 0.34529 | -1.2639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.063043 | 1.3601 | -0.029967 | -0.61069 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.08625 | 1.0933 | -0.13877 | -0.17451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.42391 | 1.5674 | -0.1645 | -0.94463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.87308 | 1.4020 | 0.016435 | -0.80681 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.037879 | 1.1491 | -0.35032 | 0.74753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.092857 | 1.1924 | 0.19419 | -0.10301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.50313 | 1.6144 | 0.24879 | -0.39262 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 233 | -0.14023 | 1.4935 | 0.14585 | -0.049788 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.034496 | 1.3714 | -0.025468 | -0.50901 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.10458 | 1.3735 | -0.081602 | -0.42842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 319 | 0.039545 | 1.3775 | 0.23948 | -0.080099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | -0.22615 | 1.3333 | 0.070772 | 1.0627 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | -0.0031339 | 1.3976 | 0.0717 | 0.26017 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 248 | 0.025464 | 1.4250 | 0.16368 | -0.09354 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 358 | -0.22275 | 1.3424 | 0.041326 | 0.14924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.068683 | 1.2738 | 0.24434 | 0.56318 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 250 | 0.2352 | 1.4585 | 0.10338 | -0.059422 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 409 | 0.21443 | 1.3391 | -0.017161 | 0.38465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 338 | 0.02619 | 1.4710 | -0.066149 | 0.22385 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 420 | -0.16094 | 1.2970 | 0.082399 | 0.1043 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 336 | -0.074645 | 1.4340 | 0.51956 | 0.52549 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.13174 | 1.3928 | 0.18563 | -0.14564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.08608 | 1.2591 | -0.035329 | 0.36954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 438 | -0.0074519 | 1.3626 | 0.19256 | 0.18295 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 265 | -0.16198 | 1.4058 | 0.08429 | -0.26823 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.047785 | 1.3688 | 0.11883 | 0.47978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | -0.19981 | 1.2172 | 0.30633 | 0.55252 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 284 | -0.063258 | 1.3586 | 0.12738 | 0.5629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | 0.11623 | 1.3222 | 0.12262 | -0.15323 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.15448 | 1.5331 | 0.14284 | 0.73019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 184 | 0.01997 | 1.3818 | 0.18553 | -0.51771 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 457 | -0.10689 | 1.3672 | 0.24934 | 0.45518 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 365 | 0.048333 | 1.3407 | 0.11067 | 0.40013 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | 0.12949 | 1.5093 | 0.23712 | -0.04859 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 301 | 0.085345 | 1.3968 | 0.090286 | -0.12757 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 293 | -0.30664 | 1.2150 | 0.14235 | -0.14929 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 235 | -0.05841 | 1.2707 | 0.4906 | 0.060984 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | -0.12761 | 1.4054 | -0.24805 | 0.6258 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | 0.18654 | 1.4135 | 0.23616 | 0.1764 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | 0.14908 | 1.3831 | 0.14621 | -0.050586 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 458 | 0.096279 | 1.2950 | 0.14414 | 0.19336 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.065267 | 1.3089 | 0.14622 | 0.37483 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 307 | -0.015536 | 1.3138 | 0.13005 | -0.0452 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | -0.033841 | 1.2844 | -0.022078 | 0.28344 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 120 | -0.084167 | 1.3059 | 0.39187 | 0.22782 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.099749 | 1.3360 | 0.1658 | -0.1988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 281 | -0.023872 | 1.4544 | 0.20812 | 0.34639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.062698 | 1.4658 | 0.053467 | 0.51852 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.1453 | 1.3746 | 0.011562 | 0.38039 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 163 | -0.090994 | 1.2477 | 0.0010932 | -0.50705 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | -0.11325 | 1.2487 | 0.39061 | 0.25142 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 202 | 0.044509 | 1.3555 | 0.34433 | 0.50769 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.23065 | 1.2824 | 0.32552 | 0.24408 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | -0.06746 | 1.4351 | -0.21096 | 0.16568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 162 | 0.18563 | 1.2517 | 0.39955 | 0.39226 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.11067 | 1.8502 | 0.49116 | -0.2975 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.088095 | 1.3479 | 0.17279 | 0.29022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035385 | 1.2386 | -0.033757 | 0.38701 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.014211 | 1.2671 | 0.13993 | -0.11188 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 167 | -0.18916 | 1.2761 | -0.12389 | 0.25335 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | -0.20286 | 1.5563 | 0.031437 | -0.48283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.15175 | 1.4276 | 0.027305 | -0.3988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 |-0.00091743 | 1.1678 | 0.28149 | 0.67133 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.046774 | 1.0849 | 0.0098039 | -0.18988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 195 | -0.1033 | 1.3574 | 0.053928 | -0.2338 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.14942 | 1.4906 | 0.1045 | -0.58755 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 143 | -0.17606 | 1.4757 | 0.069528 | 0.19567 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | -0.08 | 1.1748 | 0.50168 | 0.77294 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | -0.26257 | 1.3643 | -0.10073 | 0.36674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.071354 | 1.4788 | 0.56371 | 0.57826 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.039157 | 1.3164 | -0.040483 | 0.27237 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.14492 | 1.4978 | -0.1252 | -0.059177 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 131 | 0.093671 | 1.1083 | 0.16899 | 0.066213 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 115 | -0.19559 | 1.3392 | 0.046356 | -0.014435 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.44518 | 1.5008 | 0.60964 | 0.29598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.25222 | 1.2528 | -0.17089 | 0.14707 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 429035 | 0.00046326 | 2.9875e-05 | 1.6706 | 1.9975 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 429035 | 0.024734 | 0.0034516 | -0.56761 | -0.78302 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.069355 | 1.1006 | -0.30616 | 0.60485 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 15 | -1.45 | 2.1073e-08 | 1.8981e+08 | 4.0532e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.06 | 0.76129 | 0.97074 | 0.89689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.4776 | 1.4923 | -0.077548 | -0.99403 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 69 | -0.0021739 | 1.2598 | -0.11927 | 0.25754 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.18043 | 1.2505 | 1.8336 | 4.626 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.26364 | 1.2252 | 0.70289 | 0.379 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.9587 | 1.7042 | 0.29342 | -0.84966 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.089286 | 1.2785 | 0.044971 | 0.22147 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.26379 | 1.7965 | 0.66502 | -0.012852 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.0933 | -0.065522 | -0.41692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.058333 | 1.0762 | -0.21469 | -0.38325 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.405 | 1.2515 | -0.3789 | -0.41719 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.45333 | 1.9493 | 0.64982 | -0.38796 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.0575 | 1.7416 | 0.1312 | 0.87622 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.096667 | 0.80405 | -0.031441 | -0.77062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.84444 | 2.8938 | 0.046213 | -1.4761 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.018966 | 1.0967 | -0.04181 | -0.73884 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 429038 | 0.00050639 | 2.5340e-05 | -0.24672 | -1.1194 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 429038 | 0.029729 | 0.00015577 | -0.40364 | -0.82638 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 252 | -0.072128 | 1.4058 | 0.20822 | 0.5222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 279 | 0.15019 | 1.5650 | 0.00071636 | 0.5697 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 288 | 0.0054098 | 1.3706 | 0.24549 | 1.0554 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.068325 | 1.1890 | 0.3308 | 0.37478 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.081541 | 1.2280 | 0.43588 | 0.68369 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.055582 | 1.1981 | -0.025907 | 0.12438 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | -0.15183 | 1.7930 | 0.027514 | 0.44038 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 195 | 0.17694 | 1.2421 | -0.079229 | -0.18772 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.078049 | 1.3251 | -0.0059705 | -0.20244 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.17813 | 1.3703 | 0.12528 | 0.03524 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.15 | 1.3378 | 0.24802 | -0.037184 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 122 | -0.15826 | 1.8959 | 0.080597 | 0.22151 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.36364 | 1.4658 | 0.33003 | 0.34538 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | -0.020521 | 1.4927 | 0.082051 | 0.58388 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.2625 | 1.2763 | -0.046228 | -0.75999 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.11739 | 1.3422 | 0.37563 | 0.31346 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.32009 | 1.6485 | -0.34197 | -0.3694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 169 | -0.031419 | 1.3335 | 0.0089485 | -0.089123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.08381 | 1.3507 | 0.53875 | 0.89756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | -0.043056 | 1.7719 | 0.22245 | -0.2946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | -0.25361 | 1.4209 | -0.065965 | 0.055146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.043023 | 1.4841 | 0.16916 | -0.039981 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | -0.041241 | 1.3131 | 0.38957 | 0.06229 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 131 | -0.10934 | 1.3750 | 0.33213 | 1.1233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.053008 | 1.3431 | -0.44796 | 0.12653 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.072843 | 1.3774 | -0.21774 | -0.26076 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1 | -0.95 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.23571 | 1.1983 | -0.57165 | 0.50735 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 91 | 0.11154 | 1.2724 | 0.3842 | 0.071047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.09898 | 1.3473 | -0.093106 | -0.52264 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.058835 | 1.3061 | 0.16611 | 0.31197 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.083099 | 1.3402 | -0.12085 | 0.4114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.3871 | 1.3857 | -0.33586 | -0.26963 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.22708 | 1.3289 | 0.21623 | -0.047713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.35137 | 2.1487 | -0.21274 | -0.3359 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 204 | 0.10588 | 1.3681 | 0.10509 | -0.09234 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15 | -0.59 | 2.0774 | 0.20348 | -1.4233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.20517 | 1.4730 | -0.1198 | -0.45855 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.088 | 1.4271 | 0.36465 | 0.52618 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.13696 | 1.3069 | -0.30819 | 0.01875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.025 | 1.1784 | 0.45381 | -0.749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.13421 | 1.0384 | -0.27016 | -0.51272 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.19409 | 1.4557 | 0.50756 | 1.1918 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 151 | -0.12128 | 1.3916 | 0.12076 | 1.0786 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.10789 | 1.2229 | 0.37722 | 1.1076 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.035455 | 1.3608 | 0.71943 | 1.0716 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 92 | -0.032609 | 1.3791 | 0.011962 | -0.25935 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.14333 | 1.1922 | 0.1203 | 0.33433 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.16455 | 1.3208 | -0.31709 | 0.10681 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.52273 | 1.5955 | -0.27825 | -1.1972 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.60667 | 1.1248 | 0.7211 | -0.61558 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.12848 | 1.6134 | 0.13697 | -0.03767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.045946 | 1.2437 | -0.1565 | 0.17187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.083333 | 1.3029 | 0.55573 | -0.77959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.22195 | 1.3855 | -0.13586 | -0.49029 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14375 | 1.1014 | 0.4558 | -0.96675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.21875 | 1.4936 | -0.11778 | -0.4905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.063333 | 1.2194 | 0.0015124 | -0.85196 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.518 | 1.3939 | 0.7488 | -0.04871 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.29545 | 1.4514 | 0.28156 | -0.30471 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.13 | 1.4838 | 0.36159 | -0.52201 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | -0.14818 | 1.1681 | -0.40845 | -0.12152 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.60185 | 1.2084 | -0.32585 | -0.21646 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.12196 | 1.3960 | -0.024983 | -0.16727 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.21429 | 1.0737 | -0.11399 | -0.7672 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.28077 | 1.1544 | 0.14668 | 0.16498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.0055556 | 1.2888 | 0.096441 | -0.0080159 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.56667 | 1.2181 | 0.59013 | 0.33208 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.25 | 1.3968 | -0.78889 | 0.93659 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.031944 | 1.2734 | 0.30859 | -0.35954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.039655 | 1.6894 | 0.0015186 | -0.27715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.22917 | 1.4500 | -0.16624 | -0.16885 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.22429 | 1.4035 | 0.8291 | 1.2926 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.056667 | 1.4770 | 0.74986 | 0.9181 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.09 | 1.2463 | -0.10686 | -0.1418 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.38226 | 1.2758 | -0.19427 | -0.37921 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.39545 | 1.3361 | 0.30937 | -0.76395 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.021739 | 1.3593 | 0.31093 | -0.062168 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.056522 | 1.3321 | -0.13909 | -0.41495 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.028788 | 1.1849 | 1.4633 | 3.2818 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.028947 | 1.5693 | 0.26163 | -0.78734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52037 | 1.3232 | -0.46621 | -0.11462 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.1537 | 1.1130 | -0.16973 | -0.16171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.26702 | 1.2602 | 0.021112 | -0.47556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.0029412 | 0.93816 | -0.51335 | -0.91392 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.32619 | 1.6195 | -0.69526 | 0.020216 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | -0.034375 | 1.2443 | 0.42873 | 1.1108 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.28125 | 1.3075 | 0.06587 | -1.1005 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 702 | 0.097063 | 1.5199 | 0.27128 | 0.59029 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1489 | 0.040669 | 1.3613 | 0.15282 | 0.38559 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4239 | 0.022117 | 1.3451 | 0.0022417 | 0.44259 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3973 | 0.018669 | 1.3793 | 0.075236 | 0.49691 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3323 | -0.01073 | 1.3490 | -0.037161 | 0.45651 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3464 | 0.016635 | 1.3481 | 0.025459 | 0.5722 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3671 | 0.034595 | 1.3576 | 0.020642 | 0.34126 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3432 | 0.038274 | 1.3119 | 0.13809 | 0.64101 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2589 | 0.013627 | 1.3432 | 0.16337 | 0.53041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2656 | 0.004337 | 1.4325 | 0.12643 | 0.51538 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3172 | 0.0080423 | 1.3408 | 0.14664 | 0.54661 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2450 | 0.053783 | 1.3929 | 0.16233 | 0.3398 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2508 | 0.032641 | 1.3676 | 0.041829 | 0.64702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2537 | 0.026731 | 1.3763 | 0.098708 | 0.53333 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2735 | -0.020829 | 1.3515 | 0.15819 | 0.57623 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1930 | 0.048644 | 1.3802 | 0.066499 | 0.39079 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2410 | 0.035398 | 1.3891 | -0.023556 | 0.40849 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1988 | 0.062135 | 1.4099 | 0.15102 | 0.29689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1894 | 0.038133 | 1.4247 | 0.02765 | 0.18374 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2225 | -0.023302 | 1.3209 | 0.066307 | 0.33724 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | -0.03986 | 1.3211 | 0.1024 | 0.44368 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1701 | 0.026146 | 1.3869 | 0.099862 | 0.28996 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1461 | 0.059121 | 1.4342 | 0.16288 | 0.40044 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1818 | 0.014152 | 1.3913 | 0.051702 | 0.20413 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1425 | -0.010577 | 1.3769 | 0.05941 | 0.50839 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2079 | 0.063609 | 1.3322 | 0.061922 | 0.16469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1492 | -0.02182 | 1.3756 | 0.20072 | 0.43968 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1308 | 0.00065593 | 1.3726 | 0.19803 | 0.37263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1286 | 0.01816 | 1.3184 | 0.18621 | 0.094468 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1519 |-0.00011885 | 1.3776 | 0.10403 | 0.50636 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1190 | 0.091119 | 1.5121 | 0.20991 | 0.48367 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1397 | -0.028327 | 1.4398 | 0.0247 | 0.6166 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 939 | 0.07218 | 1.4144 | 0.087865 | 0.4472 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1079 | 0.0099804 | 1.4036 | 0.0975 | 0.16503 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | -0.065207 | 1.3998 | -0.041372 | 0.44874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1234 | 0.012057 | 1.4030 | 0.14193 | 0.67954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1113 | -0.042384 | 1.3889 | -0.017872 | 0.55516 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 839 | -0.0731 | 1.4247 | 0.01286 | 0.55676 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | -0.016667 | 1.4190 | 0.040934 | 0.17772 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 703 | 0.032384 | 1.3457 | 0.21601 | 0.41272 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 827 | 0.088928 | 1.3495 | -0.040778 | 0.40146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 688 | 0.094503 | 1.3726 | 0.13494 | 0.05137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 695 | 0.021953 | 1.3386 | 0.17277 | 0.18609 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 592 | 0.094366 | 1.4711 | -0.11439 | 0.41722 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 527 | 0.085282 | 1.3740 | 0.1261 | 0.18749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 575 | 0.065877 | 1.3899 | 0.15453 | 0.37721 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 679 | -0.0037554 | 1.3561 | 0.16385 | 0.25777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 600 | -0.090925 | 1.4130 | 0.26003 | 0.089012 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 478 | 0.10625 | 1.4267 | 0.33333 | 0.31873 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 554 | 0.0025813 | 1.3901 | 0.17687 | 0.53066 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 461 | -0.035198 | 1.2978 | 0.076694 | -6.565e-05 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 483 | -0.026403 | 1.2484 | 0.10656 | 0.19436 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.12888 | 1.2889 | 0.01217 | 0.27021 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 671 | -0.015074 | 1.3585 | 0.010213 | 0.038876 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 599 | -0.009476 | 1.3092 | 0.044449 | 0.29191 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 462 | 0.11659 | 1.3309 | 0.2402 | 0.33532 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 318 | -0.058307 | 1.3702 | -0.060908 | 0.40358 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | -0.12339 | 1.4054 | -0.095767 | 0.52027 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 181 | 0.028485 | 1.6951 | 0.29718 | 0.088532 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 405 | 0.026153 | 1.2890 | 0.355 | 0.91439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 417 | -0.0045209 | 1.2966 | -0.0029604 | 0.048958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | 0.0084169 | 1.3971 | 0.21508 | 0.0044779 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | 0.16494 | 1.3850 | 0.043912 | 0.0091303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 419 | 0.14852 | 1.6072 | -0.16708 | 0.45856 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.15031 | 1.2689 | 0.19309 | 0.54824 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.055378 | 1.3345 | 0.21112 | 0.052458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 289 | 0.11628 | 1.3995 | -0.039897 | 0.67142 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | -0.041214 | 1.3677 | 0.29114 | 0.30398 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 358 | 0.085842 | 1.2745 | 0.17469 | 0.55024 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 429038 | 0.00045104 | 8.5754e-06 | 0.85903 | -0.27589 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 429038 | 0.029571 | 0.00023106 | -0.21537 | -1.0258 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 99 | -0.1625 | 1.3667 | 0.35607 | -0.48119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.25128 | 1.4959 | 0.88124 | 0.66328 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.37308 | 1.2503 | 0.33117 | 0.1255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31892 | 1.4476 | 0.73699 | -0.10273 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.926 | 1.1842 | 0.26758 | 0.052368 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.023611 | 1.2330 | 0.14708 | -0.15686 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.29286 | 1.5060 | 0.52731 | -0.60123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.10686 | 1.4352 | 0.016942 | -0.93326 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 67 | -0.094776 | 1.3048 | -0.16816 | -0.0048986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.02037 | 1.1900 | 0.61524 | -0.2304 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | -0.3686 | 1.5243 | 0.33184 | 0.92523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.31163 | 1.2777 | -0.075516 | -0.82258 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 3 | -0.58333 | 1.7913 | -0.54546 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 115 | -0.17105 | 1.4792 | 0.22128 | 0.47106 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 101 | -0.16011 | 1.5693 | 0.43009 | -0.080254 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.445 | 1.1604 | 0.63245 | 0.63809 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 62 | 0.18226 | 1.5266 | 0.29543 | -0.3566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.13194 | 1.4016 | 0.36292 | 0.0010713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.78125 | 1.5755 | 0.94496 | 0.086866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.40882 | 1.4841 | 0.13002 | 0.27125 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 71 | 0.21479 | 1.1063 | -0.1643 | 0.0076409 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.040625 | 1.3399 | 0.45795 | -0.0064169 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 82 | -0.20556 | 1.4015 | 0.072095 | -0.30022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.8375 | 0.99176 | 0.54461 | -0.099221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.474 | 1.2176 | 0.30575 | -0.91293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.05 | 0.91537 | 0.49572 | -0.56994 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.3875 | 1.4679 | -0.20325 | -0.69123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.48333 | 1.3250 | -0.24075 | 0.825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.75714 | 1.3572 | 1.2193 | 0.92192 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 8 | -0.6375 | 1.8141 | -0.44461 | -1.3057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.8 | 1.1375 | -0.092012 | -1.2943 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.7587 | 2.4324 | -0.34573 | -1.0182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.44762 | 1.1977 | 0.081769 | 1.1261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 0.90856 | -0.35171 | -0.64643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.21667 | 1.9997 | 0.11094 | -0.33566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 1.7744 | -0.3291 | -0.68946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.3 | 1.5944 | 0.24717 | -0.6557 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 12 | -0.23333 | 1.0574 | -0.07168 | -0.89195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | -0.12353 | 1.3546 | 0.3963 | -0.64726 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.24259 | 1.0565 | 0.29156 | -0.54127 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.061594 | 1.3629 | -0.29327 | 0.40652 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.17162 | 1.5885 | -0.045617 | -0.585 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.27903 | 1.1303 | 0.53019 | 0.29037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | -0.15606 | 0.88384 | -0.42034 | -0.53987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.21667 | 1.4059 | 0.82902 | 0.37047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.013158 | 1.8664 | 0.5025 | -0.29442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | -0.10769 | 1.3939 | -0.077509 | 0.52334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.016667 | 1.3047 | 0.14097 | -0.16064 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.13571 | 1.3929 | -0.27999 | -0.86613 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.294 | 1.5502 | 0.49772 | 1.2109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.265 | 1.1244 | 0.44821 | -0.96387 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | 0.3268 | 1.4740 | -0.05542 | -0.16061 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 6 | -0.97222 | 1.1123 | 0.23804 | -1.106 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.7125 | 1.5976 | 0.19762 | -0.79182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | 0.081667 | 2.0493 | 0.18707 | -0.87334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | -0.19156 | 1.3107 | -0.23062 | -0.23034 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.39712 | 1.6185 | 0.048581 | -0.4931 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 75 | 0.19459 | 1.5721 | 0.064728 | -0.68701 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | -0.74259 | 1.8155 | 0.7309 | 0.62486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | -0.4455 | 1.4970 | -0.011189 | -0.56441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | -0.081551 | 1.4705 | 0.22958 | -0.6241 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.23242 | 1.4505 | -0.34716 | -0.36354 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 133 | 0.059756 | 1.4476 | -0.39001 | -0.30468 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 78 | -0.44097 | 1.5911 | -0.47306 | -0.052167 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.19775 | 1.7091 | 0.48602 | 0.33265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.058397 | 1.4803 | 0.27498 | 0.28928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 121 | -0.26886 | 1.6371 | 0.19593 | 0.20817 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 96 | 0.38021 | 1.4489 | 0.32299 | 0.068846 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.098571 | 1.4856 | 0.21257 | -0.70427 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.14486 | 1.2820 | 0.027501 | -0.58923 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 95 | -0.33398 | 1.3011 | 0.22769 | -0.20866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 115 | -0.27105 | 1.3828 | -0.051696 | 0.53033 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.087838 | 1.4801 | 0.0080274 | 0.017157 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.16513 | 1.3082 | 0.055232 | -0.16827 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 92 | -0.088194 | 1.5693 | 0.45523 | 0.065302 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | -0.038657 | 1.3971 | 0.090812 | 0.23825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | 0.49167 | 1.4169 | 0.30956 | -0.32564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | -0.19764 | 1.3531 | 0.27531 | -0.11849 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 135 | 0.2798 | 1.3989 | 0.23821 | -0.27189 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 81 | -0.10973 | 1.5350 | 0.16321 | 0.56375 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.0475 | 1.4038 | -0.093344 | -0.1679 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | -0.20345 | 1.3172 | 0.29053 | -0.15836 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 119 | -0.034804 | 1.3438 | -0.22939 | -0.17661 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 126 | -0.002381 | 1.3883 | 0.23548 | -0.032265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | -0.23155 | 1.5000 | 0.46806 | -0.18308 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.05 | 1.2666 | 1.1596 | 1.0629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.54727 | 1.4458 | -0.1122 | 0.8568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.082813 | 1.2269 | -0.04982 | -0.19862 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | -0.11596 | 1.3690 | 0.032457 | -0.11395 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.30692 | 1.8575 | 0.43962 | 0.16673 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.43421 | 1.4460 | 0.39308 | 0.20277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | -0.21667 | 1.5910 | 0.45696 | -0.20306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.31854 | 1.3248 | 0.20473 | 0.7639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.088462 | 1.4562 | 0.61293 | 0.10525 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.015217 | 1.0321 | -0.11079 | -0.54924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | 0.13103 | 1.3579 | 0.30719 | -0.27246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.21105 | 1.2958 | 0.4124 | -0.2054 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.10854 | 1.2508 | -0.056889 | -0.20204 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.57439 | 1.1348 | -0.038986 | -0.76715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.23305 | 1.2447 | -0.17604 | 0.53882 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 226767 | 0.00049032 | 6.8039e-05 | 0.82275 | -0.98789 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 226767 | 0.020476 | 0.0051691 | -0.19199 | -1.0509 | RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270137 |-0.00043719 | 0.83190 |-0.00064222 | -1.1858 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270137 |-0.00043719 | 0.83190 |-0.00064222 | -1.1858 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270137 | -0.022651 | 0.80955 | 0.040122 | -1.0687 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270137 | -0.0010169 | 0.83206 | 0.00054783 | -1.1888 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135328 | 0.70521 | 0.29970 | 0.30814 | -0.021758 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135328 | -0.67015 | 0.32104 | 0.022916 | 0.40485 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135328 | -0.045861 | 0.18529 | 0.054842 | 2.5389 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.52023 | 17.581 | 0.019736 | 4.5236 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.42777 | 18.120 | -0.021896 | 4.1548 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | 6.5451 | 332.04 | 0.10286 | -1.1575 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | -0.95267 | 77.551 | -0.046062 | 1.7666 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1.5948 | 79.694 | -0.11551 | 1.5809 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1502.5 | 331.87 | -0.099792 | -1.1612 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | -1.551 | 78.478 | -0.052308 | 1.5602 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1.0295 | 81.412 | -0.13133 | 1.4919 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1509.4 | 13.246 | 10.874 | 184.58 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134809 | 0.62913 | 0.28039 | 0.70812 | 5.2261 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134809 | -0.57969 | 0.31892 | 0.74596 | 5.5264 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134809 | -0.047171 | 0.19014 | -0.48308 | 10.295 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | -0.54245 | 17.311 | 0.05852 | 4.5157 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | -0.43613 | 17.797 | -0.010206 | 4.0935 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | 7.2226 | 331.18 | 0.098217 | -1.1504 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 7.6903 | 76.449 | -0.11297 | 1.8563 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 1.1817 | 78.354 | -0.057336 | 1.5678 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 1502.1 | 330.98 | -0.096038 | -1.1536 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134809 | 0.005011 | 0.046403 | -0.091193 | 0.20112 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134809 | 0.005011 | 0.046403 | -0.091193 | 0.20112 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 7.2144 | 77.623 | -0.14725 | 1.7775 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 0.87479 | 79.868 | -0.018844 | 1.5045 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 1509.7 | 14.404 | 9.9833 | 148.87 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134809 | 0.0055878 | 0.046403 | -0.091926 | 0.1973 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134809 | 0.0055878 | 0.046403 | -0.091926 | 0.1973 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.5588 | 10.272 | 0.20144 |-0.00024619 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 30.894 | 12.005 | 0.021809 | -0.18776 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 26.928 | 10.928 | -0.26704 | -0.37108 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 5.0352 | 12.250 | 0.38291 | -0.3098 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 22.077 | 10.904 | -0.12169 | -1.0391 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 9.6818 | 12.677 | 1.3374 | 1.4165 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.391 | 11.276 | -0.011553 | -0.69247 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6063 | 51.369 | 11.549 | -0.1748 | -0.12799 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 5.3909 | 11.406 | 0.097688 | -0.15528 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6226 | 33.571 | 10.648 | 0.21813 | -0.24288 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 23.253 | 10.532 | -0.1581 | -0.32789 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 8.375 | 6.1122 | -0.47127 | -1.0648 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 28.5 | 6.4807 | 0.40658 | -1.2634 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2801 | -43.657 | 24.209 | -0.90773 | -1.1691 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2801 | -56.384 | 1.2551 | 0.29302 | 0.10383 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2801 | 0.014013 | 1.1775 | -0.058785 | 0.032853 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2801 | -0.020796 | 1.1495 | 0.015168 | -0.049243 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 954 | 0.28703 | 0.28279 | 5.5882 | 48.799 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 954 | 0.018171 | 0.28458 | -1.9718 | 23.252 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 954 | -0.074764 | 0.27805 | -3.9374 | 46.959 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | -1.643 | 30.220 | -0.033729 | 0.0784 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | -0.28355 | 15.249 | -0.1754 | 3.9039 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | 28.664 | 540.80 | -0.030778 | -1.1926 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | -234.53 | 330.37 | 0.93335 | 2.0762 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | 4.2087 | 298.84 | 0.11401 | 1.6247 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | 10412 | 540.61 | 0.043137 | -1.1735 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 954 | -0.0446 | 0.033826 | 0.77754 | 1.2094 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 954 | -0.0446 | 0.033826 | 0.77754 | 1.2094 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | -235.55 | 330.84 | 0.96593 | 2.0364 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | 3.5376 | 298.35 | 0.097838 | 1.4356 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | 10441 | 39.474 | 0.47154 | 0.66271 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 954 | -0.044668 | 0.033863 | 0.77622 | 1.1924 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 954 | -0.044668 | 0.033863 | 0.77622 | 1.1924 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1820 | 0.30728 | 0.30242 | 7.0493 | 73.01 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1820 | 0.036247 | 0.27348 | 2.0208 | 24.723 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1820 | -0.062727 | 0.32735 | 1.8867 | 63.427 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | -0.89091 | 33.484 | -0.018476 | -0.078396 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | 0.11888 | 14.327 | -0.20963 | 3.6924 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | -14.438 | 550.18 | 0.047422 | -1.1658 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | 347.81 | 242.74 | -0.099534 | 4.2006 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | -1.1237 | 282.08 | -0.11692 | 1.5893 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | 10461 | 551.48 | -0.030698 | -1.1523 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1820 | 0.055906 | 0.025341 | -0.12573 | 2.2405 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1820 | 0.055906 | 0.025341 | -0.12573 | 2.2405 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | 346.44 | 237.81 | -0.2049 | 4.2478 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | -0.72727 | 281.79 | -0.14593 | 1.5554 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | 10446 | 38.664 | 0.75484 | 1.0542 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1820 | 0.055869 | 0.025263 | -0.12826 | 2.2628 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1820 | 0.055869 | 0.025263 | -0.12826 | 2.2628 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 9.04 | 11.602 | 1.0818 | 0.29142 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 1.4545 | 0.74966 | 2.2149 | 6.7933 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 242 | 35.029 | 4.3276 | -1.1943 | 2.8127 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.1718 | 6.1864 | 0.017827 | 0.18293 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 89 | 1.4719 | 0.86232 | 2.3998 | 7.4578 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 89 | 31.579 | 4.0118 | -0.55145 | 1.0239 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 6.7857 | 7.0720 | 1.2673 | 3.0484 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 33.8 | 4.9810 | -0.78538 | -0.57551 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3143 | 30.341 | 7.3089 | -0.41067 | 1.0987 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3143 | 4.8102 | 6.5351 | 0.27734 | 0.966 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1451 | 1.5389 | 0.84439 | 1.7906 | 3.3591 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1451 | 34.153 | 3.7980 | -0.97708 | 3.3654 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.2143 | 6.2890 | -0.084322 | -0.63149 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 24 | 1.1667 | 0.47140 | 2.8726 | 7.3594 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 24 | 29.917 | 2.5644 | 0.42241 | -0.15608 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 273173 |-0.00044038 | 0.83251 | -0.0013434 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 273173 |-0.00044038 | 0.83251 | -0.0013434 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 273173 | -0.042885 | 0.80886 | 0.074779 | -1.0626 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 273173 |-0.00051067 | 0.83203 | 0.0013384 | -1.1885 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 136376 | 0.63314 | 0.38853 | 0.75214 | -0.10771 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 136376 | -0.57758 | 0.42589 | -0.4645 | -0.081312 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 136376 | -0.051434 | 0.18890 | 0.12705 | 2.4399 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | -0.52519 | 17.402 | 0.027776 | 4.7341 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | -0.41036 | 17.997 | -0.028022 | 4.3129 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | 9.1248 | 331.94 | 0.10601 | -1.1601 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 2.3198 | 76.715 | -0.13215 | 1.8997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 3.1931 | 79.175 | -0.14768 | 1.6664 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 1503.9 | 331.72 | -0.10303 | -1.1636 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 136376 | 0.00059302 | 0.046858 | -0.083819 | 0.3704 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 136376 | 0.00059302 | 0.046858 | -0.083819 | 0.3704 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 1.5274 | 78.323 | -0.16656 | 1.7538 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 2.465 | 80.743 | -0.20511 | 1.516 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 1512.4 | 12.148 | 8.5758 | 133.69 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 136376 | 0.0011718 | 0.046705 | -0.083026 | 0.38463 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 136376 | 0.0011718 | 0.046705 | -0.083026 | 0.38463 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 136797 | 0.54717 | 0.35010 | 1.0699 | 2.2868 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 136797 | -0.46746 | 0.40576 | -0.20764 | 1.51 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 136797 | -0.056376 | 0.19221 | -0.52773 | 8.5168 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136797 | -0.48104 | 17.138 | 0.085733 | 4.7626 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136797 | -0.35826 | 17.616 | 0.0069519 | 4.3339 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136797 | 9.0852 | 330.53 | 0.10099 | -1.1496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136797 | 11.379 | 75.346 | -0.20824 | 2.1175 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136797 | 3.8642 | 77.582 | -0.10584 | 1.7196 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136797 | 1504.1 | 330.36 | -0.098843 | -1.1532 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 136797 | 0.007467 | 0.045473 | -0.19304 | 0.38357 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 136797 | 0.007467 | 0.045473 | -0.19304 | 0.38357 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136797 | 11.027 | 77.010 | -0.22398 | 2.0823 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136797 | 3.6193 | 79.219 | -0.070307 | 1.6445 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136797 | 1512.6 | 14.017 | 8.7478 | 118.41 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 136797 | 0.0079206 | 0.045335 | -0.1934 | 0.39361 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 136797 | 0.0079206 | 0.045335 | -0.1934 | 0.39361 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 86 | 50.209 | 10.999 | -0.0037722 | -0.3841 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 86 | 9.0581 | 10.522 | 0.15999 | -0.11799 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 30.855 | 11.962 | 0.068005 | -0.19676 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1012 | 27.638 | 10.922 | -0.23263 | -0.44055 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 152 | 48.179 | 11.703 | -0.16163 | 0.3132 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 152 | 7.9305 | 11.604 | -0.19238 | -0.47342 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 152 | 31.757 | 10.310 | 0.51502 | 0.17126 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 152 | 24.692 | 10.224 | -0.47191 | -0.22025 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 12 | 48.583 | 13.307 | -1.1437 | 0.73781 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 11.583 | 13.086 | 0.94841 | 0.50549 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 50 | 34.42 | 11.795 | 0.23197 | -0.64997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 24.88 | 11.060 | -0.14905 | -0.63742 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6055 | 51.264 | 11.588 | -0.18641 | -0.09748 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 5.991 | 11.444 | 0.10642 | -0.16927 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6225 | 33.452 | 10.683 | 0.22705 | -0.26867 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 23.885 | 10.603 | -0.1654 | -0.36673 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 18 | 45.778 | 7.3527 | -0.24026 | -0.5922 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 10.444 | 7.1839 | 0.33054 | -0.76554 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 19 | 26.895 | 6.7426 | 0.18969 | -1.0886 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 29.342 | 7.4640 | 0.27573 | -1.1996 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 3550 | -42.437 | 23.627 | -1.0333 | -0.92442 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 3550 | -56.387 | 1.2393 | 0.26681 | 0.068756 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 3550 | 0.014507 | 1.1618 | -0.035739 | -0.022209 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 3550 | -0.0053521 | 1.1308 | 0.0063706 | -0.067088 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 1122 | 0.26979 | 0.26378 | 5.8171 | 56.472 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 1122 | 0.0080075 | 0.28241 | -0.56311 | 22.354 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 1122 | -0.064311 | 0.24573 | -2.4818 | 30.743 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1122 | -0.92338 | 27.147 | -0.0022028 | 0.41528 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1122 | 0.091792 | 15.331 | 0.076502 | 4.2283 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1122 | 22.1 | 542.78 | -0.03123 | -1.2507 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1122 | -193.42 | 306.17 | 0.90073 | 2.1847 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1122 | 13.375 | 291.83 | 0.013424 | 1.2637 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1122 | 10411 | 543.07 | 0.043911 | -1.2285 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 1122 | -0.038601 | 0.031088 | 0.64835 | 1.3357 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 1122 | -0.038601 | 0.031088 | 0.64835 | 1.3357 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1122 | -193.56 | 305.90 | 0.93775 | 2.1845 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1122 | 13.244 | 292.08 | 0.0063148 | 1.0984 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1122 | 10433 | 36.981 | 0.67277 | 1.2091 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 1122 | -0.038695 | 0.031059 | 0.64801 | 1.3419 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 1122 | -0.038695 | 0.031059 | 0.64801 | 1.3419 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 2395 | 0.29427 | 0.29535 | 6.6573 | 66.271 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 2395 | 0.04207 | 0.26182 | 1.7438 | 23.445 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 2395 | -0.069376 | 0.31670 | 1.014 | 57.704 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2395 | -0.80198 | 31.901 | -0.022832 | -0.034076 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2395 | 0.23757 | 13.393 | -0.23946 | 3.7043 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2395 | -12.553 | 550.34 | 0.03457 | -1.1658 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2395 | 338.64 | 222.90 | -0.1023 | 4.8778 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2395 | 28.203 | 261.68 | -0.069384 | 1.7324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2395 | 10457 | 551.15 | -0.024776 | -1.1539 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 2395 | 0.053293 | 0.024270 | -0.048704 | 2.281 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 2395 | 0.053293 | 0.024270 | -0.048704 | 2.281 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2395 | 337.42 | 218.72 | -0.20518 | 4.9148 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2395 | 28.721 | 261.29 | -0.10278 | 1.7134 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2395 | 10444 | 36.675 | 0.67439 | 1.1629 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 2395 | 0.053256 | 0.024204 | -0.048692 | 2.3067 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 2395 | 0.053256 | 0.024204 | -0.048692 | 2.3067 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 65 | 26.754 | 11.297 | -0.72612 | 0.013523 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 65 | 9.6692 | 11.511 | 0.97908 | 0.074916 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 297 | 1.4613 | 0.69584 | 1.4875 | 1.8158 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 297 | 34.948 | 4.2803 | -1.0623 | 2.4168 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 376 | 27.077 | 7.0949 | 0.30857 | 2.1048 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 376 | 4.5798 | 6.6958 | -0.22982 | 3.0367 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 157 | 1.4713 | 0.76183 | 1.4796 | 1.2193 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 157 | 30.704 | 3.7616 | -0.06985 | 0.54781 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 28 | 31.607 | 7.8619 | -0.41962 | 0.74912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 4.6786 | 6.7351 | 1.1464 | 3.6166 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 13 | 1.4615 | 0.74580 | 1.2443 | -0.070847 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 35.423 | 5.0606 | -1.0875 | 0.18901 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3832 | 30.261 | 7.3151 | -0.46198 | 1.1952 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3832 | 5.0191 | 6.6203 | 0.33791 | 1.2523 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1807 | 1.5169 | 0.83080 | 1.8167 | 3.5024 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1807 | 34.161 | 3.6880 | -1.0179 | 3.5047 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 68 | 24.735 | 7.0786 | -0.34824 | 0.55941 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 68 | 5.5 | 6.9176 | 0.36118 | 0.11281 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 31 | 1.2581 | 0.62050 | 3.0012 | 9.654 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 31 | 28.758 | 2.7116 | -0.14723 | 0.010057 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 35.857 | 25.579 | 0.13257 | -1.3584 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 61.412 | 12.317 | -0.2264 | -1.3816 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 50.391 | 18.950 | -0.24489 | -1.1133 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 60.429 | 12.146 | -0.22753 | -1.3605 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 59.706 | 12.007 | -0.2186 | -1.3246 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.132 | 21.794 | 0.097609 | -1.0388 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 25.099 | 13.887 | -0.13475 | -1.0541 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4851 | 54.759 | 2.5392 | 0.90652 | 1.7081 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4849 | 35.538 | 9.5027 | 0.089436 | -1.028 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4851 | 53.875 | 2.3966 | 0.91168 | 2.0896 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4851 | 53.222 | 2.3480 | 0.81346 | 2.1334 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 24.825 | 16.068 | 0.074283 | -1.3375 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 897 | 35.403 | 22.394 | 0.088701 | -1.0997 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 9015 | 62.778 | 9.8006 | -0.21807 | -1.0022 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9015 | 49.943 | 18.939 | -0.19477 | -1.1242 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9015 | 61.912 | 9.5959 | -0.22411 | -0.97955 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9015 | 61.244 | 9.5431 | -0.22685 | -0.95969 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3605 | 40.703 | 24.095 | -0.10525 | -1.2225 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 19.4 | 13.450 | 0.33556 | -0.93127 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 5943 | 54.503 | 2.3992 | 0.9682 | 2.206 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5941 | 38.179 | 9.2239 | -0.36088 | -0.94815 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5943 | 53.751 | 2.2483 | 0.93107 | 2.4958 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5943 | 53.199 | 2.1930 | 0.81006 | 2.4739 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 3077 | 24.427 | 14.065 | -8.227e-05 | -1.0883 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 498 | 242.25 | 187.82 | 0.21848 | -1.3661 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 596.99 | 21.400 | -8.9287 | 110.85 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 361.92 | 134.95 | -0.22441 | -1.0797 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 586.2 | 21.542 | -8.2536 | 99.223 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 578.2 | 22.741 | -6.6777 | 74.273 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.72 | 161.34 | 0.19472 | -0.96753 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 455 | 152.59 | 90.414 | -0.10572 | -1.1156 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4878 | 344.82 | 16.615 | 1.08 | 2.8955 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4878 | 224.95 | 59.269 | 0.092668 | -1.0173 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4878 | 339.42 | 15.760 | 1.0858 | 3.2972 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4878 | 335.22 | 15.515 | 0.98809 | 3.3119 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1873 | 150.12 | 103.31 | 0.12295 | -1.351 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 955 | 236.48 | 161.29 | 0.16357 | -1.0923 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 9015 | 601.68 | 19.356 | -8.2889 | 102.49 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9015 | 373.59 | 141.14 | -0.21809 | -1.1208 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9015 | 591.19 | 19.550 | -7.5229 | 89.261 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9015 | 583.39 | 21.037 | -5.7564 | 61.696 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3748 | 285.77 | 175.89 | -0.075619 | -1.2402 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 571 | 115.83 | 86.238 | 0.39247 | -0.93109 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 5968 | 343.16 | 15.674 | 1.1305 | 3.4718 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5968 | 241.32 | 57.534 | -0.35591 | -0.93709 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5968 | 338.49 | 14.788 | 1.1126 | 3.7983 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5968 | 334.98 | 14.435 | 0.99794 | 3.8359 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 3188 | 150.63 | 90.355 | 0.0076071 | -1.1157 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2840 | 1905.9 | 94.223 | 0.5575 | 1.6633 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2116 | 1083.6 | 24.479 | 0.88188 | 1.1699 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 3219 | 1897.8 | 90.428 | 0.62248 | 2.0317 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 25.684 | 18.262 | 0.15589 | -1.2768 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 58.843 | 3.9329 | -1.3387 | 9.0775 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 35.25 | 13.823 | -0.14111 | -1.0199 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 57.77 | 3.9010 | -1.3071 | 8.7305 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 56.968 | 3.9270 | -1.1985 | 7.822 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.735 | 15.782 | 0.23527 | -0.85021 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 17.006 | 9.5311 | -0.081481 | -0.99082 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4851 | 35.961 | 4.8698 | -1.3942 | 3.7162 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4849 | 23.598 | 6.9413 | 0.054903 | -0.76045 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4851 | 35.381 | 4.7794 | -1.4319 | 3.8015 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4851 | 34.953 | 4.7206 | -1.454 | 3.8972 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 16.729 | 10.879 | 0.10314 | -1.2787 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 897 | 24.318 | 15.621 | 0.17534 | -0.96426 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 9015 | 59.31 | 3.8791 | -0.86895 | 5.5836 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9015 | 36.467 | 14.475 | -0.13916 | -1.065 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9015 | 58.265 | 3.8374 | -0.84503 | 5.3145 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9015 | 57.49 | 3.8821 | -0.75347 | 4.6387 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3605 | 28.835 | 17.213 | -0.040756 | -1.1406 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 13.209 | 9.2471 | 0.36429 | -0.86089 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 5943 | 35.94 | 4.5586 | -1.409 | 4.218 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5941 | 25.376 | 6.7758 | -0.29089 | -0.66944 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5943 | 35.452 | 4.4785 | -1.4609 | 4.3739 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5943 | 35.086 | 4.4265 | -1.4924 | 4.4833 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 3077 | 16.421 | 9.5783 | 0.063091 | -1.0126 | RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | @@ -1424,22 +1533,22 @@ RichMCHits INFO 1D histograms in directory "RichMCHi | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28072 | -0.01509 | 0.22581 | 0.16499 | -0.27116 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 661396 | -0.010042 | 0.24064 | -0.81655 | 63.753 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 207388 | -0.012259 | 0.22844 | -2.6842 | 229.61 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 28392 | -0.0063933 | 7.5171 | 0.84617 | 0.39431 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 378592 | -0.05701 | 7.0059 | 0.71983 | 1.262 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 113256 | 0.0027421 | 6.9164 | 0.93683 | 1.2251 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 54856 | -0.022302 | 0.20546 | 0.28097 | -1.2096 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 829380 | -0.013083 | 0.27193 | -0.51882 | 29.444 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 674976 | -0.01337 | 0.22632 | -0.85959 | 73.085 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 829380 | -0.013083 | 0.27193 | -0.51882 | 29.444 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 829380 | -0.013083 | 0.27193 | -0.51882 | 29.444 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 236976 | -0.018025 | 0.21492 | -2.4036 | 215.12 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 30592 | -0.0056393 | 6.8709 | 0.90866 | 1.059 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 548528 | -0.19114 | 7.8294 | 0.2544 | 1.4392 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 481744 | -0.026746 | 7.0791 | 0.72815 | 0.86682 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 548528 | -0.19114 | 7.8294 | 0.2544 | 1.4392 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 548528 | -0.19114 | 7.8294 | 0.2544 | 1.4392 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 197616 | 0.0028367 | 6.6762 | 0.92445 | 1.2091 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074979 | 0.057596 | 1.1672 | 1.3523 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062865 | 0.048317 | 1.8015 | 4.0222 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.073836 | 0.056535 | 1.1702 | 1.3869 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062175 | 0.048228 | 1.8178 | 4.1051 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | @@ -1469,480 +1578,480 @@ RichRecPixelQC INFO 1D histograms in directory "RichRecP | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3383354 | 0.05121 | 0.00051426 | -0.23203 | -1.1115 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3383354 | 0.051884 | 0.0063797 | 0.01294 | -0.93078 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3383354 | 0.00011681 | 0.0029522 | -0.049625 | -0.95611 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 909738 | 0.00010697 | 0.0029537 | -0.038576 | -0.96397 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 846456 | 0.00013347 | 0.0029606 | -0.065918 | -0.97006 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 844747 | 0.0001109 | 0.0029446 | -0.043663 | -0.94251 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 782413 | 0.00011673 | 0.0029495 | -0.051365 | -0.94581 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1121184 | 0.029498 | 0.00023214 | 0.13233 | -1.0799 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1121184 | 0.028103 | 0.0040950 | -0.22113 | -0.99796 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1121184 | 5.7463e-05 | 0.0018603 | -0.022244 | -0.91118 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 295646 | 4.8921e-05 | 0.0018596 | -0.021081 | -0.91186 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 274248 | 5.8332e-05 | 0.0018590 | -0.022077 | -0.90898 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 272429 | 5.6382e-05 | 0.0018630 | -0.019192 | -0.91986 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 278861 | 6.6758e-05 | 0.0018598 | -0.026633 | -0.9041 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3429717 | 0.051247 | 0.00053530 | -0.22935 | -1.1438 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3429717 | 0.051883 | 0.0063721 | 0.012281 | -0.92685 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3429717 | 0.00011217 | 0.0029491 | -0.047836 | -0.9471 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1006704 | 0.00010387 | 0.0029472 | -0.040644 | -0.93966 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 831007 | 0.00012029 | 0.0029533 | -0.056473 | -0.95473 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 885864 | 0.00010411 | 0.0029455 | -0.041913 | -0.94331 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 706142 | 0.00012466 | 0.0029510 | -0.055425 | -0.95314 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1411634 | 0.029566 | 0.00022405 | -0.37158 | -1.0041 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1411634 | 0.028099 | 0.0040992 | -0.21935 | -1.004 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1411634 | 5.0119e-05 | 0.0018678 | -0.018195 | -0.92774 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 417896 | 4.9756e-05 | 0.0018663 | -0.022229 | -0.92283 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 338267 | 4.7287e-05 | 0.0018648 | -0.013878 | -0.92224 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 353596 | 5.1828e-05 | 0.0018716 | -0.018435 | -0.93681 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 301875 | 5.182e-05 | 0.0018689 | -0.017262 | -0.93006 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8921 | 974.9 | 33.294 | 12.935 | 177.91 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8921 | 2045.7 | 14.728 | 1.2481 | 3.2567 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8921 | 1075.2 | 38.651 | -8.8448 | 109.4 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4878 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4878 | 11382 | 86.520 | 0.90206 | 2.1403 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4878 | 1888.9 | 91.053 | 1.0739 | 2.8226 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 9015 | 974.45 | 29.203 | 13.129 | 183.45 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 9015 | 2053.4 | 14.789 | 1.3493 | 3.1756 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 9015 | 1083.8 | 35.319 | -8.0141 | 98.059 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 5968 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 5968 | 11373 | 81.825 | 0.95385 | 2.608 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 5968 | 1879.6 | 86.110 | 1.1267 | 3.3742 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.729 | 7.3209 | 0.48805 | -0.15715 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.218 | 8.6762 | 0.3757 | -0.34551 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 13.695 | 7.8447 | 0.50448 | -0.064327 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.894 | 9.0984 | 0.39651 | -0.24536 | RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245683 | 18430 | 10489. | 3.865 | 22.935 | - | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8897 | 62696 | 22142. | 0.88472 | -0.21192 | - | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8897 | 18298 | 10711. | 4.0386 | 24.085 | - | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8897 | 19889 | 11728. | 3.7291 | 19.961 | - | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8897 | 18340 | 10745. | 4.0277 | 23.934 | - | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8897 | 18372 | 10771. | 4.0194 | 23.819 | - | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8897 | 31002 | 15808. | 2.8596 | 9.3824 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100502 | 33694 | 17839. | 2.4167 | 6.1163 | - | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4800 | 89998 | 15662. | 0.12158 | -1.0667 | - | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4800 | 33004 | 17290. | 2.5295 | 6.8021 | - | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4800 | 34998 | 18614. | 2.2496 | 5.0921 | - | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4800 | 33064 | 17336. | 2.5197 | 6.7382 | - | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4800 | 33110 | 17372. | 2.5123 | 6.6896 | - | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4800 | 56841 | 22565. | 1.0145 | 0.063415 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 248338 | 19562 | 12214. | 2.9282 | 11.826 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 9002 | 56889 | 17394. | 1.3024 | 1.3188 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 9002 | 19889 | 12681. | 2.8596 | 11.033 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 9002 | 21886 | 13746. | 2.5566 | 8.7095 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 9002 | 19943 | 12718. | 2.849 | 10.947 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 9002 | 19984 | 12745. | 2.841 | 10.882 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 9002 | 34760 | 16299. | 1.8854 | 4.27 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 126107 | 36795 | 16883. | 1.8297 | 3.9638 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 5918 | 84888 | 15188. | 0.56902 | -0.7035 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 5918 | 36004 | 16433. | 1.893 | 4.2909 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 5918 | 37825 | 17104. | 1.7493 | 3.5698 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 5918 | 36061 | 16459. | 1.8877 | 4.2629 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 5918 | 36105 | 16479. | 1.8837 | 4.2416 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 5918 | 52273 | 17834. | 1.4031 | 1.7773 | RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 39865 | 0.033924 | 0.011746 | -0.33878 | -1.0741 | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 42455 | 53063 | 19561. | 1.5143 | 1.6382 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16398 | 6937.2 | -0.36047 | -22.845 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 900047 | 0.051975 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 897868 | 18130 | 10339. | 3.9207 | 23.454 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6898.5 | -0.24943 | -22.118 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6898.5 | -0.24943 | -22.118 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17607 | 10147. | 3.0419 | 11.45 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28253 | 23861 | 13842. | 3.1049 | 14.123 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28253 | 0.044137 | 0.0062829 | -1.2074 | 1.2854 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 900047 | 0.036887 | 0.0095971 | -0.30224 | -1.1359 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 897868 | 17088 | 9791.6 | 4.1422 | 26.402 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23039 | 13506. | 3.1627 | 14.829 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23039 | 13506. | 3.1627 | 14.829 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.043398 | 0.0068826 | -1.1662 | 1.0313 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.043398 | 0.0068826 | -1.1662 | 1.0313 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 22159 | 13378. | 3.2629 | 14.896 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 0.042741 | 0.0071702 | -1.0558 | 0.5825 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3681 | 16.099 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3681 | 16.099 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041661 | 0.0079080 | -0.93546 | 0.11441 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041661 | 0.0079080 | -0.93546 | 0.11441 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17393 | 6621.9 | 0.94812 | 0.0063037 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13936 | -1.5855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 900047 | 0.051573 | 0.00029980 | -0.21267 | -1.1006 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 897868 | 18011 | 10295. | 4.0002 | 24.33 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17138 | 6559.0 | 1.0033 | 0.13218 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17138 | 6559.0 | 1.0033 | 0.13218 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20624 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20624 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46681 | -1.4307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063302 | -1.8914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54197 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54197 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14656 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14656 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205311 | 17560 | 9642.0 | 4.4297 | 30.494 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205311 | 0.051176 | 0.00051877 | -0.20429 | -0.87753 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 900047 | 0.051196 | 0.00051552 | -0.21573 | -1.1204 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 897868 | 18095 | 10328. | 3.9371 | 23.629 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205311 | 17383 | 9487.3 | 4.4719 | 31.283 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205311 | 17383 | 9487.3 | 4.4719 | 31.283 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205311 | 0.051163 | 0.00052051 | -0.17742 | -0.90142 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205311 | 0.051163 | 0.00052051 | -0.17742 | -0.90142 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205311 | 17562 | 9298.1 | 4.0934 | 27.005 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205311 | 0.051181 | 0.00051972 | -0.18676 | -0.85114 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205311 | 17388 | 9156.9 | 4.13 | 27.647 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205311 | 17388 | 9156.9 | 4.13 | 27.647 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205311 | 0.051168 | 0.00052141 | -0.16092 | -0.87345 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205311 | 0.051168 | 0.00052141 | -0.16092 | -0.87345 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 35223 | 15317. | 2.4165 | 7.897 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 0.041072 | 0.0081131 | -1.6212 | 2.8852 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 317216 | 0.029999 | 0.011003 | 0.061019 | -1.0437 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 338507 | 24873 | 11269. | 4.0574 | 21.393 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33426 | 15042. | 2.429 | 8.2817 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33426 | 15042. | 2.429 | 8.2817 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097401 | -1.34 | 1.0863 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097401 | -1.34 | 1.0863 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 33079 | 16162. | 2.6722 | 8.0682 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 0.03903 | 0.0081220 | -0.72187 | 0.26962 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31650 | 15487. | 2.8293 | 9.3171 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31650 | 15487. | 2.8293 | 9.3171 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089210 | -0.66629 | -0.050273 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089210 | -0.66629 | -0.050273 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 26603 | 0.020883 | 0.0049579 | -0.38025 | -0.87407 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 24762 | 84316 | 15936. | 0.49116 | -0.86274 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35355 | 17795. | 0.98216 | -0.46755 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 4.6566e-10 |-1.0066e+08 | 6.7554e+15 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 340840 | 0.029952 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 335784 | 32903 | 17067. | 2.4987 | 6.6976 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34826 | 17587. | 1.0458 | -0.33312 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33481 | 15009. | 1.4601 | 1.2043 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 57822 | 34450. | -1.4648 | -0.97948 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 3.2927e-10 |-9.4906e+07 | 2.7022e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30755 | 12358. | 1.4337 | 1.2854 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30445 | 12211. | 1.4839 | 1.4567 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30895 | 12195. | 1.4222 | 1.2572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28366 | 12070. | 1.8533 | 2.7934 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12067 | 33060 | 31431. | 2.0944 | 2.0928 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12067 | 0.020164 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 340837 | 0.023453 | 0.0036601 | -0.020402 | -1.113 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 335781 | 32616 | 17018. | 2.53 | 6.8668 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12067 | 32121 | 30161. | 2.2455 | 2.7336 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10114 | 31512 | 27089. | 2.2964 | 3.1964 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1953 | 18685 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12067 | 0.020157 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10114 | 0.020195 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1953 | 0.021296 | 0.0064057 | 0.21195 | -3.1614 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12067 | 39932 | 22189. | 1.7528 | 2.5476 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12067 | 0.025146 | 0.0033876 | -0.45454 | -0.777 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12067 | 39270 | 21969. | 1.8011 | 2.7494 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10114 | 40222 | 22715. | 1.6976 | 2.3203 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1953 | 34876 | 17473. | 2.384 | 5.6741 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12067 | 0.024977 | 0.0034580 | -0.41101 | -0.84498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10114 | 0.025081 | 0.0035320 | -0.44922 | -0.88534 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1953 | 0.024482 | 0.0030336 | -0.30229 | -0.47772 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 492 | 20628 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 492 | 0.02943 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 340840 | 0.029681 | 0.00013585 | 0.23559 | -0.86961 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 335784 | 32545 | 16705. | 2.576 | 7.2249 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 492 | 20647 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 416 | 20207 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21074 | 1353.3 | 20.327 | 228.8 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 492 | 0.029431 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 416 | 0.029463 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 26323 | 6970.1 | 1.5335 | 1.6887 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 0.029589 | 0.00014872 | 0.44442 | -0.71057 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 492 | 26077 | 6784.5 | 1.5987 | 1.9734 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 416 | 27322 | 7387.2 | 1.2716 | 0.82288 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3161.8 | 2.0877 | 3.4765 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 492 | 0.029584 | 0.00014712 | 0.4695 | -0.68532 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 416 | 0.02962 | 0.00014714 | 0.19815 | -0.65447 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9691e-05 | 1.1502 | -0.67715 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83568 | 35608 | 21150. | 2.3224 | 5.0459 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83568 | 0.029556 | 0.00023414 | 0.18052 | -1.134 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 340840 | 0.029497 | 0.00023446 | 0.15787 | -1.0406 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 335784 | 33083 | 17265. | 2.4707 | 6.4928 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83568 | 35391 | 21028. | 2.3496 | 5.1917 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 71030 | 42126 | 25269. | 1.5531 | 1.6488 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12538 | 28831 | 12793. | 4.4677 | 22.683 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83568 | 0.029553 | 0.00023433 | 0.19629 | -1.1242 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 71030 | 0.029641 | 0.00024193 | -0.32481 | -1.2598 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12538 | 0.029461 | 0.00018608 | 0.53515 | -0.020497 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83568 | 32053 | 15850. | 2.6944 | 8.1381 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83568 | 0.029494 | 0.00022800 | 0.25407 | -1.0006 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83568 | 31868 | 15751. | 2.7238 | 8.3339 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 71030 | 32431 | 16244. | 2.6239 | 7.6101 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12538 | 28920 | 12454. | 3.3892 | 14.279 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83568 | 0.02949 | 0.00022803 | 0.27466 | -0.99309 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 71030 | 0.029499 | 0.00022947 | 0.2287 | -1.0269 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12538 | 0.029443 | 0.00021411 | 0.50844 | -0.69025 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 83648 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 0.029993 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 106552 | 0.020408 | 0.0059854 | -0.093636 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 121229 | 47319 | 19886. | 1.6796 | 2.131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3215 | 82401 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2805 | 67484 | 18063. | -0.46202 | -2.3621 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38634 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3215 | 0.03002 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2805 | 0.026383 | 0.0035068 | -3.0938 | 12.162 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014157 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 61467 | 22657. | 0.77484 | -0.4767 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 0.024035 | 0.0048310 | -0.9858 | 0.090331 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 60380 | 22833. | 0.80911 | -0.43194 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 61742 | 23059. | 0.74578 | -0.52868 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52379 | 19634. | 1.253 | 0.48463 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 0.023702 | 0.0051007 | -0.90329 | -0.20624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 0.02405 | 0.0049678 | -1.0552 | 0.19303 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021619 | 0.0053810 | -0.17695 | -1.1651 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 84859 | 0.03249 | 0.010194 | -0.26826 | -0.85359 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 90817 | 50270 | 15032. | 1.7757 | 3.3664 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2835 | 17255 | 9849.1 | 2.8572 | 9.6353 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 912523 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 911266 | 19777 | 12385. | 2.738 | 10.221 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2835 | 17082 | 9711.7 | 2.9045 | 10.01 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2835 | 17082 | 9711.7 | 2.9045 | 10.01 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2835 | 18347 | 10487. | 2.6115 | 8.2985 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 18168 | 10362. | 2.6483 | 8.5755 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 18168 | 10362. | 2.6483 | 8.5755 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 30048 | 26178 | 14473. | 1.7341 | 3.0211 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 30048 | 0.044984 | 0.0061619 | -1.3858 | 1.874 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 912523 | 0.037393 | 0.0098523 | -0.29712 | -1.1462 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 911266 | 18500 | 11768. | 2.963 | 11.982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 30048 | 25287 | 14278. | 1.7979 | 3.3427 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 30048 | 25287 | 14278. | 1.7979 | 3.3427 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 30048 | 0.044278 | 0.0068014 | -1.3355 | 1.5296 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 30048 | 0.044278 | 0.0068014 | -1.3355 | 1.5296 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 30048 | 24036 | 14690. | 2.1965 | 6.2877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 30048 | 0.043145 | 0.0074032 | -1.0461 | 0.49356 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 30048 | 22853 | 14278. | 2.3059 | 6.9577 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 30048 | 22853 | 14278. | 2.3059 | 6.9577 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 30048 | 0.042012 | 0.0081653 | -0.9169 | 0.027457 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 30048 | 0.042012 | 0.0081653 | -0.9169 | 0.027457 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 430 | 17706 | 7750.3 | 0.89669 | -0.67906 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 430 | 0.051563 | 0.00038357 | 0.28015 | -1.5067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 912523 | 0.05159 | 0.00030743 | -0.24864 | -1.153 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 911266 | 19604 | 12301. | 2.8028 | 10.735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17381 | 7649.7 | 0.97192 | -0.51825 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17381 | 7649.7 | 0.97192 | -0.51825 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051545 | 0.00038148 | 0.35363 | -1.4582 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051545 | 0.00038148 | 0.35363 | -1.4582 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 19506 | 8486.9 | 0.38298 | -1.5331 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 0.051631 | 0.00043384 | -0.0027948 | -1.8758 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19142 | 8445.8 | 0.45846 | -1.4702 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19142 | 8445.8 | 0.45846 | -1.4702 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043359 | 0.08052 | -1.8696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043359 | 0.08052 | -1.8696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 204450 | 18528 | 11322. | 3.5031 | 17.55 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 204450 | 0.051195 | 0.00054281 | -0.1048 | -0.90854 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 912523 | 0.051232 | 0.00053591 | -0.2129 | -1.1635 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 911266 | 19728 | 12366. | 2.7534 | 10.337 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204450 | 18310 | 11140. | 3.5544 | 18.135 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204450 | 18310 | 11140. | 3.5544 | 18.135 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204450 | 0.051181 | 0.00054404 | -0.078267 | -0.92159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204450 | 0.051181 | 0.00054404 | -0.078267 | -0.92159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204450 | 18432 | 10999. | 3.2942 | 15.585 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204450 | 0.051192 | 0.00054467 | -0.096899 | -0.9141 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204450 | 18215 | 10828. | 3.3437 | 16.106 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204450 | 18215 | 10828. | 3.3437 | 16.106 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204450 | 0.051177 | 0.00054583 | -0.070048 | -0.92639 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204450 | 0.051177 | 0.00054583 | -0.070048 | -0.92639 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10575 | 41055 | 18141. | 1.4927 | 2.5121 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10575 | 0.043322 | 0.0077030 | -1.9701 | 4.4406 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 348345 | 0.03244 | 0.011920 | -0.15845 | -1.2342 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 368242 | 27594 | 13188. | 2.5297 | 8.239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10575 | 39095 | 18184. | 1.5058 | 2.6245 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10575 | 39095 | 18184. | 1.5058 | 2.6245 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10575 | 0.041862 | 0.0093956 | -1.6887 | 2.3173 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10575 | 0.041862 | 0.0093956 | -1.6887 | 2.3173 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10575 | 37245 | 17006. | 1.6469 | 3.0953 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10575 | 0.040958 | 0.0084343 | -1.0352 | 0.5734 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 35534 | 16709. | 1.7382 | 3.4984 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 35534 | 16709. | 1.7382 | 3.4984 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 0.039503 | 0.0094525 | -0.90469 | 0.060619 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 0.039503 | 0.0094525 | -0.90469 | 0.060619 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.00024414 |-2.6844e+08 | 8.1065e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 29945 | 0.018979 | 0.0049518 | 0.073449 | -1.0109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 33371 | 78898 | 14283. | 0.99675 | 0.16321 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.00024414 |-2.6844e+08 | 8.1065e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1391 | 1.2243e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1391 | 0.029895 | 4.6566e-10 |-1.3422e+08 | 1.5763e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 429038 | 0.029952 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 425871 | 35916 | 16179. | 1.8706 | 4.2038 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1391 | 1.4733e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1214 | -45839 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 177 | 23990 | 16492. | 3.3331 | 6.821 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1214 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 177 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1391 | 32332 | 11653. | 1.289 | 1.119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1391 | 32069 | 11571. | 1.3202 | 1.2212 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1214 | 32427 | 11402. | 1.2979 | 1.1467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 177 | 29491 | 12425. | 1.6302 | 2.0979 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1214 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 177 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 16770 | 56489 | 30186. | 0.63177 | -0.65453 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 16770 | 0.026564 | 0.0033497 | -1.5234 | 1.9102 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 429035 | 0.024531 | 0.0035396 | -0.49832 | -0.91048 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 425868 | 35660 | 16213. | 1.8854 | 4.2502 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 16770 | 55643 | 30260. | 0.65467 | -0.62876 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 14306 | 50179 | 27055. | 0.96821 | 0.19238 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 2464 | 25932 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 16770 | 0.026369 | 0.0035611 | -1.4352 | 1.3552 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 14306 | 0.026068 | 0.0034160 | -1.2262 | 0.6842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 2464 | 0.024712 | 0.0022049 | -0.60824 | -10.005 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16770 | 40994 | 17961. | 1.5835 | 2.9896 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16770 | 0.025915 | 0.0029517 | -0.95239 | 0.16962 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 16770 | 40536 | 17930. | 1.5974 | 3.0382 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 14306 | 40978 | 18093. | 1.5734 | 2.9924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 2464 | 38185 | 16847. | 1.7415 | 3.3001 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 16770 | 0.025788 | 0.0030383 | -0.91204 | 0.028147 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 14306 | 0.025861 | 0.0030580 | -0.96938 | 0.11813 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 2464 | 0.025399 | 0.0028996 | -0.6201 | -0.31425 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 760 | 20985 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 760 | 0.02943 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 429038 | 0.029718 | 0.00013158 | -0.25627 | -0.90639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 425871 | 35540 | 15926. | 1.9215 | 4.494 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 760 | 21039 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 650 | 24506 | 7608.6 | 2.5663 | 5.6854 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 110 | 16617 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 760 | 0.029431 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 650 | 0.029506 | 0.00012078 | 1.4531 | 1.1689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 110 | 0.029336 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 760 | 30835 | 10611. | 1.1863 | 0.36941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 760 | 0.02964 | 0.00014963 | 0.10983 | -0.66463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 760 | 30357 | 10356. | 1.2655 | 0.64234 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 650 | 31924 | 10767. | 1.046 | 0.040108 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 110 | 24948 | 6285.7 | 2.6374 | 8.3183 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 760 | 0.029634 | 0.00014838 | 0.1346 | -0.64465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 650 | 0.029663 | 0.00014119 | 0.0047433 | -0.34683 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 110 | 0.029533 | 0.00012681 | 0.8266 | -0.37993 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 101085 | 39803 | 20512. | 1.6951 | 2.5554 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 101085 | 0.029616 | 0.00021703 | -0.17442 | -0.99528 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 429038 | 0.029563 | 0.00022562 | -0.34545 | -0.99859 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 425871 | 36078 | 16310. | 1.8596 | 4.1254 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 101085 | 39634 | 20479. | 1.7067 | 2.5975 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 87110 | 44915 | 23510. | 1.2587 | 0.77518 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 13975 | 34082 | 14800. | 2.2611 | 6.734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 101085 | 0.029614 | 0.00021777 | -0.16364 | -1.0024 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 87110 | 0.029683 | 0.00020581 | -0.51845 | -0.78938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 13975 | 0.029539 | 0.00020516 | 0.16178 | -0.71925 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101085 | 35308 | 15822. | 1.9911 | 4.8737 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101085 | 0.029558 | 0.00022925 | -0.13222 | -1.0396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 101085 | 35125 | 15784. | 2.0073 | 4.949 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 87110 | 35666 | 16001. | 1.9608 | 4.7062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 13975 | 31940 | 14024. | 2.3702 | 7.0872 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 101085 | 0.029554 | 0.00023009 | -0.11301 | -1.0567 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 87110 | 0.029563 | 0.00022865 | -0.16498 | -1.0195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 13975 | 0.029498 | 0.00023064 | 0.20094 | -1.0689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6062 | 51068 | 37039. | 1.8087 | 0.41895 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6062 | 0.0080244 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 196839 | 0.019953 | 0.0053157 | -0.078888 | -1.1422 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 223600 | 45362 | 15880. | 1.8757 | 3.7169 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 6062 | 51012 | 36172. | 1.9029 | 0.65749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 5411 | 69621 | 38881. | 0.63415 | -1.9782 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 651 | -13720 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 6062 | 0.009174 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 5411 | 0.017432 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 651 | -0.86027 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6062 | 57252 | 18904. | 1.1978 | 0.98695 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6062 | 0.023302 | 0.0042097 | -0.85549 | 0.21715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6062 | 56537 | 19009. | 1.2121 | 1.0198 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5411 | 56825 | 19113. | 1.2131 | 1.0356 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 651 | 54217 | 17984. | 1.1842 | 0.71156 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6062 | 0.023047 | 0.0044145 | -0.8193 | 0.033851 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5411 | 0.023124 | 0.0043817 | -0.86526 | 0.1577 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 651 | 0.022432 | 0.0046198 | -0.48756 | -0.6602 | RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 16947 | 7029.0 | 2.2337 | 8.6189 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | -1.6885 | 79.001 | -0.019984 | 1.6906 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 2.0002 | 81.693 | -0.11242 | 1.4548 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | 17034 | 7009.8 | 2.1579 | 8.0537 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -4.8289 | 76.376 | 0.27412 | 1.7139 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -0.92215 | 88.246 | 0.18697 | 1.6246 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | 15017 | 7484.6 | 4.5209 | 27.208 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -4.8289 | 76.376 | 0.27412 | 1.7139 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -0.92215 | 88.246 | 0.18697 | 1.6246 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 133.24 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.102 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1177 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.395 | 93.636 | 2.4599 | -4.386 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 249.15 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1683 | 271.67 | -0.54825 | -0.17414 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 20.23 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15.941 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15295 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135328 | -2155.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135328 | -7.9552 | 124.69 | 0.71169 | 1.6122 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135328 | -3415.2 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135328 | -13.039 | 141.30 | 0.81834 | 1.0692 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 17383 | 7492.9 | 2.1486 | 7.553 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 7.2158 | 69.423 | -0.14551 | 2.1065 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 1.2328 | 72.004 | -0.054343 | 1.7991 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | 17605 | 7507.4 | 2.0671 | 7.0841 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | 1.8177 | 74.105 | -0.58494 | 1.4873 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | -3.4742 | 84.369 | -0.35314 | 1.265 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | 15175 | 7375.0 | 3.4728 | 16.737 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | 1.8177 | 74.105 | -0.58494 | 1.4873 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | -3.4742 | 84.369 | -0.35314 | 1.265 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 138.34 | 118.10 | 3.5142 | -17.901 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 12.042 | 102.43 | 0.80872 | -0.059826 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 2294.2 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 3.6476 | 90.192 | 0.31917 | 4.0875 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 191.98 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 1746.7 | 52.482 | 348.35 | -7028 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | -68.461 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 1.236 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | -13594 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134809 | 794.84 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134809 | -2.9969 | 52.764 | -5.4839 | -4.6938 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134809 | 710.11 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134809 | -2.4439 | 55.081 | -4.2592 | -2.5974 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 18160 | 8899.2 | 2.484 | 10.042 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 18564 | 8799.2 | 2.2157 | 7.5728 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 18462 | 9011.6 | 2.4681 | 8.8676 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.6169 | 50.451 | -0.48324 | 3.7955 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.582 | 52.802 | -0.48882 | 2.4512 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49227 | 7903.5 | 0.61411 | 0.66127 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47072 | 10899. | 0.98207 | 0.060614 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 18724 | 5208.9 | 0.70966 | -0.36083 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16615 | 6073.3 | 0.90271 | -0.10509 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 19048 | 9477.0 | 2.494 | 8.2831 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6063 | 17330 | 8110.8 | 2.7552 | 11.441 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 1.5144 | 48.941 | -0.19674 | 2.9736 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 0.90011 | 49.570 | -0.12851 | 1.6845 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 17851 | 8527.4 | 2.6673 | 10.343 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 17271 | 8008.6 | 2.7395 | 11.481 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 1.5007 | 51.817 | -0.22655 | 2.9607 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 0.67364 | 51.820 | -0.12394 | 1.7497 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 72925 | 3749.3 | -0.29358 | -1.6318 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72590 | 3712.3 | 0.023954 | -1.5708 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | 31516 | 15848. | 2.58 | 7.2276 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | -253.17 | 312.98 | 0.74835 | 1.8939 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | -1.995 | 285.23 | 0.16113 | 2.0615 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -9876.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -264.45 | 301.60 | 0.47842 | 0.4477 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -58.033 | 293.06 | 0.29332 | 2.304 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | 30164 | 11798. | 0.51029 | -8.6941 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | -264.45 | 301.60 | 0.47842 | 0.4477 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | -58.033 | 293.06 | 0.29332 | 2.304 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | -64.426 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 24.852 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 2797.4 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 454.43 | 651.13 | -0.90479 | -0.92344 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 1212.7 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 8657.6 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 76.452 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | -103.1 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 195.74 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 954 | -478.95 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 954 | 7.5107 | 246.34 | 0.65698 | 2.9883 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 954 | -478.91 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 954 | 7.5432 | 246.27 | 0.65829 | 2.9802 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 29965 | 13846. | 3.2887 | 13.513 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 358 | 232.66 | -0.10819 | 4.332 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 12.3 | 270.76 | -0.085058 | 1.3057 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 21771 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 313.23 | 126.27 | -4.1637 | 20.635 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 5.6426 | 238.83 | -0.64134 | 6.0407 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 30640 | 11764. | 1.8383 | 0.20514 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 313.23 | 126.27 | -4.1637 | 20.635 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 5.6426 | 238.83 | -0.64134 | 6.0407 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 2090.8 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 74.411 | 511.59 | 1.0023 | -1.9349 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 33143 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -714.49 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -940.38 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 9015 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 1434.5 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -4.8136 | 493.68 | 1.1633 | -0.074363 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 31364 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1820 | 451.95 | 212.32 | 2.6187 | -5.0146 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1820 | -6.1355 | 290.93 | -0.33699 | 1.8748 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1820 | 452.04 | 212.21 | 2.6228 | -5.0451 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1820 | -6.2273 | 290.79 | -0.33723 | 1.8783 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27832 | 9662.0 | 2.7789 | 7.6544 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 241 | 32031 | 14767. | 2.3492 | 5.4488 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 32563 | 15708. | 2.4427 | 5.8133 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 106.66 | 318.89 | -0.33265 | -0.61706 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 1.6989 | 278.65 | -0.41541 | 1.4714 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55608 | 16894. | 0.78035 | -0.36431 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 83 | 56641 | 19193. | 0.72384 | -0.77755 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 59962 | 23783. | 0.92816 | -0.17091 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 211.27 | 329.34 | 0.54889 | 0.87868 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 19.153 | 257.22 | -1.4954 | 5.413 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26274 | 6298.0 | 1.5255 | 1.912 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27206 | 8051.6 | 1.5694 | 1.3945 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3100 | 32159 | 15367. | 2.2826 | 5.0812 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3143 | 32005 | 15915. | 2.7111 | 8.2068 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 6.948 | 357.71 | 0.0122 | -0.30828 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 5.3702 | 254.40 | 0.049735 | 1.4033 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1435 | 30956 | 13609. | 2.5055 | 7.0042 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 31618 | 15793. | 2.7918 | 8.6465 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 126.82 | 335.15 | -0.39773 | -0.012691 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 1.0072 | 255.52 | -0.025748 | 1.5353 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 84930 | 11818. | -0.43867 | -1.4603 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 16 | 80031 | 9475.7 | 0.52086 | -0.77371 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 88206 | 14786. | 0.17245 | -1.292 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 31.571 | 174.53 | 0.2848 | 0.63297 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 4.6429 | 221.61 | -0.076979 | -1.3181 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | 16939 | 8493.2 | 2.8206 | 10.544 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | -13.944 | 80.014 | -0.035159 | 1.6623 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | -5.4929 | 82.883 | -0.18878 | 1.4084 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 17059 | 8594.9 | 2.7965 | 10.294 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 34.175 | 61.411 | 0.5116 | 2.11 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 19.252 | 80.519 | 0.12022 | 1.4997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 18089 | 10416. | 2.4935 | 7.5793 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 34.175 | 61.411 | 0.5116 | 2.11 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 19.252 | 80.519 | 0.12022 | 1.4997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 80.814 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1.0096 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1659.5 | 238.16 | 0.59904 | -4.3698 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 19.681 | 97.192 | 2.4494 | -4.1861 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 210.95 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1937.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -8.3865 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -22.206 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -10563 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 136376 | 9760.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 136376 | 81.634 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 136376 | 3936.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 136376 | 20.873 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136797 | 17359 | 9055.5 | 2.8508 | 10.652 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136797 | -4.6041 | 71.552 | -0.17677 | 2.0119 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136797 | -5.525 | 74.508 | -0.18708 | 1.663 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136797 | 17731 | 9324.1 | 2.781 | 10.04 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136797 | 37.824 | 62.497 | -0.83301 | 5.2353 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136797 | 15.578 | 78.312 | -0.50407 | 2.2601 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136797 | 17625 | 10029. | 2.3335 | 6.3007 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136797 | 37.824 | 62.497 | -0.83301 | 5.2353 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136797 | 15.578 | 78.312 | -0.50407 | 2.2601 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 105.63 | 159.96 | 1.2169 | -5.2968 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 2.503 | 114.43 | 0.74798 | -0.3775 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 2911.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 12.38 | 105.81 | 0.31442 | 2.3517 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 191.34 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | 2418.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | -77.188 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | -9.314 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136797 | -10446 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 136797 | 516.27 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 136797 | -3.0725 | 52.548 | -3.2687 | -1.5219 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 136797 | 484.42 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 136797 | -3.4112 | 53.931 | -2.8965 | -0.89481 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 86 | 19822 | 10550. | 1.763 | 3.5884 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 18453 | 10170. | 2.4679 | 7.7096 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 4.8731 | 36.560 | 0.19216 | -0.20279 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 2.2955 | 37.093 | -0.45221 | 0.23154 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1012 | 20230 | 11279. | 1.9317 | 4.086 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 19827 | 11134. | 2.1209 | 4.9696 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 1.9458 | 50.217 | -0.6498 | 4.0624 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 0.18708 | 52.409 | -0.53509 | 2.5686 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 152 | 49060 | 9987.2 | 0.85087 | 0.12396 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 152 | 47930 | 10803. | 1.0543 | 0.46518 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 152 | 7.3005 | 36.772 | -0.35418 | 1.6318 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 152 | -0.21019 | 34.620 | -0.10271 | -0.44654 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 152 | 47714 | 10339. | 1.0574 | 0.60792 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | 48381 | 10958. | 0.98026 | 0.24353 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | 7.0239 | 37.624 | -0.36203 | 1.7438 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | -0.13704 | 35.446 | -0.077016 | -0.46921 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 19798 | 6614.6 | 0.43345 | -1.2298 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 12 | 19073 | 8620.5 | 0.43597 | -1.4854 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | -36.975 | 105.06 | -0.77759 | -1.1583 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | 26.757 | 59.779 | -0.85686 | 0.17629 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 18603 | 8949.3 | 1.4202 | 2.3312 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 19093 | 9185.5 | 1.2854 | 1.7655 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | -9.0805 | 69.642 | -1.1869 | 2.5521 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 0.52266 | 61.164 | -1.1004 | 1.4363 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 21712 | 12550. | 1.7148 | 2.7354 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6055 | 18509 | 10155. | 2.4101 | 7.026 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 3.7774 | 48.883 | -0.26919 | 3.0639 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 2.3294 | 49.394 | -0.18253 | 1.8061 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 19538 | 11034. | 2.1488 | 5.1786 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 18423 | 10009. | 2.4064 | 7.0904 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 3.8761 | 51.824 | -0.30041 | 3.0246 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 2.0472 | 51.688 | -0.175 | 1.8652 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 72645 | 3408.6 | -0.064915 | -1.451 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | 72870 | 3874.3 | 0.20761 | -1.2004 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -3.1432 | 26.800 | 0.38164 | -0.71397 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -4.7318 | 28.473 | 0.2784 | -1.468 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 72498 | 3677.7 | 0.32962 | -1.1949 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | 72881 | 3868.3 | 0.20945 | -1.1996 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -3.3493 | 26.142 | 0.44053 | -0.62823 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -5.8836 | 28.675 | 0.37652 | -1.4469 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1122 | 34604 | 16124. | 2.0499 | 4.8034 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1122 | -204.44 | 298.21 | 0.54751 | 1.6439 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1122 | 6.7482 | 284.87 | 0.006158 | 1.4472 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1122 | 9384.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1122 | -181.9 | 305.71 | -0.086632 | 1.015 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1122 | -59.974 | 329.09 | 0.65897 | 2.0059 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1122 | 36765 | 16448. | 1.5642 | 2.7291 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1122 | -181.9 | 305.71 | -0.086632 | 1.015 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1122 | -59.974 | 329.09 | 0.65897 | 2.0059 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | 782.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | 240.75 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | -12631 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | -2417.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | -2038.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | 12405 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | 348.33 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | -7.3119 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1122 | -3058 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 1122 | -431.81 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 1122 | 18.614 | 241.59 | 0.18977 | 1.5117 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 1122 | -431.78 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 1122 | 18.865 | 241.50 | 0.18939 | 1.4975 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2395 | 33140 | 14617. | 2.0656 | 5.1702 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2395 | 349.8 | 214.68 | -0.098029 | 5.0348 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2395 | 40.461 | 253.08 | 0.1064 | 1.4873 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2395 | 42902 | 20598. | 1.0769 | 0.38818 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2395 | 304.07 | 143.25 | -2.4492 | 16.4 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2395 | 26.48 | 188.73 | 0.11054 | 7.0109 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2395 | 37485 | 15245. | 1.1808 | 0.85339 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2395 | 304.07 | 143.25 | -2.4492 | 16.4 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2395 | 26.48 | 188.73 | 0.11054 | 7.0109 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | 2217.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | -308.27 | 385.36 | 2.9128 | 5.4289 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | 18651 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | -128.85 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | -440.21 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | 7996.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | 1578.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | -2.1406 | 488.91 | 1.535 | -0.39823 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2395 | 34653 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 2395 | 434.79 | 196.01 | 2.8701 | -4.9739 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 2395 | 21.142 | 273.01 | -0.26869 | 2.1855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 2395 | 434.88 | 195.97 | 2.8716 | -4.9987 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 2395 | 20.903 | 273.00 | -0.26863 | 2.1831 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 64 | 30397 | 9932.5 | 1.733 | 3.109 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 31984 | 12741. | 2.4563 | 9.8243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 26.561 | 331.54 | 0.27379 | -1.1388 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 21.208 | 224.17 | 0.056967 | -0.59596 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 296 | 34766 | 15299. | 1.7914 | 3.1529 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 297 | 34938 | 15297. | 1.8339 | 3.5539 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 297 | 146.06 | 287.78 | -0.44461 | -0.31694 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 297 | 21.507 | 258.15 | -0.46088 | 1.7422 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 370 | 52325 | 15203. | 1.1926 | 0.7862 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 376 | 52770 | 16991. | 1.5895 | 2.5737 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 376 | 34.224 | 279.80 | 0.39315 | 0.75454 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 376 | 14.663 | 230.63 | -0.027135 | 0.81501 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 154 | 51730 | 16188. | 1.278 | 0.77116 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 51704 | 17479. | 1.6388 | 2.3448 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 126 | 297.13 | 0.73259 | 1.5326 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 20.316 | 248.82 | -0.82822 | 3.2554 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 31287 | 12635. | 1.0617 | -0.39918 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 28 | 30978 | 9845.9 | 1.4405 | 1.3182 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | -12.559 | 351.06 | -0.062359 | -1.2045 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | 71.375 | 212.06 | -0.96644 | 0.70164 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 28758 | 7372.3 | 0.96414 | 0.55942 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 28015 | 6650.5 | 0.93559 | 0.77444 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 78.684 | 395.69 | -0.61204 | -1.1052 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 67.737 | 205.05 | -0.94752 | 0.43607 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3795 | 35400 | 15086. | 1.6033 | 2.4343 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3832 | 35135 | 15833. | 2.0313 | 5.0479 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3832 | 44.497 | 331.71 | -0.089009 | -0.15731 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3832 | 22.273 | 239.96 | 0.06421 | 1.5302 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1795 | 33922 | 14214. | 1.8425 | 3.7777 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1807 | 34239 | 15379. | 2.084 | 5.1396 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1807 | 149.71 | 305.65 | -0.50519 | 0.31374 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1807 | 24.288 | 242.20 | -0.013534 | 1.6408 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 56 | 77546 | 9722.6 | 0.7643 | -0.59798 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 84605 | 14943. | 0.61108 | -0.89897 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 14.036 | 204.19 | -0.27017 | -0.46031 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 9.4138 | 200.10 | 0.094346 | -0.82414 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 25 | 77663 | 9177.4 | 0.71801 | -0.65513 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 31 | 82493 | 14431. | 0.75316 | -0.63711 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 31 | 22.333 | 157.71 | -0.51804 | -0.8088 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 31 | -1.6667 | 200.95 | -0.15544 | -1.2395 | RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1116 | 22005 | 13480. | 2.111 | 4.6144 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1116 | 25980 | 20543. | 2.6629 | 7.3691 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1332 | 26751 | 21012. | 2.4374 | 6.2091 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1332 | 14782 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6276 | 23190 | 16837. | 2.8924 | 9.713 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6276 | 20505 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28093 | 21888. | 2.2974 | 4.9916 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16741 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 625 | 33795 | 14116. | 1.1405 | 0.37814 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 625 | 43065 | 25103. | 1.3507 | 0.78105 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 703 | 46316 | 27162. | 1.1866 | 0.34552 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 703 | 16329 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3387 | 40541 | 23738. | 1.5863 | 1.6199 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3387 | 42318 | 22349. | 1.3778 | 0.14298 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 719 | 45431 | 26960. | 1.1756 | 0.1599 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 719 | 40312 | 25216. | 1.1618 | -0.35316 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 26 | 18760 | 6763.0 | 1.3405 | 1.6424 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 26 | 20917 | 7890.1 | 0.93293 | -0.015381 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1110 | 23695 | 13793. | 1.7055 | 2.9499 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1110 | 28268 | 19912. | 1.8903 | 3.9853 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1382 | 29858 | 20156. | 1.5634 | 2.4807 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1382 | 56429 | 32849. | -0.12535 | -1.3832 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 50 | 23673 | 10479. | 0.82994 | 0.77987 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 50 | 20714 | 10559. | 1.954 | 3.693 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6280 | 26705 | 19058. | 2.0059 | 4.3882 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6280 | 30109 | 9067.3 | -9.769 | -113.48 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1428 | 32099 | 22045. | 1.4925 | 1.9106 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1428 | 14663 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 23 | 31505 | 7828.6 | 0.30339 | 0.084104 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 23 | 33777 | 8286.9 | 0.56523 | 0.84402 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 754 | 36474 | 14547. | 1.0171 | 0.27251 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 754 | 44900 | 21992. | 1.1608 | 0.80768 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 925 | 44852 | 20923. | 1.2592 | 1.4295 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 925 | 43826 | 27898. | 1.7757 | 1.6211 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 30 | 36033 | 12831. | 0.62106 | -1.1291 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 30 | 27909 | 10146. | 1.6989 | 1.7925 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 4137 | 42445 | 20823. | 1.4253 | 1.6993 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 4137 | 38940 | 11693. | 0.57262 | -1.4832 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 909 | 47885 | 22832. | 1.0762 | 0.62158 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 909 | 38416 | 19908. | 1.2673 | 0.65247 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60859 | 16786. | 0.57601 | -0.618 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.653 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20728 | 10954. | 2.9185 | 12.258 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9594.4 | 3.3084 | 16.462 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9634.4 | 3.2958 | 16.319 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32063 | 14264. | 2.2232 | 5.357 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83833 | 10370. | -0.17289 | -1.1678 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4700 | 31655 | 14386. | 2.3295 | 5.7493 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4698 | 34914 | 16265. | 1.8772 | 3.2771 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4700 | 31752 | 14456. | 2.3127 | 5.646 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4700 | 31826 | 14509. | 2.3001 | 5.5685 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56228 | 18268. | 0.68897 | -0.51698 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 863 | 57366 | 14654. | 0.85663 | 0.076789 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8981 | 19630 | 11917. | 2.5475 | 8.1819 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8981 | 23132 | 13529. | 2.0672 | 5.1609 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8981 | 19731 | 11980. | 2.5283 | 8.047 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8981 | 19808 | 12028. | 2.5138 | 7.9461 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3571 | 36405 | 15341. | 1.4099 | 1.9408 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80943 | 10071. | 0.17153 | -0.97553 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 5838 | 35121 | 14772. | 1.5964 | 2.6277 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5836 | 38272 | 15691. | 1.346 | 1.6634 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5838 | 35223 | 14813. | 1.5866 | 2.5855 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5838 | 35300 | 14843. | 1.5791 | 2.5538 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2972 | 53143 | 15479. | 0.92202 | 0.24 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 449 | 60440 | 16886. | 0.58269 | -0.60544 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.653 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20662 | 10930. | 2.9241 | 12.32 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18082 | 9593.7 | 3.3086 | 16.465 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18139 | 9633.0 | 3.2962 | 16.323 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31863 | 14209. | 2.2365 | 5.4534 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 304 | 83573 | 10498. | -0.16445 | -1.1653 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4727 | 31637 | 14369. | 2.3312 | 5.7619 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4727 | 34840 | 16224. | 1.8845 | 3.3135 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4727 | 31732 | 14438. | 2.3146 | 5.6595 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4727 | 31806 | 14490. | 2.302 | 5.5827 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1722 | 55953 | 18288. | 0.69748 | -0.5008 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 921 | 57066 | 14700. | 0.85923 | 0.092078 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8981 | 19630 | 11917. | 2.5475 | 8.1819 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8981 | 23050 | 13504. | 2.0747 | 5.2033 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8981 | 19729 | 11980. | 2.5286 | 8.049 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8981 | 19805 | 12027. | 2.5143 | 7.9496 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3714 | 36201 | 15336. | 1.4154 | 1.9654 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 466 | 80644 | 10189. | 0.1727 | -0.96319 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 5863 | 35092 | 14763. | 1.5987 | 2.6352 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5863 | 38197 | 15678. | 1.3502 | 1.6759 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5863 | 35192 | 14804. | 1.5889 | 2.5932 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5863 | 35269 | 14835. | 1.5815 | 2.5617 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 3083 | 52963 | 15494. | 0.92439 | 0.2493 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60732 | 16766. | 0.59172 | -0.59602 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18012 | 9549.0 | 3.3221 | 16.612 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20747 | 10972. | 2.913 | 12.198 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18088 | 9601.7 | 3.3054 | 16.421 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18147 | 9641.7 | 3.2927 | 16.278 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32080 | 14291. | 2.2184 | 5.3183 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83762 | 10336. | -0.16676 | -1.1632 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4700 | 31751 | 14455. | 2.311 | 5.6368 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4698 | 34948 | 16274. | 1.8738 | 3.2606 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4700 | 31849 | 14525. | 2.2944 | 5.5353 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4700 | 31923 | 14578. | 2.2818 | 5.459 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56144 | 18210. | 0.692 | -0.50405 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 863 | 57337 | 14636. | 0.85718 | 0.076535 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8981 | 19644 | 11938. | 2.5447 | 8.1587 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8981 | 23167 | 13557. | 2.0621 | 5.1325 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8981 | 19744 | 12002. | 2.5255 | 8.024 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8981 | 19822 | 12050. | 2.5111 | 7.9233 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3571 | 36448 | 15380. | 1.4041 | 1.9167 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80951 | 10004. | 0.17037 | -0.96432 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 5838 | 35218 | 14804. | 1.5862 | 2.5827 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5836 | 38298 | 15695. | 1.3442 | 1.6529 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5838 | 35319 | 14845. | 1.5764 | 2.5411 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5838 | 35397 | 14875. | 1.569 | 2.5099 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2972 | 53128 | 15448. | 0.91721 | 0.2336 | RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28072 | 3.694e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 661396 | 1.1692e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 207388 | 8.2974e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39496 | 1.0725 | 0.90049 | 0.3454 | -0.41294 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39047 | 0.048658 | 0.0067282 | -2.5634 | 6.3482 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 28392 | 1.8967e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 378592 |-5.2895e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 113256 | 2.8703e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21726 | 1.2016 | 1.0253 | 0.54543 | -0.091581 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21214 | 0.028147 | 0.0033288 | -2.3475 | 5.1966 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 54856 | 1.2683e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 829380 | 3.7606e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 674976 | 2.523e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 829380 | 3.7606e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 829380 | 3.7606e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 236976 | 2.0206e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 40562 | 1.1112 | 0.93304 | 0.36618 | -0.49459 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 40104 | 0.048718 | 0.0066556 | -2.6056 | 6.63 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 30592 | 3.1018e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 548528 | 1.1541e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 481744 | 1.2805e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 548528 | 1.1541e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 548528 | 1.1541e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 197616 | 5.8387e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 27489 | 1.2471 | 1.0394 | 0.41599 | -0.53317 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 26786 | 0.028142 | 0.0033407 | -2.4317 | 5.8022 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | @@ -1955,8 +2064,8 @@ RichRecPixelQC INFO 1D profile histograms in directory " | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14483 | 1.6814 | 0.51043 | 0.192 | -0.64474 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14483 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12953 | 0.10505 | 0.10306 | 1.0463 | 0.10906 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14332 | 21427 | 13158. | 2.5926 | 8.7788 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14415 | 957.3 | 745.28 | 2.7862 | 12.021 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 15086 | 1.5897 | 0.51507 | 0.30532 | -0.55154 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 15086 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 13342 | 0.093808 | 0.10273 | 1.1924 | 0.40669 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14981 | 24196 | 15071. | 1.7646 | 3.555 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 15026 | 977.07 | 730.46 | 2.6992 | 11.893 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.armv8.1_a b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.armv8.1_a index 341c557c69e42ead5a005a833054e9dcf65085fa..bd5c7fb412274227dfecdd047f000fddb2f20f00 100644 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.armv8.1_a +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.armv8.1_a @@ -5,8 +5,8 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_ab47e101 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 893 | 18734 | 20.979 | - | "nTracksSelected" | 893 | 18734 | 20.979 | + | "nTracksInput" | 893 | 20127 | 22.539 | + | "nTracksSelected" | 893 | 20127 | 22.539 | DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 1000 | @@ -16,21 +16,21 @@ HLTControlFlowMgr INFO Number of counters : 1 | "Processed events" | 1000 | PrForwardTrackingVelo_5399212b INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 892 | 93998 | 105.38 | - | "Created long tracks" | 892 | 1007 | 1.1289 | + | "Accepted input tracks" | 892 | 97585 | 109.40 | + | "Created long tracks" | 892 | 1018 | 1.1413 | | "Empty input tracks" | 1 | - | "Input tracks" | 892 | 99463 | 111.51 | - | "Number of candidate bins per track" | 93998 | 49050 | 0.52182 | 1.1847 | 0.0000 | 19.000 | - | "Number of complete candidates/track 1st Loop" | 25488 | 769 | 0.030171 | 0.17243 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 24932 | 253 | 0.010148 | 0.10062 | 0.0000 | 2.0000 | - | "Number of x candidates per track 1st Loop" | 25488 | 5689 | 0.22320 | 0.48717 | - | "Number of x candidates per track 2nd Loop" | 24932 | 19457 | 0.78040 | 1.0423 | - | "Percentage second loop execution" | 25488 | 24932 | 0.97819 | - | "Removed duplicates" | 892 | 12 | 0.013453 | + | "Input tracks" | 892 | 102354 | 114.75 | + | "Number of candidate bins per track" | 97585 | 50629 | 0.51882 | 1.1766 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 26423 | 777 | 0.029406 | 0.16984 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 25860 | 266 | 0.010286 | 0.10128 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 26423 | 5930 | 0.22443 | 0.48841 | + | "Number of x candidates per track 2nd Loop" | 25860 | 20114 | 0.77780 | 1.0394 | + | "Percentage second loop execution" | 26423 | 25860 | 0.97869 | + | "Removed duplicates" | 892 | 23 | 0.025785 | PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 609 | 2440 | 4.0066 | - | "#tracks with hits added" | 609 | + | "#UT hits added" | 622 | 2509 | 4.0338 | + | "#tracks with hits added" | 622 | PrHybridSeeding_46e539c7 INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Created T2x1 three-hit combinations in case 0" | 449083 | 251721 | 0.56052 | 0.54375 | 0.0000 | 3.0000 | @@ -56,32 +56,32 @@ PrHybridSeeding_46e539c7 INFO Number of counters : 21 | "Created two-hit combinations in case 2" | 243182 | 1454837 | 5.9825 | 4.6460 | 0.0000 | 83.000 | PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 138 | - | "chi2 cut" | 343 | - | "nIterations" | 1007 | 2331 | 2.3148 | - | "nOutlierIterations" | 869 | 912 | 1.0495 | - | "nTracksInput" | 893 | 1007 | 1.1277 | - | "nTracksOutput" | 893 | 526 | 0.58903 | + | "Pre outlier chi2 cut" | 143 | + | "chi2 cut" | 336 | + | "nIterations" | 1018 | 2350 | 2.3084 | + | "nOutlierIterations" | 875 | 905 | 1.0343 | + | "nTracksInput" | 893 | 1018 | 1.1400 | + | "nTracksOutput" | 893 | 539 | 0.60358 | PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 216 | - | "chi2 cut" | 4077 | - | "nIterations" | 18734 | 37790 | 2.0172 | - | "nOutlierIterations" | 18518 | 17161 | 0.92672 | - | "nTracksInput" | 893 | 18734 | 20.979 | - | "nTracksOutput" | 893 | 14441 | 16.171 | + | "Pre outlier chi2 cut" | 262 | + | "chi2 cut" | 3833 | + | "nIterations" | 20127 | 40631 | 2.0187 | + | "nOutlierIterations" | 19865 | 16640 | 0.83765 | + | "nTracksInput" | 893 | 20127 | 22.539 | + | "nTracksOutput" | 893 | 16032 | 17.953 | PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | PrMatchNN_959da4d3 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 888 | 227156.8 | 255.81 | - | "#MatchingMLP" | 26110 | 23289.61 | 0.89198 | - | "#MatchingTracks" | 888 | 18734 | 21.097 | + | "#MatchingChi2" | 888 | 237526.4 | 267.48 | + | "#MatchingMLP" | 27989 | 24946.26 | 0.89129 | + | "#MatchingTracks" | 888 | 20127 | 22.666 | PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 14811 | 59992 | 4.0505 | - | "#tracks with hits added" | 14811 | + | "#UT hits added" | 15009 | 60886 | 4.0566 | + | "#tracks with hits added" | 15009 | PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Empty Long tracks" | 10 | @@ -119,32 +119,32 @@ PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | PrTrackAssociator_825c239a INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Efficiency" | 14480 | 13889 |( 95.91851 +- 0.1644282)% | - | "MC particles per track" | 13889 | 16249 | 1.1699 | + |*"Efficiency" | 15084 | 14483 |( 96.01565 +- 0.1592545)% | + | "MC particles per track" | 14483 | 16949 | 1.1703 | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | RiMCOpticalPhotonsLong INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Charge mis-match between reco track and matched MCParticle"| 272844 | 2 |(0.0007330196 +- 0.0005183212)% | + |*"Charge mis-match between reco track and matched MCParticle"| 276585 | 2 |(0.0007231050 +- 0.0005113106)% | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 893 | 4037154 | 4520.9 | 4087.3 | 0.0000 | 22184. | - | "# Rich1Gas Segments" | 893 | 8921 | 9.9899 | 6.1403 | 0.0000 | 35.000 | - | "# Rich2Gas Photons" | 893 | 1170640 | 1310.9 | 1200.0 | 0.0000 | 7025.0 | - | "# Rich2Gas Segments" | 893 | 4850 | 5.4311 | 3.6589 | 0.0000 | 20.000 | - | "# Selected Tracks" | 893 | 11366 | 12.728 | 7.3194 | 0.0000 | 36.000 | - |*"RICH selection efficiency" | 14480 | 11366 |( 78.49448 +- 0.3414368)% | + | "# Rich1Gas Photons" | 893 | 4099859 | 4591.1 | 4200.8 | 0.0000 | 22117. | + | "# Rich1Gas Segments" | 893 | 9014 | 10.094 | 6.3004 | 0.0000 | 37.000 | + | "# Rich2Gas Photons" | 893 | 1466544 | 1642.3 | 1454.3 | 0.0000 | 8163.0 | + | "# Rich2Gas Segments" | 893 | 5942 | 6.6540 | 4.2442 | 0.0000 | 23.000 | + | "# Selected Tracks" | 893 | 12228 | 13.693 | 7.8418 | 0.0000 | 39.000 | + |*"RICH selection efficiency" | 15084 | 12228 |( 81.06603 +- 0.3189936)% | TBTCMatch_e6402d48 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 13960 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 13960 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 13960 | + |*"BadInput" | 14571 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 14571 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 14571 | TBTC_Forward_c95b0b3d INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 520 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 520 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 520 | + |*"BadInput" | 513 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 513 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 513 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# Converted Clusters" | 893 | 837869 | 938.26 | @@ -187,1233 +187,1342 @@ VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | - | "Nb of Produced Tracks" | 893 | 187332 | 209.78 | + | "Nb of Produced Tracks" | 893 | 190115 | 212.89 | RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3346851 | 5.9311e-05 | 0.0013711 | -0.046628 | -0.97252 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 2555199 | 5.7993e-05 | 0.0013669 | -0.046303 | -0.96486 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 2877803 | 5.5698e-05 | 0.0013931 | -0.048014 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 2877803 | 5.5698e-05 | 0.0013931 | -0.048014 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3101169 | 8.7307e-06 | 0.0015275 |-0.00045019 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2343225 | 1.2923e-06 | 0.0015270 | 0.0065668 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2632125 | 2.1255e-05 | 0.0015280 | -0.014544 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2632125 | 2.1255e-05 | 0.0015280 | -0.014544 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245682 | 0.00014942 | 0.0010292 | 0.011494 | -0.50985 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211974 | 0.00015721 | 0.0010209 | 0.016076 | -0.50476 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245682 | 0.00014942 | 0.0010292 | 0.011494 | -0.50985 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245678 | 0.00012878 | 0.0010474 | -0.021023 | -0.48915 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245678 | 0.00012878 | 0.0010474 | -0.021023 | -0.48915 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3101169 | 3.1318 | 1.8198 | 0.010354 | -1.1936 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245682 | 3.1259 | 1.8119 | 0.013544 | -1.1892 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3101169 | 0.041644 | 0.010144 | -0.69198 | -0.17295 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245682 | 0.049951 | 0.0047073 | -3.5134 | 14.344 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1264808 | 1.6617e-05 | 0.0010193 | -0.0015308 | -0.8243 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1044634 | 1.4695e-05 | 0.0010172 | 0.00092454 | -0.81648 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1082345 | 1.3604e-05 | 0.0010422 | -0.0042432 | -0.89366 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1082345 | 1.3604e-05 | 0.0010422 | -0.0042432 | -0.89366 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1164347 | 2.0013e-05 | 0.0011531 | -0.012329 | -1.1996 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 952887 | 1.6972e-05 | 0.0011527 | -0.0076181 | -1.1992 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 981884 | 2.877e-05 | 0.0011581 | -0.026633 | -1.211 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 981884 | 2.877e-05 | 0.0011581 | -0.026633 | -1.211 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 | 8.9348e-06 | 0.00061759 | 0.066275 | 0.17382 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91747 | 9.5911e-06 | 0.00061288 | 0.063882 | 0.20014 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85289 | 4.7537e-06 | 0.00060850 | 0.072364 | 0.25017 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15172 | 3.2141e-05 | 0.00066531 | 0.022811 | -0.19059 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 |-2.5701e-05 | 0.00065028 | -0.066482 | 0.2378 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 |-2.5701e-05 | 0.00065028 | -0.066482 | 0.2378 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1164347 | 3.1515 | 1.8136 | -0.0088943 | -1.1869 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100461 | 3.1466 | 1.8161 | -0.0025965 | -1.202 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1164347 | 0.024962 | 0.0053352 | -0.48603 | -0.56747 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100461 | 0.028818 | 0.0022804 | -3.1772 | 12.132 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3376971 | 6.7796e-05 | 0.0013509 | -0.058929 | -0.91192 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 2586877 | 6.652e-05 | 0.0013465 | -0.059649 | -0.90272 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 2910346 | 5.6562e-05 | 0.0013789 | -0.055629 | -0.96889 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 2910346 | 5.6562e-05 | 0.0013789 | -0.055629 | -0.96889 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3128634 | 9.7859e-06 | 0.0015339 | 0.00065873 | -1.2592 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2373030 | 2.8873e-06 | 0.0015330 | 0.007453 | -1.2587 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2662014 | 2.2996e-05 | 0.0015335 | -0.016281 | -1.2583 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2662014 | 2.2996e-05 | 0.0015335 | -0.016281 | -1.2583 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248337 | 0.00017187 | 0.00092782 | 0.068733 | -0.33259 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 213847 | 0.00017878 | 0.00091953 | 0.071895 | -0.32906 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248337 | 0.00017187 | 0.00092782 | 0.068733 | -0.33259 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248332 | 0.00012788 | 0.00096803 | -0.03153 | -0.25882 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248332 | 0.00012788 | 0.00096803 | -0.03153 | -0.25882 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3128634 | 3.1353 | 1.8169 | 0.0065652 | -1.1899 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 248337 | 3.1315 | 1.8210 | 0.0072815 | -1.1976 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3128634 | 0.041772 | 0.010087 | -0.70666 | -0.13755 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 248337 | 0.050047 | 0.0045504 | -3.7006 | 15.945 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1593891 | 1.7191e-05 | 0.0010207 | -0.0018418 | -0.82931 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1324054 | 1.5483e-05 | 0.0010187 |-0.00033996 | -0.82144 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1363367 | 9.6666e-06 | 0.0010475 | -0.0035643 | -0.90828 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1363367 | 9.6666e-06 | 0.0010475 | -0.0035643 | -0.90828 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1467825 | 2.2763e-05 | 0.0011536 | -0.017395 | -1.2019 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1210076 | 1.9806e-05 | 0.0011532 | -0.01322 | -1.2012 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1237301 | 3.0904e-05 | 0.0011581 | -0.03081 | -1.2112 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1237301 | 3.0904e-05 | 0.0011581 | -0.03081 | -1.2112 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126066 | 4.3433e-06 | 0.00061302 | 0.079391 | 0.18258 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 113978 | 5.6424e-06 | 0.00061007 | 0.073582 | 0.20483 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 108690 | 1.0254e-06 | 0.00060646 | 0.084373 | 0.24495 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 17376 | 2.487e-05 | 0.00065174 | 0.041507 | -0.15298 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126066 |-4.6975e-05 | 0.00066471 | -0.13639 | 0.25273 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126066 |-4.6975e-05 | 0.00066471 | -0.13639 | 0.25273 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1467825 | 3.1755 | 1.8175 | -0.03186 | -1.1861 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 126066 | 3.1435 | 1.8170 | -0.0003784 | -1.204 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1467825 | 0.024934 | 0.0053827 | -0.50509 | -0.53673 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 126066 | 0.028777 | 0.0023566 | -3.0624 | 11.458 | RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 208 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 91086 | 0.00047527 | 0.0028636 | -0.22779 | -0.81608 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 815 | -0.0002245 | 0.0020899 | 0.20717 | 0.36276 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2308 |-0.00012467 | 0.0023202 | 0.19814 | 0.01682 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7329 | 6.8739e-05 | 0.0025527 | 0.024568 | -0.37442 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24713 | 0.0003005 | 0.0026990 | -0.10249 | -0.58704 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 117375 | 0.00040888 | 0.0028908 | -0.12599 | -0.85782 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 390913 | 7.6271e-05 | 0.0029829 | -0.021636 | -0.99004 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 437650 |-2.2235e-05 | 0.0029764 | 0.01662 | -0.98061 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310369 | 1.125e-05 | 0.0029414 | -0.0272 | -0.93856 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 208 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 91086 | 0.00047527 | 0.0028636 | -0.22779 | -0.81608 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 815 | -0.0002245 | 0.0020899 | 0.20717 | 0.36276 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2308 |-0.00012467 | 0.0023202 | 0.19814 | 0.01682 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7329 | 6.8739e-05 | 0.0025527 | 0.024568 | -0.37442 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24713 | 0.0003005 | 0.0026990 | -0.10249 | -0.58704 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 117375 | 0.00040888 | 0.0028908 | -0.12599 | -0.85782 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 390913 | 7.6271e-05 | 0.0029829 | -0.021636 | -0.99004 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 437650 |-2.2235e-05 | 0.0029764 | 0.01662 | -0.98061 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310369 | 1.125e-05 | 0.0029414 | -0.0272 | -0.93856 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2877803 | 3.1313 | 1.8191 | 0.010612 | -1.1933 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2877803 | 0.042422 | 0.010060 | -0.80573 | -0.043395 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 0.00014596 | 0.0023271 | -0.33425 | 0.28766 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107601 | 0.00024318 | 0.0028941 | -0.049143 | -0.87955 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 926 | 0.00038776 | 0.0021945 | -0.41769 | 0.66859 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2314 | 0.00032267 | 0.0024645 | -0.22555 | -0.17343 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5725 | 0.00034188 | 0.0025746 | -0.12198 | -0.43382 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21766 | 0.00048228 | 0.0026829 | -0.30567 | -0.5384 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 117681 | 0.00058742 | 0.0028806 | -0.27032 | -0.81088 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417417 | 0.00017919 | 0.0029848 | -0.096723 | -1.0004 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470794 | 6.986e-06 | 0.0029862 | -0.0095434 | -1.0034 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 350475 |-9.3666e-05 | 0.0029498 | 0.063646 | -0.9499 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 0.00014596 | 0.0023271 | -0.33425 | 0.28766 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107601 | 0.00024318 | 0.0028941 | -0.049143 | -0.87955 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 926 | 0.00038776 | 0.0021945 | -0.41769 | 0.66859 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2314 | 0.00032267 | 0.0024645 | -0.22555 | -0.17343 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5725 | 0.00034188 | 0.0025746 | -0.12198 | -0.43382 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21766 | 0.00048228 | 0.0026829 | -0.30567 | -0.5384 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 117681 | 0.00058742 | 0.0028806 | -0.27032 | -0.81088 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417417 | 0.00017919 | 0.0029848 | -0.096723 | -1.0004 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470794 | 6.986e-06 | 0.0029862 | -0.0095434 | -1.0034 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 350475 |-9.3666e-05 | 0.0029498 | 0.063646 | -0.9499 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 548402 | 5.1414e-05 | 0.0018627 | -0.019843 | -0.91848 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 548402 | 5.1414e-05 | 0.0018627 | -0.019843 | -0.91848 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 514764 | 4.2947e-05 | 0.0018751 | -0.014774 | -0.94326 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33638 | 0.00015628 | 0.0016986 | -0.063862 | -0.5484 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5692 | 1.6883e-05 | 0.0017885 | 0.0042683 | -0.7784 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14972 | 0.00036343 | 0.0018196 | -0.17546 | -0.85339 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4212 | 0.00026583 | 0.0018467 | -0.14074 | -0.85142 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1861 | 8.007e-05 | 0.0017409 | -0.0079281 | -0.62974 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12592 | 6.5953e-05 | 0.0018216 | 0.033158 | -0.87407 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31267 | 0.00010016 | 0.0018674 | -0.021002 | -0.93468 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56160 | 8.7006e-05 | 0.0018673 | -0.035635 | -0.92664 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 84422 |-1.1868e-05 | 0.0018627 | 0.017721 | -0.9053 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92833 |-4.2163e-05 | 0.0018857 | 0.03098 | -0.94751 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 96751 | -5.328e-05 | 0.0018997 | 0.029743 | -0.98936 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75779 | 8.3184e-05 | 0.0018839 | -0.054077 | -0.97435 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38223 | 0.00016303 | 0.0018605 | -0.072935 | -0.92594 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 865 | 0.00011894 | 0.0016748 | -0.0075048 | -0.5161 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1285 | 9.9338e-05 | 0.0017404 | -0.076385 | -0.64493 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 687 | 5.658e-05 | 0.0017854 | -0.044173 | -0.67419 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 390 | 0.00011525 | 0.0015567 | 0.03723 | -0.074476 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1403 | 5.8767e-05 | 0.0016853 | 0.0040875 | -0.49943 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2623 | 0.00018025 | 0.0017187 | -0.08583 | -0.57468 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3565 | 0.00018353 | 0.0017292 | -0.12969 | -0.60509 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4834 | 0.00015785 | 0.0016972 | -0.057034 | -0.5364 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5863 | 0.00017566 | 0.0016765 | -0.03312 | -0.50149 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5764 | 0.00014247 | 0.0017158 | -0.078574 | -0.56016 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3956 | 0.00021393 | 0.0017006 | -0.10665 | -0.58364 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2403 | 0.00011218 | 0.0016176 | 0.032858 | -0.47359 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6557 | 3.2921e-05 | 0.0017715 |-0.00015066 | -0.74071 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16257 | 0.00034156 | 0.0018147 | -0.16519 | -0.84036 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4899 | 0.00023212 | 0.0018386 | -0.12325 | -0.82854 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2251 | 8.7232e-05 | 0.0017051 | -0.003049 | -0.5339 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13995 | 6.5134e-05 | 0.0018066 | 0.030674 | -0.83711 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33890 | 0.00010766 | 0.0018541 | -0.02755 | -0.90608 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 59725 | 9.3699e-05 | 0.0018582 | -0.042337 | -0.90788 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 89256 |-2.8815e-07 | 0.0018524 | 0.010838 | -0.88459 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 98696 |-2.4966e-05 | 0.0018709 | 0.022022 | -0.91911 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 102515 |-3.9474e-05 | 0.0018880 | 0.020263 | -0.96583 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 79735 | 9.0712e-05 | 0.0018741 | -0.058465 | -0.95537 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 40626 | 0.00015978 | 0.0018459 | -0.067256 | -0.90186 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 533943 | 6.374e-05 | 0.0018578 | -0.024802 | -0.904 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 533943 | 6.374e-05 | 0.0018578 | -0.024802 | -0.904 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 503679 | 5.525e-05 | 0.0018692 | -0.02085 | -0.9268 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30264 | 0.0001783 | 0.0016913 | -0.051894 | -0.53952 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1354 | 0.00011413 | 0.0018201 | 0.029627 | -0.75077 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29433 | 9.4773e-05 | 0.0018696 | -0.021154 | -0.90607 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11281 | 0.00013779 | 0.0017863 | -0.036817 | -0.76414 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4869 |-2.3032e-05 | 0.0018221 | -0.0098019 | -0.82087 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3442 | 0.00024295 | 0.0018046 | -0.094832 | -0.862 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14475 | 0.00038293 | 0.0018321 | -0.17131 | -0.87058 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 40417 | 0.00015449 | 0.0018780 | -0.065161 | -0.94559 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 76057 | 8.303e-05 | 0.0018887 | -0.035563 | -0.97373 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 95601 |-3.4018e-05 | 0.0018807 | 0.016686 | -0.95989 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 91766 | -3.402e-05 | 0.0018825 | 0.022851 | -0.93855 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83069 | 3.713e-06 | 0.0018533 | -0.0070562 | -0.89615 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 51915 | 0.00012924 | 0.0018394 | -0.046186 | -0.87094 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 327 |-5.4194e-05 | 0.0014960 | 0.015255 | -0.27119 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2382 | 0.00026385 | 0.0017463 | -0.11711 | -0.59643 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1281 | 5.2329e-05 | 0.0017142 | 0.072203 | -0.61327 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 907 | 4.1311e-05 | 0.0016201 | 0.014166 | -0.31367 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 537 | 0.00028353 | 0.0015553 | 0.0082447 | -0.51382 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1307 | 4.1857e-05 | 0.0016973 | 0.076761 | -0.53058 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2148 | 0.00016287 | 0.0016811 | -0.048701 | -0.49956 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3528 | 0.00019935 | 0.0017246 | -0.069243 | -0.62216 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5023 | 0.00014755 | 0.0016591 | -0.073045 | -0.48576 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5103 | 0.0002178 | 0.0017106 | -0.070314 | -0.57975 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4289 | 0.00024397 | 0.0016660 | -0.10049 | -0.48217 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3432 | 0.00014613 | 0.0017063 | -0.0077894 | -0.54632 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1681 | 7.641e-05 | 0.0017541 | 0.045201 | -0.64407 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31815 | 0.00010928 | 0.0018600 | -0.03067 | -0.88408 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12562 | 0.00012816 | 0.0017785 | -0.024674 | -0.74974 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5776 |-1.1547e-05 | 0.0017879 | -0.01008 | -0.74412 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3979 | 0.00024914 | 0.0017688 | -0.086847 | -0.80912 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15782 | 0.00035282 | 0.0018231 | -0.147 | -0.85576 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 42565 | 0.00015496 | 0.0018674 | -0.064682 | -0.92463 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79585 | 8.9119e-05 | 0.0018807 | -0.038465 | -0.95791 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 100624 |-2.2433e-05 | 0.0018678 | 0.0088116 | -0.93607 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 96869 |-1.5757e-05 | 0.0018717 | 0.013022 | -0.91768 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87358 | 1.8582e-05 | 0.0018432 | -0.015615 | -0.87571 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 55347 | 0.00013037 | 0.0018309 | -0.044373 | -0.85184 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1082345 | 5.7501e-05 | 0.0018603 | -0.022308 | -0.91137 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1082345 | 5.7501e-05 | 0.0018603 | -0.022308 | -0.91137 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1018443 | 4.9042e-05 | 0.0018722 | -0.0178 | -0.93515 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 63902 | 0.00016672 | 0.0016952 | -0.058308 | -0.54397 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1082345 | 3.1511 | 1.8138 | -0.0083453 | -1.1882 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1082345 | 0.025345 | 0.0052427 | -0.62577 | -0.43182 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1348901 | 0.00011512 | 0.0029471 | -0.048645 | -0.94717 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1348901 | 0.00011512 | 0.0029471 | -0.048645 | -0.94717 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1348901 | 0.00011512 | 0.0029471 | -0.048645 | -0.94717 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.000803 | 0.0013709 | 1.0791 | 1.7482 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 203 | 0.00021777 | 0.0021846 | -0.32424 | 0.40639 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 94584 | 0.00032261 | 0.0028645 | -0.1116 | -0.83933 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 831 | 0.00021704 | 0.0021102 | -0.013346 | 0.32856 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2287 | 0.00017848 | 0.0023030 | -0.18832 | 0.16082 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7292 | 0.00024343 | 0.0025249 | -0.11359 | -0.32128 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23602 | 0.00031305 | 0.0027086 | -0.11155 | -0.61001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 110023 | 0.00044591 | 0.0028769 | -0.15616 | -0.84654 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 376891 | 0.00013165 | 0.0029889 | -0.055917 | -0.99477 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 428670 | 2.703e-06 | 0.0029812 | -0.008101 | -0.99502 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 304464 | -2.553e-05 | 0.0029378 | 0.0024961 | -0.93594 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.000803 | 0.0013709 | 1.0791 | 1.7482 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 203 | 0.00021777 | 0.0021846 | -0.32424 | 0.40639 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 94584 | 0.00032261 | 0.0028645 | -0.1116 | -0.83933 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 831 | 0.00021704 | 0.0021102 | -0.013346 | 0.32856 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2287 | 0.00017848 | 0.0023030 | -0.18832 | 0.16082 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7292 | 0.00024343 | 0.0025249 | -0.11359 | -0.32128 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 23602 | 0.00031305 | 0.0027086 | -0.11155 | -0.61001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 110023 | 0.00044591 | 0.0028769 | -0.15616 | -0.84654 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 376891 | 0.00013165 | 0.0029889 | -0.055917 | -0.99477 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 428670 | 2.703e-06 | 0.0029812 | -0.008101 | -0.99502 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 304464 | -2.553e-05 | 0.0029378 | 0.0024961 | -0.93594 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2910346 | 0.00011223 | 0.0029490 | -0.047917 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2910346 | 0.00011223 | 0.0029490 | -0.047917 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2910346 | 0.00011223 | 0.0029490 | -0.047917 | -0.94724 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2910346 | 3.135 | 1.8173 | 0.0066207 | -1.1905 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2910346 | 0.042548 | 0.0099983 | -0.82224 | -0.0018802 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1561445 | 0.00010972 | 0.0029506 | -0.047284 | -0.9473 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1561445 | 0.00010972 | 0.0029506 | -0.047284 | -0.9473 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1561445 | 0.00010972 | 0.0029506 | -0.047284 | -0.9473 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 1.462e-05 | 0.0023736 | -0.11058 | 0.33957 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 110139 | 0.00035279 | 0.0028881 | -0.14421 | -0.85116 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 925 | 0.00025931 | 0.0021602 | -0.16475 | 0.64933 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2363 | 0.00022103 | 0.0024374 | -0.17166 | -0.14031 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5950 | 0.00028079 | 0.0025489 | -0.083094 | -0.34389 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22825 | 0.00026642 | 0.0026471 | -0.063054 | -0.52242 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126607 | 0.00047411 | 0.0028794 | -0.1533 | -0.84325 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 442092 | 9.4577e-05 | 0.0029824 | -0.033979 | -0.98855 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 486884 | 2.9624e-06 | 0.0029811 | -0.012316 | -0.98973 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 363376 | -2.321e-05 | 0.0029456 | -0.0073167 | -0.94432 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 1.462e-05 | 0.0023736 | -0.11058 | 0.33957 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 110139 | 0.00035279 | 0.0028881 | -0.14421 | -0.85116 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 925 | 0.00025931 | 0.0021602 | -0.16475 | 0.64933 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2363 | 0.00022103 | 0.0024374 | -0.17166 | -0.14031 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5950 | 0.00028079 | 0.0025489 | -0.083094 | -0.34389 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 22825 | 0.00026642 | 0.0026471 | -0.063054 | -0.52242 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126607 | 0.00047411 | 0.0028794 | -0.1533 | -0.84325 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 442092 | 9.4577e-05 | 0.0029824 | -0.033979 | -0.98855 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 486884 | 2.9624e-06 | 0.0029811 | -0.012316 | -0.98973 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 363376 | -2.321e-05 | 0.0029456 | -0.0073167 | -0.94432 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 741917 | 5.04e-05 | 0.0018690 | -0.02029 | -0.92974 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 741917 | 5.04e-05 | 0.0018690 | -0.02029 | -0.92974 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 703354 | 4.2805e-05 | 0.0018797 | -0.016513 | -0.95117 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38563 | 0.00015916 | 0.0017044 | -0.051539 | -0.5637 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7046 | -0.0001133 | 0.0017868 | 0.061817 | -0.76525 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17040 | 0.00038935 | 0.0018208 | -0.18651 | -0.86123 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4396 | 0.00028744 | 0.0018468 | -0.1475 | -0.8476 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1821 | 0.00012482 | 0.0017636 | -0.018137 | -0.67436 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17818 | 0.00017705 | 0.0018368 | -0.035849 | -0.90344 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 47003 | 6.5617e-05 | 0.0018750 | -0.013155 | -0.94821 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 83444 | 6.957e-05 | 0.0018716 | -0.02855 | -0.92746 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 118386 |-1.2408e-05 | 0.0018659 | 0.014562 | -0.91476 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129968 |-6.2326e-05 | 0.0018885 | 0.041717 | -0.95496 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 135049 |-3.2728e-05 | 0.0019006 | 0.020066 | -0.99175 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 94723 | 0.00011172 | 0.0018866 | -0.071443 | -0.97703 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 46660 | 0.00017023 | 0.0018664 | -0.082562 | -0.93196 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1099 | 0.00013765 | 0.0016594 | 0.018838 | -0.4973 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1316 | 0.00012329 | 0.0017367 | -0.078766 | -0.62387 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 721 | 0.0001062 | 0.0017404 | -0.072174 | -0.62531 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 384 | 9.387e-05 | 0.0015350 | 0.028375 | -0.016836 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1749 | 6.5414e-05 | 0.0016655 | -0.0098133 | -0.44947 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3390 | 0.00015718 | 0.0017494 | -0.053986 | -0.69063 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4456 | 0.00020481 | 0.0017313 | -0.091421 | -0.59474 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5835 | 0.00019648 | 0.0017019 | -0.052737 | -0.53351 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6695 | 0.00017405 | 0.0016856 | -0.030833 | -0.52399 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6190 | 0.00014563 | 0.0017316 | -0.064426 | -0.59803 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4157 | 0.00014654 | 0.0016989 | -0.078845 | -0.59292 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2571 | 0.00012382 | 0.0016228 | 0.0062271 | -0.48005 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8145 |-6.9252e-05 | 0.0017677 | 0.046981 | -0.72344 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18356 | 0.00036963 | 0.0018161 | -0.1766 | -0.84823 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5117 | 0.00025821 | 0.0018313 | -0.13239 | -0.81772 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2205 | 0.00011845 | 0.0017191 | -0.0091411 | -0.56401 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19567 | 0.00016592 | 0.0018208 | -0.030913 | -0.86592 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50393 | 7.3293e-05 | 0.0018650 | -0.017456 | -0.92903 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 87900 | 7.7808e-05 | 0.0018637 | -0.033413 | -0.91026 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 124221 | 8.6316e-07 | 0.0018567 | 0.007926 | -0.89485 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 136663 |-4.6031e-05 | 0.0018762 | 0.033182 | -0.93126 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 141239 |-2.2934e-05 | 0.0018922 | 0.014031 | -0.97439 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 98880 | 0.00011341 | 0.0018780 | -0.072243 | -0.96108 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 49231 | 0.00016759 | 0.0018534 | -0.078269 | -0.91047 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 621450 | 5.0002e-05 | 0.0018666 | -0.015752 | -0.92561 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 621450 | 5.0002e-05 | 0.0018666 | -0.015752 | -0.92561 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 587512 | 4.0581e-05 | 0.0018766 | -0.011977 | -0.9449 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33938 | 0.00018106 | 0.0017151 | -0.039735 | -0.61636 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1036 | 2.8991e-05 | 0.0017563 | 0.069977 | -0.61486 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43741 | 9.2398e-05 | 0.0018713 | -0.031067 | -0.91725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14419 | 0.0002298 | 0.0017970 | -0.089129 | -0.79101 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5903 |-6.2535e-05 | 0.0017962 | 0.036537 | -0.7951 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2348 | 0.00026975 | 0.0017690 | -0.10526 | -0.75794 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8957 | 0.00040915 | 0.0018305 | -0.20051 | -0.85966 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30469 | 0.0002506 | 0.0018716 | -0.11457 | -0.94655 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 76755 | 0.00017999 | 0.0018807 | -0.087822 | -0.97006 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 114484 |-4.8657e-05 | 0.0018942 | 0.029901 | -0.98334 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 110207 |-8.3441e-05 | 0.0018872 | 0.049432 | -0.95258 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 103094 |-4.0287e-05 | 0.0018693 | 0.023572 | -0.92294 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 76099 | 4.1969e-05 | 0.0018548 | 0.00074186 | -0.90382 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 249 | 4.5652e-06 | 0.0014775 | -0.0087662 | -0.30341 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3171 | 0.00017097 | 0.0017227 | -0.05258 | -0.64044 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1411 | 0.00013781 | 0.0017281 | 0.097363 | -0.66059 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 879 |-5.9621e-05 | 0.0016304 | 0.072655 | -0.40824 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 427 | 0.00021073 | 0.0015664 | -0.024908 | -0.39367 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1003 | 0.00015069 | 0.0016747 | 0.10984 | -0.54806 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1872 | 0.00013548 | 0.0016973 | -0.072701 | -0.51647 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3120 | 0.00022535 | 0.0017327 | -0.062509 | -0.67698 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5316 | 0.00017984 | 0.0016822 | -0.029567 | -0.54576 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5981 | 0.00026531 | 0.0017277 | -0.066818 | -0.62348 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5788 | 0.00018384 | 0.0017204 | -0.082574 | -0.60929 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4721 | 0.00013887 | 0.0017555 | -0.028466 | -0.7237 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1285 | 2.3411e-05 | 0.0016967 | 0.060945 | -0.53185 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 46912 | 9.8595e-05 | 0.0018601 | -0.033845 | -0.89757 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15830 | 0.00022103 | 0.0017907 | -0.072152 | -0.78201 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6782 |-6.2129e-05 | 0.0017740 | 0.040399 | -0.74793 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2775 | 0.00025932 | 0.0017350 | -0.091751 | -0.7005 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9960 | 0.00038081 | 0.0018158 | -0.16675 | -0.84354 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32341 | 0.00024365 | 0.0018617 | -0.11082 | -0.92553 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79875 | 0.0001819 | 0.0018748 | -0.087455 | -0.959 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119800 |-3.5729e-05 | 0.0018836 | 0.02343 | -0.96335 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 116188 |-5.8269e-05 | 0.0018784 | 0.037034 | -0.93449 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 108882 |-2.4235e-05 | 0.0018599 | 0.013922 | -0.90504 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 80820 | 4.8498e-05 | 0.0018484 | -0.0019729 | -0.89261 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1363367 | 5.0217e-05 | 0.0018679 | -0.01821 | -0.92785 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1363367 | 5.0217e-05 | 0.0018679 | -0.01821 | -0.92785 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1290866 | 4.1785e-05 | 0.0018783 | -0.014435 | -0.9483 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 72501 | 0.00016936 | 0.0017094 | -0.045861 | -0.58828 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1363367 | 3.1727 | 1.8175 | -0.029125 | -1.1877 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1363367 | 0.025315 | 0.0052887 | -0.64219 | -0.39656 | RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 202 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 40600 | 0.00052902 | 0.0028302 | -0.25443 | -0.73994 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 762 |-0.00023332 | 0.0020880 | 0.20035 | 0.32396 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2237 |-0.00011561 | 0.0023319 | 0.19251 | -0.013155 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7046 | 6.5713e-05 | 0.0025586 | 0.022362 | -0.37966 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22437 | 0.0002886 | 0.0026982 | -0.098534 | -0.59091 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 88691 | 0.00029567 | 0.0028797 | -0.091513 | -0.84656 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 221490 | 4.0837e-05 | 0.0029699 | -0.0089176 | -0.97013 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 239389 |-7.5251e-06 | 0.0029618 | 0.0065109 | -0.96453 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158711 | 7.3293e-05 | 0.0029251 | -0.051516 | -0.91351 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 202 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 40600 | 0.00052902 | 0.0028302 | -0.25443 | -0.73994 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 762 |-0.00023332 | 0.0020880 | 0.20035 | 0.32396 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2237 |-0.00011561 | 0.0023319 | 0.19251 | -0.013155 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7046 | 6.5713e-05 | 0.0025586 | 0.022362 | -0.37966 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22437 | 0.0002886 | 0.0026982 | -0.098534 | -0.59091 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 88691 | 0.00029567 | 0.0028797 | -0.091513 | -0.84656 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 221490 | 4.0837e-05 | 0.0029699 | -0.0089176 | -0.97013 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 239389 |-7.5251e-06 | 0.0029618 | 0.0065109 | -0.96453 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158711 | 7.3293e-05 | 0.0029251 | -0.051516 | -0.91351 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1600089 | 3.1356 | 1.8177 | 0.0063592 | -1.1898 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1600089 | 0.042454 | 0.010042 | -0.81286 | -0.025085 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 237 | 8.5735e-05 | 0.0023363 | -0.2849 | 0.29458 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46396 | 0.00027505 | 0.0028524 | -0.044513 | -0.82406 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 895 | 0.00039617 | 0.0021836 | -0.43074 | 0.71702 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2191 | 0.00034423 | 0.0024615 | -0.24724 | -0.15863 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5372 | 0.00032455 | 0.0026011 | -0.12258 | -0.46873 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19485 | 0.00048756 | 0.0026811 | -0.31127 | -0.53085 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88814 | 0.00046626 | 0.0028868 | -0.22833 | -0.8373 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 229624 | 0.00014587 | 0.0029768 | -0.082989 | -0.98905 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250067 |-6.2693e-06 | 0.0029750 | -0.0018454 | -0.9852 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 175377 |-3.9367e-05 | 0.0029257 | 0.04519 | -0.9223 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 237 | 8.5735e-05 | 0.0023363 | -0.2849 | 0.29458 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46396 | 0.00027505 | 0.0028524 | -0.044513 | -0.82406 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 895 | 0.00039617 | 0.0021836 | -0.43074 | 0.71702 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2191 | 0.00034423 | 0.0024615 | -0.24724 | -0.15863 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5372 | 0.00032455 | 0.0026011 | -0.12258 | -0.46873 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19485 | 0.00048756 | 0.0026811 | -0.31127 | -0.53085 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88814 | 0.00046626 | 0.0028868 | -0.22833 | -0.8373 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 229624 | 0.00014587 | 0.0029768 | -0.082989 | -0.98905 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250067 |-6.2693e-06 | 0.0029750 | -0.0018454 | -0.9852 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 175377 |-3.9367e-05 | 0.0029257 | 0.04519 | -0.9223 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 156552 | 4.0262e-05 | 0.0018577 | -0.0074481 | -0.91322 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 156552 | 4.0262e-05 | 0.0018577 | -0.0074481 | -0.91322 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 141311 | 3.2162e-05 | 0.0018753 | -0.0021929 | -0.94911 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15241 | 0.00010392 | 0.0017110 | -0.039327 | -0.57771 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3264 |-9.3044e-06 | 0.0017725 | 0.037177 | -0.75252 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5271 | 0.00017489 | 0.0018191 | -0.072202 | -0.83253 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2434 | 0.00021362 | 0.0018446 | -0.11213 | -0.87626 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1281 | 3.2073e-05 | 0.0017382 | -0.0169 | -0.62557 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7415 | 7.0073e-05 | 0.0018228 | 0.024121 | -0.88416 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13900 | -5.864e-05 | 0.0018447 | 0.073306 | -0.88939 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18384 |-5.3259e-05 | 0.0018629 | 0.039082 | -0.91027 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21171 |-4.7356e-06 | 0.0018835 | 0.015717 | -0.95199 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23909 | 3.0659e-05 | 0.0019021 | -0.014945 | -0.99345 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23128 | 7.2261e-05 | 0.0019086 | -0.03181 | -1.0152 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12851 | 0.00012888 | 0.0018948 | -0.063262 | -0.99176 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8303 | 3.4794e-05 | 0.0018716 | -0.010184 | -0.9545 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 363 | 0.00017538 | 0.0017988 | -0.093195 | -0.62067 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 849 | 0.00012813 | 0.0017584 | -0.091481 | -0.68698 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 507 |-0.00012123 | 0.0018344 | 0.078655 | -0.7135 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 288 | 0.0001337 | 0.0015940 | 0.032019 | -0.17703 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 668 |-5.2456e-05 | 0.0016839 | 0.072193 | -0.53563 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1401 | 0.00022719 | 0.0017136 | -0.09346 | -0.58682 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1597 | 0.00014851 | 0.0017156 | -0.093765 | -0.62562 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1878 | 0.00012676 | 0.0017100 | -0.09006 | -0.56692 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2120 | 9.8869e-05 | 0.0016890 | 0.031916 | -0.52589 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2327 | 8.2553e-05 | 0.0017381 | -0.057436 | -0.56552 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1911 | 0.0001082 | 0.0017299 | -0.056353 | -0.67108 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1332 | 2.9106e-05 | 0.0015710 | 0.070269 | -0.37337 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3627 | 1.0702e-05 | 0.0017763 | 0.023435 | -0.74096 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6120 | 0.00016768 | 0.0018099 | -0.074267 | -0.81103 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2941 | 0.00014566 | 0.0018475 | -0.07294 | -0.85715 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1569 | 5.4333e-05 | 0.0017082 | -0.013215 | -0.53785 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8083 | 5.8608e-05 | 0.0018106 | 0.030279 | -0.85617 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15301 |-2.6493e-05 | 0.0018327 | 0.051565 | -0.86596 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19981 |-3.2141e-05 | 0.0018491 | 0.02331 | -0.88702 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23049 | 8.324e-06 | 0.0018674 | 0.0043041 | -0.92093 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26029 | 3.7152e-05 | 0.0018830 | -0.013763 | -0.956 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25455 | 7.3214e-05 | 0.0018934 | -0.033915 | -0.98059 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14762 | 0.00012578 | 0.0018710 | -0.06181 | -0.94924 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9635 | 3.3922e-05 | 0.0018287 | -0.0020361 | -0.88061 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 162160 | 5.4156e-05 | 0.0018479 | -0.0054358 | -0.88744 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 162160 | 5.4156e-05 | 0.0018479 | -0.0054358 | -0.88744 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 148187 | 4.532e-05 | 0.0018665 | -0.0018296 | -0.92402 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13973 | 0.00013257 | 0.0016722 | -0.01537 | -0.49833 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1035 |-3.2555e-05 | 0.0017899 | 0.096692 | -0.68107 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14856 |-6.0803e-05 | 0.0018378 | 0.085783 | -0.84668 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6623 | 0.00018472 | 0.0017617 | -0.032106 | -0.73959 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2359 |-1.4324e-05 | 0.0018092 | 0.0058019 | -0.78496 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1953 | 0.00019715 | 0.0017648 | -0.077649 | -0.76248 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4823 | 0.00014585 | 0.0018042 | -0.053829 | -0.79127 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8040 | 6.0169e-05 | 0.0018853 | -0.028299 | -0.9144 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13187 | 0.00028782 | 0.0018885 | -0.14956 | -0.95481 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26724 | 6.2803e-05 | 0.0018881 | -0.028133 | -0.97903 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26462 |-2.7764e-05 | 0.0018886 | 0.025193 | -0.97122 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 22904 | 2.8517e-05 | 0.0018671 | 0.0015585 | -0.92593 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19221 |-4.4017e-05 | 0.0018643 | 0.076434 | -0.90944 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 249 | 1.5069e-05 | 0.0014763 | 0.15835 | -0.19058 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1360 | 0.00024181 | 0.0017228 | -0.10364 | -0.58422 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 753 | 1.657e-05 | 0.0016953 | 0.19647 | -0.56511 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 442 |-4.9631e-05 | 0.0015763 | -0.020897 | -0.056451 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 360 | 0.00029085 | 0.0015300 | 0.071202 | -0.31922 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 820 |-2.5154e-06 | 0.0016537 | 0.16865 | -0.42828 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1138 | 0.00016126 | 0.0016983 | 0.0075673 | -0.55697 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1554 | 9.7178e-05 | 0.0016674 | -0.064026 | -0.55282 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1913 | 6.3181e-05 | 0.0016541 | -0.085249 | -0.47153 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1920 | 0.00014 | 0.0016927 | -0.022008 | -0.52266 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1817 | 0.00020941 | 0.0016661 | -0.10688 | -0.44451 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1647 | 0.00019555 | 0.0016812 | 0.030516 | -0.527 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1284 |-2.1163e-05 | 0.0017202 | 0.10158 | -0.567 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16216 |-3.0869e-05 | 0.0018290 | 0.064762 | -0.83089 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7376 | 0.0001666 | 0.0017554 | -0.0078911 | -0.72875 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2801 |-2.0621e-05 | 0.0017699 | 0.0046639 | -0.68238 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2313 | 0.00021379 | 0.0017258 | -0.065635 | -0.68736 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5643 | 0.00012128 | 0.0017810 | -0.018725 | -0.74628 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9178 | 7.5107e-05 | 0.0018592 | -0.028265 | -0.86641 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14741 | 0.00026383 | 0.0018632 | -0.13436 | -0.91476 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28637 | 6.283e-05 | 0.0018722 | -0.031022 | -0.94919 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28382 |-1.4021e-05 | 0.0018739 | 0.018359 | -0.94123 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24721 | 4.5307e-05 | 0.0018501 | -0.010852 | -0.89097 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20868 |-2.2392e-05 | 0.0018498 | 0.067345 | -0.88083 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 318712 | 4.7369e-05 | 0.0018527 | -0.0064856 | -0.90007 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 318712 | 4.7369e-05 | 0.0018527 | -0.0064856 | -0.90007 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 289498 | 3.8936e-05 | 0.0018708 | -0.0020571 | -0.93624 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 29214 | 0.0001178 | 0.0016923 | -0.028716 | -0.53927 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 318712 | 3.161 | 1.8139 | -0.016339 | -1.1887 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 318712 | 0.025577 | 0.0051232 | -0.66782 | -0.33428 | -RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 747390 | 0.00010436 | 0.0029334 | -0.041913 | -0.92783 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 747390 | 0.00010436 | 0.0029334 | -0.041913 | -0.92783 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 747390 | 0.00010436 | 0.0029334 | -0.041913 | -0.92783 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 178 | 0.00019012 | 0.0022542 | -0.29525 | 0.33831 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46843 | 0.0003311 | 0.0028524 | -0.10553 | -0.82074 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 732 | 0.00019636 | 0.0021317 | 0.026349 | 0.23131 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2051 | 0.00018834 | 0.0023476 | -0.16343 | 0.070798 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6250 | 0.00021651 | 0.0025056 | -0.089131 | -0.30784 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 19155 | 0.00029037 | 0.0027191 | -0.10545 | -0.6307 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 71823 | 0.00034732 | 0.0028648 | -0.12809 | -0.83333 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 205788 | 0.00012323 | 0.0029822 | -0.051962 | -0.9845 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235421 |-1.0816e-05 | 0.0029762 | -0.0001708 | -0.98406 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 159119 | -1.959e-05 | 0.0029247 | 0.0098742 | -0.91613 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 178 | 0.00019012 | 0.0022542 | -0.29525 | 0.33831 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46843 | 0.0003311 | 0.0028524 | -0.10553 | -0.82074 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 732 | 0.00019636 | 0.0021317 | 0.026349 | 0.23131 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2051 | 0.00018834 | 0.0023476 | -0.16343 | 0.070798 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6250 | 0.00021651 | 0.0025056 | -0.089131 | -0.30784 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 19155 | 0.00029037 | 0.0027191 | -0.10545 | -0.6307 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 71823 | 0.00034732 | 0.0028648 | -0.12809 | -0.83333 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 205788 | 0.00012323 | 0.0029822 | -0.051962 | -0.9845 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 235421 |-1.0816e-05 | 0.0029762 | -0.0001708 | -0.98406 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 159119 | -1.959e-05 | 0.0029247 | 0.0098742 | -0.91613 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1751058 | 0.00010089 | 0.0029365 | -0.042232 | -0.93036 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1751058 | 0.00010089 | 0.0029365 | -0.042232 | -0.93036 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1751058 | 0.00010089 | 0.0029365 | -0.042232 | -0.93036 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1751058 | 3.1369 | 1.8067 | 0.0042477 | -1.1751 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1751058 | 0.042669 | 0.0099151 | -0.84075 | 0.058888 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1003668 | 9.8296e-05 | 0.0029388 | -0.042459 | -0.93225 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1003668 | 9.8296e-05 | 0.0029388 | -0.042459 | -0.93225 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1003668 | 9.8296e-05 | 0.0029388 | -0.042459 | -0.93225 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 1.462e-05 | 0.0023736 | -0.11058 | 0.33957 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59211 | 0.0003702 | 0.0028721 | -0.14317 | -0.83369 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 920 | 0.00024253 | 0.0021519 | -0.16641 | 0.67746 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2330 | 0.00023089 | 0.0024530 | -0.17743 | -0.16289 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5806 | 0.00027013 | 0.0025447 | -0.08556 | -0.3352 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21464 | 0.00026783 | 0.0026410 | -0.056722 | -0.52259 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 105162 | 0.00036449 | 0.0028777 | -0.1156 | -0.84956 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285768 | 5.0452e-05 | 0.0029834 | -0.02192 | -0.98762 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304523 |-1.4407e-05 | 0.0029761 | -0.0051077 | -0.98107 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218200 | 2.0851e-05 | 0.0029319 | -0.019878 | -0.92695 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 1.462e-05 | 0.0023736 | -0.11058 | 0.33957 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 59211 | 0.0003702 | 0.0028721 | -0.14317 | -0.83369 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 920 | 0.00024253 | 0.0021519 | -0.16641 | 0.67746 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2330 | 0.00023089 | 0.0024530 | -0.17743 | -0.16289 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5806 | 0.00027013 | 0.0025447 | -0.08556 | -0.3352 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21464 | 0.00026783 | 0.0026410 | -0.056722 | -0.52259 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 105162 | 0.00036449 | 0.0028777 | -0.1156 | -0.84956 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285768 | 5.0452e-05 | 0.0029834 | -0.02192 | -0.98762 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 304523 |-1.4407e-05 | 0.0029761 | -0.0051077 | -0.98107 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218200 | 2.0851e-05 | 0.0029319 | -0.019878 | -0.92695 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 364905 | 5.3813e-05 | 0.0018665 | -0.020819 | -0.92249 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 364905 | 5.3813e-05 | 0.0018665 | -0.020819 | -0.92249 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 336071 | 4.5842e-05 | 0.0018834 | -0.016676 | -0.95553 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 28834 | 0.00012724 | 0.0017017 | -0.043266 | -0.55937 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5027 |-8.2156e-05 | 0.0017926 | 0.013752 | -0.74718 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12016 | 0.0002565 | 0.0018115 | -0.10747 | -0.84376 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4143 | 0.00028407 | 0.0018420 | -0.14952 | -0.83753 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1765 | 0.00010001 | 0.0017410 | -0.021554 | -0.64249 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11178 | 0.00014391 | 0.0018472 | -0.028931 | -0.90785 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27026 | 1.5883e-05 | 0.0018659 | 0.0099669 | -0.93051 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39746 | 4.824e-05 | 0.0018770 | -0.015652 | -0.93908 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 51577 | 1.894e-05 | 0.0018846 | -0.0070241 | -0.94668 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58025 |-2.5224e-05 | 0.0019082 | 0.022929 | -0.98637 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 62120 |-2.6146e-07 | 0.0019090 | 0.0061901 | -1.0024 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39634 | 0.00010736 | 0.0018886 | -0.065486 | -0.97716 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23814 | 9.3768e-05 | 0.0018623 | -0.032159 | -0.93955 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 940 | 0.0001464 | 0.0016456 | 0.011062 | -0.4983 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1220 | 0.00012028 | 0.0017486 | -0.085575 | -0.65478 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 654 | 5.0266e-05 | 0.0017330 | -0.056773 | -0.6245 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 300 | 9.0185e-05 | 0.0015057 | 0.074636 | 0.0094465 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1388 | 7.4447e-05 | 0.0016725 | -0.0011619 | -0.40736 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2479 | 0.00016298 | 0.0017544 | -0.057623 | -0.69789 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3165 | 0.00017765 | 0.0017667 | -0.10652 | -0.65325 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3979 | 0.00019389 | 0.0017019 | -0.042848 | -0.55126 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4629 | 8.8576e-05 | 0.0016772 | -0.009486 | -0.51884 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4610 | 4.6063e-05 | 0.0017242 | -0.02368 | -0.55969 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3282 | 0.0001867 | 0.0016779 | -0.104 | -0.56255 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2188 | 9.4061e-05 | 0.0015900 | 0.034403 | -0.42005 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5967 |-3.5265e-05 | 0.0017659 | 0.0032164 | -0.69697 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13236 | 0.00024298 | 0.0018058 | -0.10408 | -0.8265 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4797 | 0.00024661 | 0.0018270 | -0.13061 | -0.8105 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2065 | 9.8303e-05 | 0.0017024 | -0.0094103 | -0.54985 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12566 | 0.00013511 | 0.0018262 | -0.02394 | -0.8557 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29505 | 3.1129e-05 | 0.0018552 | 0.0014844 | -0.90956 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 42911 | 5.9805e-05 | 0.0018678 | -0.024448 | -0.91757 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 55556 | 3.6045e-05 | 0.0018683 | -0.014267 | -0.91373 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 62654 |-1.4123e-05 | 0.0018872 | 0.017052 | -0.94871 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 66730 | 3.649e-06 | 0.0018942 | 0.003234 | -0.97148 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 42916 | 0.00011449 | 0.0018708 | -0.070297 | -0.94538 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26002 | 9.3796e-05 | 0.0018381 | -0.028141 | -0.89799 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 289207 | 3.9105e-05 | 0.0018700 | -0.0089037 | -0.93285 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 289207 | 3.9105e-05 | 0.0018700 | -0.0089037 | -0.93285 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 268528 | 2.9155e-05 | 0.0018835 | -0.0051766 | -0.95843 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20679 | 0.00014378 | 0.0017183 | -0.023885 | -0.62183 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 455 |-1.3146e-05 | 0.0018399 | 0.035966 | -0.70606 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 25395 | 7.519e-05 | 0.0018638 | -0.028164 | -0.90546 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7505 | 0.00025958 | 0.0017989 | -0.10196 | -0.80785 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3143 |-0.00016434 | 0.0017816 | 0.11642 | -0.78387 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1005 | 0.00017062 | 0.0018136 | -0.050219 | -0.91366 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2798 | 0.00029335 | 0.0018790 | -0.14713 | -0.95588 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9627 | 0.00022223 | 0.0018584 | -0.10034 | -0.93089 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27893 | 0.00029618 | 0.0018924 | -0.16116 | -0.97727 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53514 |-2.5855e-05 | 0.0018990 | 0.022646 | -0.99426 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 50491 |-0.00011709 | 0.0018939 | 0.07251 | -0.96507 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 46793 |-4.3832e-05 | 0.0018851 | 0.027473 | -0.95001 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 39909 |-3.4484e-05 | 0.0018592 | 0.039723 | -0.91041 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 77 |-0.00041588 | 0.0015665 | 0.0098863 | -0.88748 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1861 | 0.00016801 | 0.0017424 | -0.055875 | -0.70396 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 730 | 0.00017663 | 0.0018036 | 0.083055 | -0.8385 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 464 |-0.00017249 | 0.0016523 | 0.11859 | -0.57073 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 153 |-3.9941e-05 | 0.0016903 | -0.064097 | -0.65146 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 391 | 0.00022713 | 0.0017361 | 0.033049 | -0.69898 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 982 | 0.00014198 | 0.0017170 | -0.1271 | -0.48541 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1837 | 0.00017284 | 0.0017344 | -0.040268 | -0.68065 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3258 | 0.0001372 | 0.0016840 | 0.012001 | -0.5429 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3957 | 0.00020709 | 0.0017089 | -0.050275 | -0.56898 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3998 | 0.00011344 | 0.0017146 | -0.034491 | -0.60422 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2971 | 0.00011928 | 0.0017247 | -0.013232 | -0.6668 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 532 |-7.0439e-05 | 0.0018090 | 0.055602 | -0.69328 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27256 | 8.2518e-05 | 0.0018547 | -0.031365 | -0.89064 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8235 | 0.00025142 | 0.0017996 | -0.083688 | -0.81361 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3607 |-0.00016546 | 0.0017644 | 0.11701 | -0.75594 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1158 | 0.00013888 | 0.0017972 | -0.045997 | -0.87563 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3189 | 0.00028357 | 0.0018587 | -0.12354 | -0.92423 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10609 | 0.00021485 | 0.0018460 | -0.10076 | -0.89621 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29730 | 0.00028806 | 0.0018827 | -0.15304 | -0.96179 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 56772 |-1.4764e-05 | 0.0018856 | 0.018613 | -0.96867 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 54448 |-8.4174e-05 | 0.0018785 | 0.05437 | -0.93515 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 50791 |-2.6921e-05 | 0.0018681 | 0.018108 | -0.91859 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 42880 |-2.2013e-05 | 0.0018491 | 0.033644 | -0.89306 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 654112 | 4.7297e-05 | 0.0018681 | -0.015545 | -0.92715 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 654112 | 4.7297e-05 | 0.0018681 | -0.015545 | -0.92715 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 604599 | 3.8399e-05 | 0.0018834 | -0.011547 | -0.95689 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 49513 | 0.00013408 | 0.0017086 | -0.034978 | -0.58536 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 654112 | 3.1966 | 1.8138 | -0.048822 | -1.1825 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 654112 | 0.02536 | 0.0052791 | -0.66113 | -0.34939 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 850 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 135511 | 0.034027 | 0.011558 | -0.35828 | -1.0147 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41318 | 1.4810 | 0.10736 | -0.33018 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30743 | 1.6973 | 0.18865 | -0.10934 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37734 | 1.6282 | -0.036043 | -0.33569 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3480 | 0.4073 | 0.24585 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.067105 | 1.8455 | -0.015785 | -0.303 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40215 | 1.4839 | 0.19447 | -0.12471 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17981 | 1.6670 | -0.010306 | -0.5513 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28648 | 1.5501 | 0.27167 | -0.26379 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12105 | 1.5357 | 0.14197 | -0.38564 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17712 | 1.5152 | 0.22871 | -0.39801 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75833 | 1.5768 | 0.12884 | -0.66308 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10676 | 2.0810 | -0.0045216 | -1.1646 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 2877803 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13 | 1.7408 | 0.23854 | -0.96125 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53833 | 1.3878 | 0.098272 | -0.64472 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.13243 | 1.1660 | 0.12502 | -1.1357 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081205 | 1.4199 | 0.32708 | -0.047563 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12211 | 1.3804 | 0.28196 | 0.010151 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.151 | 1.5167 | 0.21176 | -0.28537 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.097959 | 1.5984 | 0.21382 | -0.25609 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.2125 | 1.6955 | 0.07441 | -0.42637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.14953 | 1.6531 | 0.17775 | -0.31344 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21622 | 1.6162 | 0.12514 | -0.26431 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24426 | 1.4701 | 0.20153 | -0.24954 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.2172 | 1.5568 | 0.18616 | -0.12109 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17333 | 1.5227 | 0.1307 | -0.15675 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27251 | 1.5535 | 0.1346 | -0.22579 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.087327 | 1.6890 | 0.15293 | -0.40734 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12677 | 1.6031 | 0.15388 | -0.21348 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19744 | 1.6076 | 0.081527 | -0.27385 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23898 | 1.6377 | 0.1299 | -0.16929 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.28802 | 1.6101 | 0.072523 | -0.24966 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15279 | 1.5990 | 0.18923 | -0.15384 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24267 | 1.6690 | 0.063885 | -0.42752 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30034 | 1.7229 | 0.13633 | -0.58833 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32952 | 1.7875 | 0.078533 | -0.46536 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16463 | 1.6101 | 0.13797 | -0.14655 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.079407 | 1.6266 | 0.19124 | -0.17206 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24458 | 1.6741 | 0.11118 | -0.25565 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 436 | 0.31538 | 1.6426 | 0.26052 | -0.34039 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31509 | 1.7094 | 0.31732 | -0.27031 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.22916 | 1.6141 | 0.095209 | -0.21833 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20601 | 1.6559 | -0.038523 | -0.52501 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32129 | 1.6268 | 0.18477 | -0.41262 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.36252 | 1.5759 | -0.029698 | -0.31286 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25612 | 1.6275 | 0.294 | -0.19787 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.29513 | 1.7014 | 0.17336 | -0.31575 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.38153 | 1.5021 | 0.13731 | -0.12473 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50369 | 1.5177 | 0.12608 | -0.85684 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016389 | 1.7621 | 0.25059 | -0.3851 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.678 | 1.8480 | -0.2102 | -0.14974 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6903 | 0.16563 | -0.57044 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29828 | 1.7238 | 0.13038 | -0.38643 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.016154 | 1.4624 | 0.53577 | 0.37024 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50467 | 1.6435 | 0.098456 | -0.66506 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.063043 | 1.4052 | -0.081295 | -0.71369 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.044872 | 1.4169 | 0.90768 | 0.21774 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.19375 | 1.5874 | 0.045251 | -0.61505 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98571 | 1.4867 | 0.039315 | -0.72143 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.2803 | 1.5870 | 0.65552 | -0.11744 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23516 | 1.5409 | -0.078991 | -0.23557 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 2877803 | 0.00098619 | 0.00018991 | 0.55857 | -0.86061 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 2877803 | 0.038792 | 0.0089175 | -0.54278 | -0.79271 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.925 | 1.7600 | 0.21659 | -0.60644 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.057143 | 1.5363 | -0.071927 | -0.58606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 2877803 | 0.05159 | 0.00033074 | 0.12922 | -1.0622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.02 | 1.5217 | -0.29073 | 0.35222 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45909 | 1.2501 | -0.066309 | -0.41464 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.56976 | 1.5518 | -0.057371 | -0.77686 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11 | 1.2729 | 0.34514 | -0.74248 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.71863 | 1.7070 | 0.16278 | -0.82427 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.3878 | 1.5584 | 0.14932 | -0.57613 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2342 | 1.8297 | 0.5602 | -0.8226 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.3753 | 1.5523 | 0.064598 | -0.066046 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15464 | 0.27447 | 1.5847 | 0.095544 | -0.15924 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.23511 | 1.3652 | -0.031567 | -0.36807 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29853 | 1.6154 | 0.1066 | -0.25882 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28255 | 1.6047 | 0.076961 | -0.28192 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.30069 | 1.6130 | 0.065404 | -0.28246 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26156 | 1.6248 | 0.081989 | -0.35172 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28964 | 1.6473 | 0.12511 | -0.33843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26705 | 1.6103 | 0.09812 | -0.31901 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.31033 | 1.6626 | 0.049798 | -0.30953 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29614 | 1.6542 | 0.088649 | -0.32947 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25272 | 1.6359 | 0.1096 | -0.30335 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23766 | 1.6614 | 0.14783 | -0.31108 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.3344 | 1.6383 | 0.11508 | -0.3307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5903 | 0.29993 | 1.6575 | 0.088459 | -0.24719 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.28795 | 1.6789 | 0.088046 | -0.38506 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26098 | 1.6886 | 0.12422 | -0.412 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.23998 | 1.6848 | 0.12775 | -0.38657 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30275 | 1.6410 | 0.10476 | -0.36505 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32653 | 1.6507 | 0.13519 | -0.34821 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30811 | 1.6285 | 0.11972 | -0.3836 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21085 | 1.5900 | 0.083565 | -0.29633 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31534 | 1.6431 | 0.12188 | -0.41643 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31421 | 1.6528 | 0.12927 | -0.38532 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.28526 | 1.6397 | 0.12213 | -0.26908 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33206 | 1.5715 | 0.062223 | -0.36637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32897 | 1.6544 | 0.080043 | -0.27454 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26947 | 1.6049 | 0.13182 | -0.29939 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36387 | 1.5708 | 0.077225 | -0.41669 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26122 | 1.6854 | 0.17721 | -0.30516 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32357 | 1.6282 | 0.036525 | -0.13299 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28559 | 1.6111 | 0.1037 | -0.26372 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34259 | 1.6251 | 0.10898 | -0.36157 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.32035 | 1.5592 | 0.069068 | -0.19496 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.26123 | 1.6694 | 0.14009 | -0.22659 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21379 | 1.6272 | 0.1706 | -0.28312 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 992 | 0.3324 | 1.6111 | -0.057756 | -0.21544 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.22938 | 1.6687 | 0.10916 | -0.27104 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22185 | 1.7091 | 0.17999 | -0.52875 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.19983 | 1.5170 | 0.13404 | -0.37636 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19874 | 1.6443 | 0.076488 | -0.42495 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14728 | 1.5883 | 0.25877 | -0.23728 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.18868 | 1.6214 | 0.23984 | -0.19698 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.2125 | 1.6021 | 0.15738 | -0.37385 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.48282 | 1.5812 | -0.072567 | -0.052192 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27385 | 1.6242 | 0.14487 | -0.51659 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 302 | 0.27263 | 1.6009 | 0.016873 | -0.48211 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21248 | 1.5062 | 0.049603 | -0.30674 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.24693 | 1.7293 | 0.1675 | -0.77721 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029545 | 1.6037 | 0.0046675 | -0.57182 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25657 | 1.7121 | 0.16775 | -0.32864 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13962 | 1.4408 | 0.102 | -0.57953 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13354 | 1.7212 | 0.37426 | -0.26768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48659 | 1.5250 | 0.28892 | -0.60067 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21813 | 1.5839 | 0.20529 | -0.18342 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.047778 | 1.3782 | 0.092849 | -0.2244 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44572 | 1.4784 | 0.31489 | 0.0015237 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.042308 | 1.5818 | 0.69141 | 0.57976 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.002381 | 1.1558 | -0.24842 | -0.56544 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 2877803 | 0.051202 | 0.00053358 | -0.2177 | -0.91821 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.37857 | 1.3698 | 0.38363 | -1.1311 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.385 | 1.6138 | -0.028016 | -0.46143 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.1569 | 1.0099 | -0.18633 | -0.68982 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22309 | 1.5774 | 0.21111 | -0.26673 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10559 | 1.6422 | 0.04963 | -0.11633 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.33058 | 1.7793 | 0.057653 | -0.54761 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.037209 | 1.7081 | 0.18162 | -0.46141 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27818 | 1.8535 | 0.30923 | -0.36171 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24664 | 1.6986 | -0.032905 | -0.40972 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10745 | 1.5820 | 0.05933 | -0.39239 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21703 | 1.7376 | 0.049961 | -0.58861 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31373 | 1.5650 | -0.04847 | -0.24301 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38142 | 1.5953 | -0.061869 | -0.50877 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57569 | 1.7047 | 0.17549 | -0.40578 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.33378 | 1.6118 | 0.13909 | -0.41813 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15341 | 1.6401 | -0.012775 | -0.042744 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 275 | 0.61388 | 1.7495 | -0.0012931 | -0.14629 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35843 | 1.7844 | -0.081385 | -0.52355 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36479 | 1.6274 | -0.13257 | -0.3575 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72192 | 1.5941 | 0.073747 | -0.60939 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25769 | 1.5140 | -0.5321 | -0.89062 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.056504 | 1.5937 | 0.13897 | -0.79723 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058182 | 1.6749 | 0.14326 | -0.17216 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.34825 | 1.5665 | 0.31452 | 0.17679 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.035714 | 1.6341 | -0.058004 | -0.20603 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72593 | 1.9942 | 0.35142 | -0.89665 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1744 | 1.2095 | -0.080385 | -0.65607 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45313 | 1.2223 | 0.29492 | -1.0047 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.465 | 1.3251 | 0.17729 | -0.20539 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53158 | 1.4861 | 0.070757 | -0.66558 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55 | 1.3184 | 0.032896 | 0.4336 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33644 | 1.2040 | 0.40019 | -0.36847 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 1091725 | 0.0010952 | 0.00027010 | 0.195 | -1.5634 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 1091725 | 0.032548 | 0.010422 | -0.17883 | -0.85566 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 91781 | 0.00043524 | 4.3836e-06 | -0.27743 | -0.98597 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 91781 | 0.020716 | 0.0049050 | -0.33739 | -0.8846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 283004 | 0.032616 | 0.010018 | -0.29879 | -0.78607 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.15426 | 1.1888 | 0.081159 | -0.66229 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | -0.15323 | 1.2259 | 0.0087169 | -0.6283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 255 | 0.44608 | 1.4266 | 0.09973 | -0.22522 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.33648 | 1.4013 | 0.11422 | -0.064923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 182 | 0.42017 | 1.6336 | 0.12468 | -0.37574 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.22346 | 1.6823 | 0.14179 | -0.43129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.52031 | 1.4914 | -0.041398 | -0.0236 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 117 | 0.23205 | 1.4940 | -0.24151 | 0.47553 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 154 | 0.20779 | 1.6673 | 0.4027 | 0.10174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | 0.29359 | 1.3608 | -0.083321 | -0.94404 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.094512 | 1.3525 | 0.12878 | -0.47698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.09 | 1.3003 | 0.21139 | -0.47666 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.2375 | 1.3986 | -0.079006 | -0.55381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.17742 | 1.2624 | 0.17254 | -0.37716 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 82 | 0.05 | 1.3389 | -0.25339 | -0.36405 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.27264 | 1.2794 | 0.23368 | -0.20206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.33889 | 1.3642 | 0.72337 | 0.27094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.54365 | 1.3346 | 0.066766 | -0.67594 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 14 | 0.11429 | 1.1505 | -0.72821 | -0.19188 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.31221 | 1.2780 | 0.36233 | 0.40969 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.54038 | 1.3599 | 0.38344 | -0.34699 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.175 | 1.6407 | -0.18682 | -0.29432 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 22 | -0.11364 | 1.1648 | -0.31398 | -0.8958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.072222 | 1.3439 | 0.38655 | -0.52899 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.61667 | 1.1671 | -0.48136 | -0.5175 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.70833 | 1.3551 | 0.097798 | -0.20147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 42 | 0.10952 | 1.2704 | 0.65447 | 0.93495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.17917 | 1.1681 | -0.1635 | 0.48958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.10313 | 1.2971 | 0.18248 | -0.55147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | -0.14322 | 1.3557 | 0.22452 | -0.46831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.2875 | 0.98607 | -0.45115 | -0.93039 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.34189 | 1.3641 | 0.22587 | -0.75319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.22222 | 0.94328 | -0.72731 | 2.0386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.14583 | 1.4273 | 0.49827 | -0.84187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 35 | 0.63286 | 1.4750 | 0.20869 | -0.86119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 58 | 0.26207 | 1.1168 | 0.61667 | 0.38071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 17 | 0.10882 | 1.3712 | -0.78984 | -0.2466 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 2910346 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.16375 | 1.4120 | 0.40625 | -0.33043 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.1007 | 0.13969 | -0.24134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.28191 | 1.3722 | 0.10928 | -0.83696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.082 | 1.2936 | -0.015117 | -0.66559 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.27778 | 1.3080 | 0.49257 | -0.42588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | -0.05 | 0.85732 | 0.76095 | -0.49354 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.36304 | 1.3612 | 0.45247 | -0.2078 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.069231 | 1.4345 | 0.39391 | 0.5968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.7951 | 1.5000 | 0.021322 | -0.81517 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.29706 | 1.3114 | 0.33075 | -0.085562 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.1218 | -0.16424 | -0.83412 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.31 | 1.1153 | -0.42437 | -0.55301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.57642 | 1.5114 | 0.08471 | -0.6656 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.2168 | 0.11295 | 0.16294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.25 | 1.4159 | 0.35903 | 0.42548 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.098387 | 1.1739 | 0.053194 | -0.27456 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.1413 | 1.4043 | 0.6802 | -0.21306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.27879 | 1.2370 | 0.40217 | 0.59222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.48929 | 1.1660 | 0.006125 | -0.37829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.36111 | 1.6960 | 0.43071 | -1.016 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.51818 | 1.3178 | -0.53101 | -0.30605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.14677 | 1.2785 | -0.49149 | -0.97099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.13871 | 1.1622 | -0.04128 | -0.81978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.45811 | 1.3498 | 0.36127 | -0.88187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 621 | 0.07294 | 1.3757 | 0.24111 | -0.048235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.4518 | -0.010351 | -0.8896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 968 | 0.13066 | 1.3130 | 0.37401 | -0.052286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.31774 | 1.3238 | 0.9854 | 0.7267 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1044 | 0.14417 | 1.4456 | 0.34722 | -0.20029 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1337 | 0.10801 | 1.5343 | 0.17264 | -0.22949 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.23333 | 1.3957 | 0.96352 | 1.4539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.218 | 1.3540 | 0.33272 | -0.24258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 966 | 0.26691 | 1.6441 | 0.23171 | -0.19054 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1253 | 0.13129 | 1.4341 | 0.27094 | -0.21162 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1121 | 0.18958 | 1.4795 | 0.20015 | -0.10083 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1006 | 0.2819 | 1.4286 | 0.15772 | -0.30758 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1108 | 0.20892 | 1.4625 | 0.265 | -0.25308 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1071 | 0.17784 | 1.4090 | 0.24345 | 0.14533 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.27857 | 1.4541 | 0.22589 | -0.048732 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 872 | 0.15928 | 1.4456 | 0.24742 | -0.15887 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 765 | 0.18519 | 1.5106 | 0.2368 | -0.30164 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 770 | 0.3147 | 1.5423 | 0.21461 | -0.20969 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.29684 | 1.4878 | 0.18614 | -0.15198 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 944 | 0.30423 | 1.4682 | 0.23402 | -0.25168 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 597 | 0.24146 | 1.4414 | 0.28731 | 0.098029 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 512 | 0.26415 | 1.4153 | 0.26415 | 0.11253 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 560 | 0.42668 | 1.5506 | 0.21792 | -0.3246 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.37098 | 1.5346 | 0.077217 | 0.11236 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 644 | 0.28459 | 1.4606 | 0.28324 | 0.022709 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 403 | 0.25189 | 1.4899 | 0.12768 | -0.24903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 433 | 0.25463 | 1.4471 | 0.28375 | -0.046369 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.30522 | 1.3344 | 0.3132 | -0.0070898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 407 | 0.23135 | 1.4870 | 0.29748 | -0.23655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 491 | 0.36394 | 1.4107 | 0.19159 | -0.1524 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 391 | 0.3016 | 1.4397 | 0.14049 | -0.26174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 374 | 0.28468 | 1.3815 | 0.20276 | -0.17565 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.28689 | 1.4216 | 0.13139 | -0.20812 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 337 | 0.25115 | 1.3960 | 0.13002 | -0.5117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.29565 | 1.4496 | 0.29732 | 0.29127 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 423 | 0.28671 | 1.3276 | 0.014187 | -0.45296 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 258 | 0.53176 | 1.4117 | 0.26428 | -0.098865 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.54767 | 1.3271 | 0.36503 | 0.077683 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 349 | 0.22652 | 1.4374 | 0.25843 | -0.084103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 209 | 0.35603 | 1.4113 | 0.14855 | -0.16021 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | 0.39785 | 1.3487 | 0.20624 | -0.39831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | 0.3935 | 1.3486 | 0.40519 | 0.21097 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 192 | 0.40938 | 1.3058 | 0.11289 | -0.32733 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 386 | 0.3071 | 1.3647 | 0.095231 | -0.35031 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 387 | 0.28065 | 1.3189 | 0.36806 | -0.17344 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.083987 | 1.3601 | 0.14438 | -0.14973 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 262 | 0.40687 | 1.3322 | 0.28968 | -0.36815 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.27553 | 1.3259 | 0.032299 | -0.32247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.31154 | 1.3440 | 0.3437 | -0.2023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 128 | 0.16172 | 1.3687 | 0.29136 | -0.2763 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.22226 | 1.2668 | 0.20968 | -0.50785 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.26538 | 1.5540 | 0.49357 | 0.029153 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.10871 | 1.3645 | 0.22811 | -0.27052 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.23814 | 1.4138 | 0.048709 | -0.73945 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.30975 | 1.2515 | 0.48016 | 0.20827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 173 | 0.22666 | 1.2455 | 0.19993 | -0.4323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | -0.0073529 | 1.1967 | -0.087554 | -0.76893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.31053 | 1.3365 | 0.25763 | 0.087152 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.2182 | 1.3439 | 0.52428 | 0.47493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | 0.056429 | 1.3552 | 0.22262 | -0.36419 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.63452 | 1.3587 | 0.23838 | -0.36225 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.41774 | 1.3006 | 0.68633 | 0.5958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 165 | 0.15954 | 1.2351 | 0.46762 | 0.17925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | 0.20586 | 1.3906 | 0.25002 | 0.33378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.25206 | 1.3104 | 0.32977 | -0.18968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35986 | 1.3615 | 0.11206 | -0.5971 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 | 0.29476 | 1.4117 | 0.62128 | 0.028928 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.39375 | 1.2276 | 0.078506 | 0.25223 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.15631 | 1.4622 | 0.63918 | 0.1863 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.58048 | 1.4003 | -0.0087549 | -0.57437 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.80588 | 1.3692 | -0.07403 | 0.26205 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.40882 | 1.4488 | 0.48904 | -0.48572 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.14231 | 0.99534 | -0.70728 | 0.26226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.42722 | 1.2158 | -0.049842 | -0.25717 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.34518 | 1.3312 | 0.22086 | -0.38234 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.091071 | 1.3166 | 0.19325 | -0.40433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.21744 | 1.0856 | 0.16871 | -0.18609 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.24032 | 1.4192 | 0.58272 | 0.12602 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.41364 | 1.0915 | 0.083064 | -0.31073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.525 | 1.2588 | 0.30059 | -0.18012 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.482 | 1.2237 | 0.33308 | -0.44938 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.030357 | 1.4352 | 0.63067 | 0.66139 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.068182 | 1.3884 | 0.37369 | -0.46563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.29066 | 1.2578 | -0.010228 | -0.73252 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.40294 | 1.3515 | 0.28205 | 0.015285 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 2910346 | 0.00098508 | 0.00018910 | 0.5677 | -0.83459 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 2910346 | 0.039327 | 0.0091564 | -0.53381 | -0.81632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.73846 | 1.9268 | 0.49755 | -0.76767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.27821 | 1.3825 | 0.50129 | -0.26828 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.55 | 1.6065 | 0.06886 | -0.34849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.10859 | 1.3052 | 0.2925 | 0.2433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.58636 | 1.5663 | -0.83414 | 0.55878 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.75 | 1.1314 | 0.56236 | 0.39619 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.44524 | 1.6557 | -0.033305 | -0.72476 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.018966 | 1.6967 | 0.1788 | 0.059926 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.2 | 1.4006 | 0.14585 | -0.32338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.162 | 1.3834 | 0.081347 | -0.28792 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.2975 | 1.3751 | -0.051858 | -0.57627 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 2910346 | 0.051615 | 0.00034444 | 0.052594 | -1.2152 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 95 | 0.33316 | 1.4069 | 0.12475 | -0.13492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.19561 | 1.0928 | -0.11982 | 0.42227 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.18878 | 1.2697 | 0.33698 | -0.3306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52037 | 1.4476 | 0.32257 | -1.0287 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.0080952 | 1.2475 | 0.31928 | 0.32201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15827 | 1.2981 | 0.2773 | -0.57905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.33667 | 1.4396 | 0.15202 | -0.76103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.49051 | 1.2767 | 0.4699 | -0.8398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.29 | 1.4156 | 0.51763 | 0.65378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.20714 | 1.2475 | 0.019569 | -0.0064398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.003125 | 1.1178 | 0.56203 | -0.7573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 210 | 0.39115 | 1.3484 | 0.34448 | -0.027893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.17143 | 1.2582 | 0.50648 | 0.040303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.19304 | 1.2387 | 0.26012 | 0.1294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.3 | 1.2499 | 0.51409 | 0.20603 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.2803 | 1.1793 | 0.19374 | -0.053669 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.73291 | 1.5920 | 0.068327 | -0.56803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.17222 | 1.2003 | 0.77641 | -0.29755 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.43947 | 1.3275 | 0.069096 | -0.865 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.098718 | 1.2500 | 0.35076 | -0.31066 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.14464 | 1.3216 | 0.0084706 | 0.4927 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35845 | 1.3305 | 0.53943 | -0.10612 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.057692 | 1.4191 | 0.27836 | -0.16384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.60833 | 1.2579 | 0.377 | -1.0019 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.1 | 1.3279 | -0.32409 | -0.62328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38261 | 1.3307 | 0.56799 | 0.068695 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.16565 | 1.3063 | 0.25364 | -0.26464 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.43077 | 1.1276 | -0.26764 | -0.49122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.31667 | 1.0518 | 0.34099 | 0.13093 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.058696 | 1.1861 | 0.4669 | -0.7128 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.33 | 1.3486 | -0.046807 | -0.24911 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.22536 | 1.3721 | 0.13574 | -0.6124 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.55333 | 1.4018 | 0.3125 | -0.0079929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.25 | 0.94956 | -0.44149 | -0.85116 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.40714 | 1.3691 | 0.082422 | -0.21353 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.28393 | 1.2106 | -0.17263 | -0.0032724 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.15938 | 1.0162 | 0.49142 | -0.47676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.89737 | 1.1028 | 0.69314 | 0.065418 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.10455 | 1.4015 | 1.3204 | 2.2426 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | 0.45714 | 0.96914 | -0.60915 | -0.39231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 937 | 0.31834 | 1.5921 | -0.035136 | -0.063066 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.22143 | 1.2191 | -0.031656 | -1.0065 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.63421 | 1.3705 | 0.010212 | -0.68538 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 1.0409 | 0.84901 | -0.56607 | -1.0784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.79865 | 1.3329 | -0.010656 | -0.20202 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15225 | 0.2985 | 1.4710 | 0.12946 | -0.095028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.067647 | 1.1893 | 1.1178 | 0.34819 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.47593 | 0.91958 | 0.16664 | -0.70162 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.19211 | 1.1472 | 0.62423 | 0.36094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.039362 | 1.2393 | -0.045617 | -0.87684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.12368 | 1.5610 | -0.48466 | -1.3136 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.45615 | 1.2739 | -0.13137 | 0.053036 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16757 | 0.28831 | 1.4900 | 0.13272 | -0.10472 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.055882 | 1.3892 | 0.381 | -0.80846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.49828 | 1.4333 | 0.4153 | -0.52859 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.82879 | 1.3273 | 0.031451 | 0.0033372 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14274 | 0.31172 | 1.4752 | 0.12911 | -0.15253 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.37766 | 1.3425 | 0.37089 | -0.18304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.4425 | 1.0785 | 0.075684 | -0.6159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 13640 | 0.30403 | 1.4799 | 0.10421 | -0.12823 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.29348 | 1.3752 | -0.040547 | -1.2849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.53077 | 1.4938 | 0.4227 | -0.39335 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.58143 | 1.2599 | -0.55088 | 0.6073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 214 | 0.30089 | 1.3814 | 0.33291 | -0.19972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11225 | 0.31815 | 1.4867 | 0.139 | -0.10073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9612 | 0.2815 | 1.4954 | 0.14146 | -0.17625 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9686 | 0.30225 | 1.4673 | 0.078593 | -0.16282 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9046 | 0.33059 | 1.4937 | 0.1161 | -0.2088 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8446 | 0.34013 | 1.4988 | 0.15314 | -0.20366 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7016 | 0.31357 | 1.4679 | 0.1249 | -0.24078 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6613 | 0.28576 | 1.4843 | 0.12238 | -0.1921 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5725 | 0.32288 | 1.4651 | 0.16367 | -0.21465 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5689 | 0.34661 | 1.4854 | 0.096356 | -0.20482 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3984 | 0.31592 | 1.4542 | 0.18597 | -0.25406 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5232 | 0.28392 | 1.4638 | 0.15849 | -0.24148 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3539 | 0.26423 | 1.4580 | 0.15268 | -0.19552 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2972 | 0.29588 | 1.4556 | 0.20259 | -0.071811 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3406 | 0.34442 | 1.4640 | 0.16654 | -0.25855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3125 | 0.29196 | 1.4538 | 0.1481 | -0.16026 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2357 | 0.24956 | 1.4346 | 0.2231 | -0.15239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2536 | 0.31612 | 1.3633 | 0.17212 | -0.19067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2714 | 0.32175 | 1.4297 | 0.12704 | -0.22218 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2211 | 0.24595 | 1.4258 | 0.19031 | -0.26042 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1603 | 0.34155 | 1.3804 | 0.13244 | -0.17424 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1952 | 0.29944 | 1.3757 | 0.16139 | -0.25223 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2374 | 0.26898 | 1.3364 | 0.27139 | 0.040395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1475 | 0.33659 | 1.3756 | 0.17361 | -0.12752 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1629 | 0.27389 | 1.3570 | 0.2588 | 0.024175 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1389 | 0.27043 | 1.4165 | 0.16588 | 0.0044415 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1415 | 0.30131 | 1.3619 | 0.23 | -0.2447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1278 | 0.32603 | 1.3988 | 0.15878 | -0.10176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1240 | 0.279 | 1.2930 | 0.17501 | -0.084987 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1248 | 0.19656 | 1.3799 | 0.31132 | -0.17996 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 870 | 0.31299 | 1.3332 | 0.26827 | -0.15527 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1196 | 0.32988 | 1.3540 | 0.2087 | -0.20179 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1219 | 0.26493 | 1.3426 | 0.3863 | 0.079485 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 655 | 0.26536 | 1.3782 | 0.39842 | -0.079468 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 795 | 0.3479 | 1.3785 | 0.28791 | -0.073613 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 887 | 0.29708 | 1.3348 | 0.117 | -0.34618 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 540 | 0.3549 | 1.3505 | 0.26072 | -0.11098 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1107 | 0.25534 | 1.3576 | 0.18162 | -0.15963 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 853 | 0.21236 | 1.3450 | 0.33738 | -0.04861 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 588 | 0.33267 | 1.3477 | 0.24039 | 0.0087319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 571 | 0.36631 | 1.3082 | 0.25234 | 0.088494 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.24857 | 1.3388 | 0.11575 | -0.43285 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 444 | 0.20631 | 1.2993 | 0.31278 | -0.17683 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 661 | 0.22368 | 1.2861 | 0.19179 | -0.057088 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 506 | 0.34703 | 1.3056 | 0.17728 | -0.42727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 432 | 0.22908 | 1.4019 | 0.28329 | -0.087886 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 379 | 0.27528 | 1.3222 | 0.16919 | -0.35805 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.31254 | 1.3886 | 0.29999 | -0.19693 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 424 | 0.33637 | 1.3383 | 0.28171 | -0.19834 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 306 | 0.25098 | 1.2182 | 0.22506 | -0.32615 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 504 | 0.30235 | 1.3788 | 0.21081 | -0.26201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15752 | 1.3463 | 0.38601 | -0.11923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 288 | 0.34665 | 1.4080 | 0.094981 | -0.2682 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.077397 | 1.2482 | 0.38887 | 0.39265 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 259 | 0.44846 | 1.4254 | 0.38201 | 0.061788 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.17526 | 1.5593 | 0.63677 | -0.3014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.18121 | 1.2725 | 0.26619 | 0.027382 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 367 | 0.16 | 1.2937 | 0.45477 | 0.029523 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 447 | 0.13796 | 1.2188 | 0.3238 | 0.11002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 339 | 0.3556 | 1.3557 | 0.18871 | -0.49957 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 156 | 0.21783 | 1.1682 | 0.49315 | 0.36231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.22431 | 1.2889 | 0.34598 | 0.14785 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.075743 | 1.2547 | 0.38219 | 0.2502 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 198 | 0.31542 | 1.2755 | 0.32246 | 0.16704 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.14259 | 1.3910 | 0.57308 | 0.12927 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 341 | 0.30146 | 1.3056 | 0.25064 | -0.33459 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 268 | 0.36007 | 1.2218 | 0.19088 | -0.30292 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 326 | 0.33105 | 1.3005 | 0.34867 | -0.38215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 256 | 0.35 | 1.2972 | 0.092657 | -0.45644 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.4602 | 1.3168 | 0.3619 | -0.25539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.22411 | 1.2082 | -0.082339 | -0.0587 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 190 | 0.22316 | 1.3881 | 0.31316 | -0.42563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.2117 | 1.0428 | -0.10752 | -0.078925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 191 | 0.20652 | 1.2767 | 0.34398 | -0.15553 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.11006 | 1.2976 | 0.22531 | -0.41121 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.41202 | 1.3919 | 0.49225 | 0.062769 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.062698 | 1.2589 | 0.55804 | 0.51513 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.16128 | 1.1583 | 0.30466 | -0.31912 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.34244 | 1.3594 | 0.076774 | -0.35024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.35562 | 1.2863 | 0.49867 | 0.37946 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 91 | 0.31264 | 1.3629 | 0.16949 | -0.32974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 2910346 | 0.051246 | 0.00056335 | -0.17767 | -0.99074 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.57571 | 1.2650 | 0.2336 | -0.42936 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.071429 | 1.4809 | 0.32943 | -0.28491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 102 | 0.63431 | 1.4904 | 0.2976 | -0.77661 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.086 | 1.0766 | 0.47382 | -0.55677 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.059524 | 1.5065 | 0.02905 | -0.9059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 105 | 0.35381 | 1.3698 | 0.21206 | -0.82378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.26034 | 1.4204 | -0.13459 | -0.91529 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.63333 | 1.4690 | 0.47233 | -0.98757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.045 | 1.2492 | 0.38827 | -0.70688 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | 0.11651 | 1.2252 | 0.55461 | 0.0095537 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32273 | 1.1659 | 0.14953 | -0.92697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.538 | 0.97788 | 0.25741 | -0.13873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.62941 | 1.3429 | 0.045183 | -0.72813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3775 | 0.86627 | 0.68082 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.21438 | 1.2948 | 0.051066 | -0.20007 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.47 | 1.1078 | 0.53067 | -0.92768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.382 | 1.1471 | -0.45878 | -0.27237 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3001 | 0.5589 | -0.26118 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.12188 | 1.3158 | 0.59831 | 0.15076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.17222 | 1.3147 | 0.94516 | 0.55718 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.31667 | 1.2266 | 0.29937 | -0.33142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.43222 | 1.1902 | -0.030025 | 0.17067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.22 | 0.84149 | -0.10698 | -1.1362 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.41486 | 1.2257 | 0.45097 | -0.46367 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.43333 | 1.2855 | 0.12912 | 0.63588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.083333 | 1.2941 | 1.5328 | 3.1831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.33333 | 1.3478 | 0.71016 | 0.44717 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47222 | 0.92349 | 0.19635 | -0.85241 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.51667 | 1.3055 | 0.37988 | -0.69824 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.42619 | 1.1019 | -0.87539 | 0.34803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.38651 | 1.2915 | 0.29306 | 0.10023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 1.9 | 1.5346 | -0.36984 | -0.61452 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.4436 | 1.6978 | 0.076931 | 0.095193 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 179 | 0.32737 | 1.4437 | 0.17904 | -0.29851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 231 | -0.0097753 | 1.5950 | 0.11394 | -0.26083 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 163 | 0.078582 | 1.5674 | 0.46369 | 0.056053 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.021174 | 1.6979 | 0.41886 | 0.019326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 276 | -0.16029 | 1.5703 | 0.19968 | -0.10286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 180 | 0.0071288 | 1.6786 | 0.2163 | -0.18872 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 175 | 0.60154 | 1.6376 | 0.12578 | -0.40774 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 373 | 0.032991 | 1.5276 | 0.26991 | -0.10737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 268 | 0.36566 | 1.5679 | 0.2547 | -0.40947 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 339 | 0.063968 | 1.5759 | 0.11045 | -0.1228 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 237 | 0.13886 | 1.5001 | 0.25565 | -0.07726 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 244 | 0.26041 | 1.4774 | 0.22817 | -0.27674 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 222 | 0.033363 | 1.4570 | 0.31407 | 0.11014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 337 | 0.23359 | 1.4275 | 0.34097 | -0.016341 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 221 | 0.55936 | 1.4410 | 0.23852 | -0.48543 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 171 | 0.28344 | 1.4516 | 0.14895 | -0.61939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 304 | 0.32242 | 1.3308 | 0.16003 | -0.4837 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 250 | 0.18133 | 1.4940 | 0.10097 | 0.17719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | 0.42151 | 1.2979 | 0.40179 | -0.13583 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 130 | 0.070769 | 1.4650 | 0.7341 | 0.39933 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.094697 | 1.2879 | 0.2458 | -0.24761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | 0.17893 | 1.2405 | 0.17193 | -0.1541 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | -0.10306 | 1.2935 | 0.47627 | 0.55732 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 112 | 0.32589 | 1.4371 | 0.13904 | -0.49974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 229 | 0.31097 | 1.3876 | 0.1945 | -0.48259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | 0.526 | 1.2748 | 0.10232 | 0.15784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 166 | 0.32258 | 1.2697 | 0.4284 | 0.20386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 120 | 0.18626 | 1.3234 | 0.096905 | -0.93955 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.3331 | 1.3857 | 0.10266 | 0.304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.051569 | 1.3479 | 0.35564 | -0.091306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 103 | 0.34893 | 1.2740 | 0.12082 | -0.275 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 269 | 0.35388 | 1.4582 | 0.33062 | -0.35075 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | 0.23093 | 1.4694 | 0.12882 | -0.46374 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 85 | 0.74669 | 1.2850 | 0.3223 | -0.55985 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 227 | 0.34824 | 1.4894 | 0.23156 | -0.3754 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 122 | 0.07459 | 1.2053 | 0.03749 | -0.48284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.33736 | 1.3494 | 0.37958 |-0.00046676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 196 | 0.099861 | 1.2995 | 0.2885 | 0.040522 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.62467 | 1.3061 | 0.4106 | -0.57373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | -0.10265 | 1.2608 | 0.43166 | -0.40392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | 0.44685 | 1.3037 | 0.22365 | -0.48353 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 149 | 0.54866 | 1.3570 | 0.31971 | -0.1263 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 84 | 0.30621 | 1.4539 | 0.22471 | -0.32171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.49 | 1.5642 | 0.39207 | -0.25351 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.3754 | 1.2451 | 0.64259 | 0.96516 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.75 | 1.3202 | 0.055077 | -0.0046684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 181 | 0.50373 | 1.3265 | 0.11006 | -0.46693 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 48 | 0.55735 | 1.5082 | 0.3457 | -0.0090583 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.08125 | 1.3381 | -0.060435 | -0.69443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.45 | 1.4259 | 0.85977 | 0.52786 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 200 | 0.147 | 1.3105 | 0.27678 | -0.40946 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.37941 | 1.3169 | 0.26162 | -0.046111 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 117 | 0.23291 | 1.4345 | 0.13973 | -0.64059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.24231 | 1.2225 | 0.49019 | -0.85305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.33148 | 1.3314 | 0.29682 | -0.86302 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.47105 | 1.3721 | 0.47504 | -0.82259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.15625 | 1.2178 | -0.51512 | -0.21903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.19902 | 1.3018 | 0.2258 | -0.25938 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.37778 | 1.4305 | 0.37121 | -0.44816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31757 | 1.3334 | -0.01136 | -0.073388 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 106 | 0.19528 | 1.2268 | 0.47825 | 0.67978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.14286 | 1.1322 | 0.40976 | -0.54869 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.42037 | 1.1408 | -0.16132 | -0.7235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.12458 | 1.2177 | 0.22936 | -0.60447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.14815 | 1.1121 | -0.048653 | -0.44286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.17857 | 1.5508 | 0.40952 | -1.1018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 1176933 | 0.0011024 | 0.00027358 | 0.14504 | -1.6042 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 1176933 | 0.035168 | 0.011045 | -0.43876 | -0.89837 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 112959 | 0.00043372 | 4.2757e-06 | 0.080913 | -0.89965 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 112959 | 0.018874 | 0.0048578 | 0.096252 | -0.96645 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.098077 | 1.3689 | 0.19061 | -0.063405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.066421 | 1.3950 | 0.17771 | 0.11133 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.053333 | 1.4673 | -0.40844 | -0.96634 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3034 | 0.11232 | 0.012411 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.32308 | 1.2711 | 0.10516 | -0.54783 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.0625 | 1.0741 | -0.31341 | 0.84992 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.56333 | 0.84606 | -0.79603 | -0.38777 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.031481 | 1.4358 | 1.1147 | 2.1143 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 75 | -0.0046667 | 1.3496 | -0.17671 | 0.2966 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 88 | -0.1117 | 1.1857 | 0.12714 | 1.4732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 177 | 0.07884 | 1.6296 | 0.43136 | 0.2224 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | 0.2625 | 1.3283 | 0.12724 | -0.32442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.072222 | 1.2822 | -0.115 | 0.48505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 34 | 0.023529 | 1.1559 | -0.20205 | -0.15737 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 93 | 0.21344 | 1.3487 | -0.10546 | -0.17487 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | 0.15566 | 1.0616 | 0.11587 | 0.22569 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | -0.26944 | 2.1520 | 0.24465 | -0.51349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.074 | 1.1406 | -0.20598 | -0.060978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.142 | 1.3778 | 0.41645 | -0.34493 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.075 | 1.0929 | -0.17704 | 0.50569 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.28667 | 1.1219 | 0.34521 | -0.18011 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | 0.13163 | 1.2111 | -0.35184 | -0.69094 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.0058824 | 2.0028 | 0.53457 | 0.44988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.33462 | 1.4269 | 0.27411 | -0.19288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.38333 | 2.2429 | -0.16762 | -0.50714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.17963 | 0.99399 | 0.97096 | 0.69269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.20758 | 1.2908 | 0.030492 | 0.033375 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.46154 | 1.1325 | 0.55196 | -0.54293 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.24091 | 1.0449 | 0.28981 | -0.13563 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1097 | -0.78644 | 1.3517 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 1082345 | 0.00047336 | 1.3691e-05 | 0.045715 | -1.0216 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 1082345 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.078169 | 1.3504 | -0.33876 | 0.1486 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.86055 | 0.098195 | -0.94628 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17333 | 1.2709 | 0.28927 | -0.39808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11824 | 1.2263 | -0.074943 | 0.061187 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13588 | 1.3971 | -0.11807 | -0.75404 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.254 | 1.3425 | -0.35394 | -0.078737 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2603 | 0.1399 | -0.71431 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13571 | 1.2415 | 0.36767 | -0.63797 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.064851 | 1.2279 | 0.088929 | -0.30403 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.18529 | 1.1494 | 0.13401 | -0.53628 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.092308 | 1.0187 | 0.31699 | -0.73467 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.084426 | 1.3252 | 0.51954 | 0.87263 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.04 | 1.2330 | 0.057569 | -0.2439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.39783 | 1.4803 | 0.94114 | 0.23432 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.13587 | 1.3833 | -0.53241 | 0.96334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18 | 1.3731 | 0.19521 | -0.21415 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.066 | 1.0920 | 0.69627 | 0.247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.146 | 1.3875 | -1.0564 | 0.62675 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31667 | 1.1355 | 0.2314 | -0.79893 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30424 | 1.3310 | -0.11951 | -0.39965 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27 | 1.3809 | -0.16231 | -0.53953 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12255 | 1.3303 | 0.64121 | 0.431 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.12013 | 1.2519 | 0.50325 | 0.010291 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16296 | 1.4746 | 0.18945 | 0.080301 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.1583 | 1.4099 | 0.090684 | -0.13574 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.043285 | 1.3415 | -0.11404 | -0.39188 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031195 | 1.3910 | 0.32299 | 0.12571 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.067976 | 1.3815 | -0.056668 | 0.33162 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.033631 | 1.4023 | 0.1201 | 0.052583 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.013431 | 1.4333 | 0.07102 | 0.02219 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.096045 | 1.4010 | 0.4103 | 0.48988 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.18845 | 1.2918 | 0.26891 | 0.45681 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28454 | 1.4813 | -0.049593 | -0.3291 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24619 | 1.3830 | 0.27985 | 0.24178 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 228 | 0.13098 | 1.5385 | 0.0026032 | 0.45702 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.080042 | 1.2906 | 0.33273 | 0.1123 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.045993 | 1.4714 | 0.3212 | 0.16629 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14486 | 1.4139 | 0.081742 | -0.0078438 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23714 | 1.3322 | 0.36744 | 0.049163 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.093597 | 1.4199 | 0.26226 | 0.22837 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.11935 | 1.4672 | 0.2709 | -0.26048 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.11253 | 1.3110 | -0.082878 | -0.050775 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13248 | 1.1992 | 0.23613 | -0.21624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.047403 | 1.5272 | 0.047219 | 0.7232 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05 | 1.2739 | 0.32103 | -0.26576 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.012222 | 1.3595 | 0.30983 | -0.20547 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23265 | 1.4252 | 0.30948 | 0.63851 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 259 | 0.20323 | 1.4405 | 0.15323 | -0.0083506 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.01359 | 1.4601 | 0.44249 | -0.18912 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.22003 | 1.3181 | 0.25946 | 0.13451 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.049174 | 1.1997 | -0.030875 | 0.043402 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.10102 | 1.1639 | 0.33713 | -0.29824 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.044286 | 1.3858 | 0.26777 | -0.085701 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22938 | 1.3053 | 0.12008 | 0.048064 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10576 | 1.2689 | -0.051315 | -0.2772 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.38043 | 1.1943 | 0.19918 | -0.05729 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.071505 | 1.3911 | -0.35581 | 0.63022 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.091964 | 1.4976 | 0.43844 | 0.85116 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25238 | 1.1226 | 0.67472 | -0.21564 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.27432 | 1.4051 | 0.14743 | 0.1787 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.3123 | 1.2098 | 0.012558 | -0.32212 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0071429 | 1.3715 | -0.27499 | 0.2053 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.22547 | 1.2701 | 0.22192 | 0.17615 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.018116 | 1.4544 | -0.12826 | -0.56274 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.7577e-16 | 1.4996 | 0.19546 | -0.87122 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.014957 | 1.3914 | 0.28297 | -0.14214 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.15 | 1.0117 | 0.097882 | -0.47268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15357 | 1.3018 | -0.11487 | -0.51942 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74375 | 1.2609 | -0.42017 | 0.012395 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16618 | 1.3600 | 0.2625 | -0.14275 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.29375 | 1.4096 | -0.27559 | -0.27764 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.081387 | 1.1796 | 0.13493 | -0.43711 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.041304 | 1.5773 | 0.33072 | -0.24887 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.14684 | 1.5697 | 0.81769 | 0.46294 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.026531 | 1.2628 | -0.45503 | 0.54924 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.085 | 1.3336 | -0.2324 | 0.56343 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10276 | 1.2456 | -0.15289 | 0.043317 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 1082342 | 0.0004723 | 3.3558e-05 | 1.1783 | 0.34624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 1082342 | 0.023633 | 0.0036322 | -0.079242 | -1.1036 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13738 | 0.92271 | -0.054151 | -0.14809 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.12385 | 1.6771 | -0.69408 | -0.21999 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.41957 | 1.8145 | 0.07273 | -1.3529 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.07 | 0.75912 | 0.94276 | 0.88948 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5017 | 1.5156 | -0.085468 | -1.0179 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13571 | 1.3434 | 0.36231 | -0.12119 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.162 | 1.3863 | 0.47546 | 9.6117e-05 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21935 | 1.3721 | -0.56857 | 0.76916 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67609 | 1.4932 | -0.0199 | -0.074268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14333 | 0.81932 | 0.1472 | -0.60394 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 1082345 | 0.00051385 | 2.5226e-05 | -0.73361 | -0.55506 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 1082345 | 0.029682 | 0.00015632 | -0.094841 | -0.84081 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20068 | 1.3547 | 0.35994 | 0.11978 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.042798 | 1.4990 | 0.14432 | -0.042435 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 129 | 0.1198 | 1.4194 | 0.018326 | 1.5257 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.12057 | 1.4303 | 0.2978 | -0.12303 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27461 | 1.6655 | 0.22876 | 0.097924 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.037313 | 1.1713 | 0.015391 | -0.23132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11792 | 1.3058 | 0.17174 | -0.63151 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.038462 | 1.6043 | 0.25204 | -0.14831 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.013333 | 1.6074 | -0.32635 | -0.21499 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.2693 | 1.7190 | 0.065768 | 0.31218 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.1125 | 1.4241 | 0.70139 | 2.0088 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36667 | 1.4845 | -0.19953 | 0.78113 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.20833 | 1.7905 | -0.029422 | -0.41083 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2349 | 0.37803 | 0.35114 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.1453 | 1.3683 | -0.31812 | 0.084819 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31364 | 1.2629 | -0.36159 | 0.2148 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.26233 | 1.5894 | 0.091628 | -0.48301 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.013014 | 1.2339 | -0.2356 | 0.33475 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28333 | 1.1882 | 0.05981 | 0.29472 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.010606 | 1.2742 | 0.48529 | 0.045969 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18385 | 1.5397 | -0.47382 | -0.11537 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.025676 | 1.2466 | 0.24787 | 0.34582 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0045455 | 1.1309 | 0.16329 | -0.94287 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0014563 | 1.7224 | -0.048944 | -0.2254 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17105 | 1.3196 | -0.072466 | 0.30073 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.096847 | 1.4338 | -0.55336 | 1.3783 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.076667 | 0.99273 | 0.65818 | 0.91134 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.024783 | 1.5424 | 0.10427 | 0.59952 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.25135 | 1.2352 | 0.23627 | 0.72461 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.1 | 1.4634 | 0.32477 | 1.0709 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.028333 | 1.3536 | -0.083373 | -0.5263 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19894 | 1.5174 | -0.39579 | -0.96604 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61 | 1.1473 | 0.74209 | -0.55037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.087931 | 1.2689 | -0.41615 | 0.28704 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.040361 | 1.3187 | 0.40522 | -0.021211 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.14815 | 1.2660 | 0.25293 | 1.1864 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.057216 | 1.4816 | 0.094517 | -0.36599 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21792 | 1.3412 | 0.39626 | 0.20979 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.01 | 1.5868 | -0.018956 | -0.50396 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25462 | 1.5947 | 0.029406 | -0.62303 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.21032 | 1.2649 | 0.022558 | -0.49917 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43333 | 1.3700 | 0.29621 | -0.85938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.41057 | 1.8981 | 0.25899 | 0.36934 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.017105 | 1.3532 | 0.04767 | 0.049497 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088961 | 1.1814 | 0.063416 | -0.44385 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.015445 | 1.4257 | -0.31871 | 0.49762 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.13475 | 1.3333 | 0.92491 | 1.6881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.14216 | 1.3998 | -0.11703 | -0.4019 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59857 | 1.1269 | 0.15378 | -0.22203 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13529 | 1.3580 | 0.25848 | -0.32116 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.012774 | 1.2677 | -0.054299 | -0.53889 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0081818 | 1.3261 | 0.1673 | -0.55588 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.055882 | 1.0079 | -0.0034036 | -1.0625 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21757 | 1.1470 | 0.86645 | 2.1046 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10531 | 1.4388 | 0.15413 | 0.40703 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.036188 | 1.3828 | 0.10974 | 0.23023 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.034756 | 1.3412 | 0.027712 | 0.53077 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.015539 | 1.3577 | 0.077384 | 0.54622 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0089612 | 1.3693 | -0.075266 | 0.42314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.027499 | 1.3764 | 0.038737 | 0.49255 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.025367 | 1.3394 | 0.084539 | 0.40881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.057239 | 1.3359 | 0.10537 | 0.47475 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2975 | -0.016915 | 1.3481 | 0.16015 | 0.54307 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.04482 | 1.4570 | 0.085169 | 0.53363 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3540 | 0.016585 | 1.3573 | 0.12988 | 0.63869 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.032383 | 1.3725 | 0.16427 | 0.3845 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.069918 | 1.3429 | 0.059559 | 0.76348 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.0019191 | 1.4040 | 0.086911 | 0.46091 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.014484 | 1.3570 | 0.10555 | 0.33875 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.080612 | 1.3338 | 0.12869 | 0.20065 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.056605 | 1.3931 | 0.047085 | 0.45797 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.094606 | 1.4167 | 0.16199 | 0.26308 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.030756 | 1.4237 | 0.23301 | 0.36752 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1481 | 0.015536 | 1.3484 | 0.065054 | 0.29617 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1292 | -0.037381 | 1.3610 | 0.14181 | 0.42595 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.046307 | 1.2972 | 0.030253 | 0.02476 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.030744 | 1.4510 | 0.1573 | 0.34427 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.046558 | 1.4457 | 0.062259 | 0.56294 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.019663 | 1.3220 | 0.1836 | 0.1628 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1371 | 0.047958 | 1.3265 | 0.075894 | 0.16819 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.014928 | 1.4168 | -0.015973 | 0.13767 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.011118 | 1.3519 | 0.22883 | 0.18867 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 711 | 0.074326 | 1.3442 | 0.099686 | -0.11658 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 590 | 0.060636 | 1.4495 | 0.046285 | 0.82969 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.00166 | 1.3980 | 0.11841 | 0.35666 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.11236 | 1.3438 | -0.029507 | 0.34753 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.11015 | 1.5629 | -0.059753 | 0.097142 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.047266 | 1.5464 | 0.013839 | 0.27641 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027833 | 1.5440 | 0.06884 | 0.74402 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.022181 | 1.4306 | 0.055496 | 0.45813 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04775 | 1.3882 | -0.095383 | 0.48715 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17928 | 1.4650 | 0.072985 | 1.1121 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.053537 | 1.3741 | 0.05704 | -0.059099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.029661 | 1.2552 | 0.11682 | -0.37645 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11479 | 1.3668 | 0.30523 | 0.5928 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045915 | 1.2984 | 0.068741 | 0.17203 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3836 | 0.0071098 | 0.089119 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.073944 | 1.5792 | 0.026818 | 0.9803 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.030672 | 1.3369 | 0.070392 | -0.10345 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15859 | 1.2771 | -0.092534 | 0.63111 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.2609 | 1.2659 | 0.31115 | 0.021467 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.28123 | 1.4045 | 0.36065 | 0.094675 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.0089499 | 1.5129 | 0.32941 | 0.24157 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19631 | 1.4575 | 0.26035 | 0.28839 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15636 | 1.2680 | 0.025215 | -0.32562 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10623 | 1.2418 | 0.13371 | 0.34276 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.087462 | 1.3345 | 0.1685 | 1.0221 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12754 | 1.3252 | 0.11416 | 0.12004 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11326 | 1.2895 | 0.24459 | 0.014755 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.023198 | 1.2941 | -0.076063 | 0.10556 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.051429 | 1.4407 | -0.31043 | 0.49396 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039697 | 1.2172 | 0.21431 | -0.1505 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.1221 | 1.3205 | 0.2823 | 0.48725 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.094737 | 1.2816 | 0.075398 | 0.25919 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050714 | 1.2236 | -0.26439 | -0.22348 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035971 | 1.4123 | 0.17449 | -0.31183 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.24967 | 1.2302 | 0.33426 | 0.034172 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.025519 | 1.4932 | 0.072797 | -0.15014 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.13018 | 1.3435 | 0.13134 | 0.4674 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10916 | 1.1661 | 0.0096662 | 0.21648 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.032581 | 1.2575 | -0.06382 | 0.37695 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.058392 | 1.5020 | -0.0051542 | 0.40271 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16632 | 1.4813 | 0.38367 | 0.39931 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 1082345 | 0.00045385 | 9.0098e-06 | 0.44668 | -0.97768 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 1082345 | 0.029503 | 0.00023685 | 0.20525 | -1.1256 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0115 | 0.21819 | 0.30456 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.085938 | 1.4079 | 0.058135 | -0.048441 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3401 | 1.1926 | 1.8734 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28696 | 1.1981 | 0.50588 | -0.025306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49643 | 1.3973 | 0.34265 | -0.16583 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.38529 | 1.4824 | 0.12517 | 0.14956 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.025 | 1.3447 | 0.46618 | 0.071996 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.2537 | 1.3409 | -0.32969 | -0.293 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.17105 | 1.1496 | -0.31826 | -0.17285 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.033333 | 1.4721 | -0.22636 | -0.91237 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.12813 | 1.9108 | -0.41373 | -0.1732 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.09 | 0.91400 | -0.36305 | -0.46276 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32273 | 1.5571 | 0.35875 | -0.92905 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.26957 | 1.3024 | 0.64208 | 1.694 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.35192 | 1.5003 | 0.028618 | -0.46428 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.098485 | 0.91158 | -0.77617 | 0.4685 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.33696 | 1.1947 | -0.50391 | -0.16163 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25314 | 1.4446 | 0.048112 | 0.18938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.23 | 1.5833 | -0.49556 | -0.35038 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.87 | 1.7936 | -0.049495 | -0.44914 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32209 | 1.9550 | -0.053943 | -0.83379 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.24444 | 1.3786 | -0.17457 | -0.94174 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15714 | 1.7710 | -0.59872 | -0.56826 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95606 | 1.6668 | -0.060134 | -0.26099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58714 | 1.2060 | -0.20395 | -0.96808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46197 | 1.7645 | 0.043521 | -0.55224 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.46895 | 1.5525 | -0.38356 | -0.4059 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41818 | 1.1479 | 0.40371 | -0.98508 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.60333 | 1.4037 | -1.3986 | 2.0433 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.02973 | 1.5677 | 0.016939 | -0.40237 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16818 | 1.5618 | 0.19681 | -0.28932 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.35526 | 1.2996 | 0.1191 | -0.083424 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19691 | 1.3650 | 0.53361 | 0.069819 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0079 | 1.2322 | 0.025035 | -0.3778 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.014706 | 1.4296 | -0.40421 | -0.23914 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.057692 | 1.4549 | 0.34932 | 0.70586 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49894 | 1.3979 | 0.33595 | -0.38313 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11901 | 1.2339 | 0.50366 | 0.43954 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.16875 | 1.5068 | 0.031166 | -0.37222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.0047619 | 2.1314 | -0.023749 | -0.3842 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.089024 | 2.0060 | 0.41791 | -0.81188 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.26667 | 1.3625 | 0.16997 | -0.025204 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.24815 | 1.3367 | 0.41075 | -0.45321 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.135 | 1.1042 | 0.92148 | 0.47301 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21462 | 1.1414 | 0.16336 | -0.44131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 400505 | 0.00049567 | 7.0837e-05 | 0.65461 | -1.2874 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 400505 | 0.02083 | 0.0058105 | -0.17893 | -1.2846 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.4375 | 1.5101 | 0.52715 | 0.96329 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.48462 | 1.3887 | 0.30381 | -0.28653 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 20 | 0.335 | 1.5749 | -0.3259 | 0.24139 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | 0.54286 | 1.6040 | 0.33435 | -0.058668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.55968 | 2.1191 | 0.0031544 | -0.85114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.08871 | 1.3727 | -0.58948 | 0.91708 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.375 | 1.2194 | 0.44242 | -0.67564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.2587 | 1.1538 | -0.14076 | -0.78589 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.78571 | 1.0968 | -0.45017 | 0.82893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.066667 | 1.1146 | 0.018996 | -1.1555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.43095 | 2.2208 | 0.01764 | -1.1459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 1363367 | 0.00046962 | 1.2808e-05 | 0.57292 | -0.69718 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 1363367 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | -0.052985 | 1.0931 | 0.097503 | -0.23203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.25263 | 1.6657 | 0.62383 | 1.2014 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.40185 | 1.3598 | 0.26612 | -0.35522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.1625 | 0.78412 | -0.017769 | -0.5366 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17807 | 1.2833 | -0.073166 | 0.46316 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.030952 | 1.4302 | -0.78301 | 0.66353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.0825 | 1.3097 | -0.18796 | 0.070429 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.12733 | 1.2591 | 0.086047 | -0.30016 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.2528 | 1.7344 | 0.3247 | -0.10122 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.13165 | 1.2747 | 0.081096 | 0.31941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | -0.006 | 1.3381 | -0.55716 | 0.03749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.041765 | 1.3898 | 0.19465 | -0.58571 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.122 | 0.98164 | -0.23296 | -0.33756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.18636 | 1.6729 | -0.15234 | -0.78213 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.17647 | 1.1897 | -0.72917 | 0.77253 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.08253 | 1.3258 | 0.19649 | -0.65918 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.18333 | 1.4554 | -0.23884 | -0.51873 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.32049 | 1.4815 | 0.77621 | 0.31124 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.62037 | 1.1251 | 0.55331 | 0.45655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.36273 | 1.4140 | 0.32622 | 0.215 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.12917 | 1.4199 | 0.48702 | 0.20217 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.076923 | 1.0219 | 0.30933 | -0.72461 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 2.8735e-16 | 1.3848 | 1.1641 | 1.4829 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.22742 | 0.98822 | 0.11987 | -0.79769 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.38333 | 1.3042 | 0.90062 | 0.21107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.42647 | 1.4683 | 0.97787 | -0.16799 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.01 | 1.6023 | -0.085991 | -0.55954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.034615 | 1.6014 | -0.22691 | -0.87703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.003125 | 1.5060 | 0.011794 | -1.0107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.18012 | 1.4140 | 0.26728 | -0.52517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.015385 | 1.2338 | 1.3109 | 3.1709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.07449 | 1.1941 | 0.07678 | 0.080183 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.022727 | 1.3381 | -0.23149 | -0.85584 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.046 | 0.89999 | 0.23452 | -0.20328 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.07069 | 1.1565 | 0.80364 | 0.090864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.79231 | 1.0627 | 0.12145 | 0.3905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.21383 | 1.3259 | -0.2696 | -0.4522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.05 | 1.2939 | 0.60831 | 0.58928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.1 | 1.3534 | 0.18906 | -0.20798 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.122 | 1.3061 | -0.98819 | 0.37958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.058 | 1.0692 | 0.75031 | 0.21041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.026923 | 1.4781 | 0.54797 | 0.57344 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.25625 | 1.3631 | 0.1635 | -0.84371 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.475 | 1.7011 | 0.32922 | -1.2498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.063043 | 1.3601 | -0.029967 | -0.61069 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0875 | 1.0909 | -0.13055 | -0.18117 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.42391 | 1.5674 | -0.1645 | -0.94463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.87308 | 1.4020 | 0.016435 | -0.80681 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.040909 | 1.1495 | -0.35768 | 0.74577 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.092857 | 1.1924 | 0.19419 | -0.10301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.50313 | 1.6144 | 0.24879 | -0.39262 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 233 | -0.14114 | 1.4921 | 0.14213 | -0.056156 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.036047 | 1.3719 | -0.028593 | -0.5118 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.10377 | 1.3737 | -0.081029 | -0.42913 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 319 | 0.040388 | 1.3782 | 0.24012 | -0.078959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | -0.225 | 1.3332 | 0.06969 | 1.0629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | -0.002849 | 1.3974 | 0.071469 | 0.26161 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 248 | 0.028483 | 1.4262 | 0.16418 | -0.091422 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 358 | -0.22141 | 1.3415 | 0.043251 | 0.15155 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.069892 | 1.2725 | 0.24354 | 0.55255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 250 | 0.23647 | 1.4565 | 0.10764 | -0.05639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 409 | 0.21564 | 1.3398 | -0.020659 | 0.3818 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 337 | 0.02478 | 1.4720 | -0.065296 | 0.21869 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 420 | -0.16245 | 1.2981 | 0.086812 | 0.10272 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 336 | -0.076224 | 1.4337 | 0.52406 | 0.52638 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.13356 | 1.3914 | 0.19591 | -0.12634 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.08656 | 1.2574 | -0.031636 | 0.37701 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 438 | -0.0091346 | 1.3637 | 0.19181 | 0.18131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 265 | -0.16277 | 1.4059 | 0.084932 | -0.2685 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.048924 | 1.3695 | 0.11787 | 0.47505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | -0.19981 | 1.2166 | 0.30604 | 0.55808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 284 | -0.063636 | 1.3586 | 0.12833 | 0.56291 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | 0.11798 | 1.3226 | 0.12158 | -0.15528 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.15398 | 1.5327 | 0.14337 | 0.73345 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 184 | 0.020571 | 1.3825 | 0.18547 | -0.52051 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 457 | -0.10748 | 1.3671 | 0.24991 | 0.45621 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 365 | 0.047727 | 1.3424 | 0.10595 | 0.41048 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | 0.13034 | 1.5098 | 0.23781 | -0.052434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 301 | 0.086034 | 1.3969 | 0.089739 | -0.12734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 293 | -0.30504 | 1.2145 | 0.14092 | -0.14852 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 235 | -0.058104 | 1.2709 | 0.49024 | 0.059256 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | -0.12761 | 1.4044 | -0.24801 | 0.63243 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | 0.1875 | 1.4131 | 0.23484 | 0.17964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | 0.14862 | 1.3827 | 0.14791 | -0.048153 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 458 | 0.095814 | 1.2957 | 0.14455 | 0.1893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.065267 | 1.3089 | 0.14622 | 0.37483 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 307 | -0.01625 | 1.3132 | 0.13065 | -0.040917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | -0.032201 | 1.2847 | -0.023874 | 0.28166 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 120 | -0.084167 | 1.3058 | 0.39119 | 0.22689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.098241 | 1.3347 | 0.1597 | -0.2071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 281 | -0.02312 | 1.4550 | 0.20837 | 0.34569 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.063228 | 1.4668 | 0.047133 | 0.51364 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.1453 | 1.3750 | 0.010356 | 0.37902 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 163 | -0.092236 | 1.2478 | 0.0002954 | -0.5066 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | -0.11325 | 1.2466 | 0.39244 | 0.26335 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 202 | 0.045376 | 1.3562 | 0.3439 | 0.50307 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.23065 | 1.2824 | 0.32552 | 0.24408 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | -0.068519 | 1.4373 | -0.217 | 0.17107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 162 | 0.185 | 1.2517 | 0.39876 | 0.3923 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.11517 | 1.8503 | 0.49969 | -0.29476 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.088095 | 1.3505 | 0.1632 | 0.28875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.034615 | 1.2379 | -0.039673 | 0.38413 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.016842 | 1.2673 | 0.14159 | -0.10893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 167 | -0.18735 | 1.2772 | -0.12217 | 0.24662 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | -0.20714 | 1.5515 | 0.024351 | -0.48875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.15175 | 1.4287 | 0.026273 | -0.40612 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 | 2.2408e-16 | 1.1690 | 0.28216 | 0.66231 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.046774 | 1.0849 | 0.0098039 | -0.18988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 195 | -0.10358 | 1.3611 | 0.043055 | -0.19951 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.14825 | 1.4925 | 0.10759 | -0.58754 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 143 | -0.17183 | 1.4749 | 0.065269 | 0.19828 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | -0.07875 | 1.1733 | 0.50184 | 0.78397 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | -0.26257 | 1.3656 | -0.098274 | 0.35657 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.073958 | 1.4792 | 0.56569 | 0.58239 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.040361 | 1.3157 | -0.044976 | 0.27829 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.14661 | 1.4990 | -0.12252 | -0.069238 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 131 | 0.093671 | 1.1100 | 0.17826 | 0.074199 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 115 | -0.19559 | 1.3392 | 0.046356 | -0.014435 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.44518 | 1.5008 | 0.60964 | 0.29598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.25222 | 1.2528 | -0.17089 | 0.14707 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 1363364 | 0.00046361 | 3.0259e-05 | 1.6432 | 1.8598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 1363364 | 0.024701 | 0.0034707 | -0.56741 | -0.80512 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.068548 | 1.1023 | -0.3188 | 0.61438 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 14 | -1.45 | 2.1073e-08 | 2.1299e+08 | 4.1499e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.056667 | 0.76111 | 0.98453 | 0.91776 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.4741 | 1.4940 | -0.082315 | -1.0016 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 69 |-0.00072464 | 1.2605 | -0.12173 | 0.25145 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.18043 | 1.2505 | 1.8336 | 4.626 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.26136 | 1.2250 | 0.70882 | 0.38704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.9587 | 1.7042 | 0.29342 | -0.84966 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.094643 | 1.2784 | 0.032951 | 0.22175 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.26466 | 1.7968 | 0.66343 | -0.015785 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.0933 | -0.065522 | -0.41692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.058333 | 1.0762 | -0.21469 | -0.38325 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.405 | 1.2515 | -0.3789 | -0.41719 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.45333 | 1.9493 | 0.64982 | -0.38796 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.0525 | 1.7448 | 0.12542 | 0.84974 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.096667 | 0.80405 | -0.031441 | -0.77062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.84444 | 2.8938 | 0.046213 | -1.4761 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.018966 | 1.0967 | -0.04181 | -0.73884 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 1363367 | 0.00050665 | 2.5326e-05 | -0.24952 | -1.1085 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 1363367 | 0.029728 | 0.00015676 | -0.40827 | -0.84221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 252 | -0.072553 | 1.4052 | 0.20776 | 0.52527 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 279 | 0.15 | 1.5649 |-0.00032531 | 0.57166 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 288 | 0.0085574 | 1.3692 | 0.24575 | 1.0566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.067627 | 1.1882 | 0.32789 | 0.36746 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.081541 | 1.2272 | 0.43446 | 0.68913 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.055582 | 1.1979 | -0.025495 | 0.12503 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | -0.15157 | 1.7920 | 0.026654 | 0.44577 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 195 | 0.17694 | 1.2421 | -0.079229 | -0.18772 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.078862 | 1.3260 | -0.005682 | -0.20675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.17708 | 1.3759 | 0.11507 | 0.019033 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.15 | 1.3378 | 0.24802 | -0.037184 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 122 | -0.15826 | 1.8972 | 0.084455 | 0.22257 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.36136 | 1.4682 | 0.32777 | 0.33287 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | -0.019544 | 1.4931 | 0.080524 | 0.58039 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.2625 | 1.2746 | -0.054249 | -0.76486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.11667 | 1.3421 | 0.37405 | 0.31309 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.32009 | 1.6485 | -0.34197 | -0.3694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 169 | -0.034122 | 1.3318 | 0.01194 | -0.088588 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.08381 | 1.3507 | 0.53875 | 0.89756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | -0.041667 | 1.7714 | 0.22062 | -0.29231 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | -0.25361 | 1.4209 | -0.065965 | 0.055146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.043488 | 1.4846 | 0.16909 | -0.042635 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | -0.041971 | 1.3139 | 0.38846 | 0.058648 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 131 | -0.10851 | 1.3762 | 0.33365 | 1.1159 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.054511 | 1.3439 | -0.44466 | 0.11831 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.069797 | 1.3749 | -0.21922 | -0.24704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1 | -0.95 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.23393 | 1.1988 | -0.56682 | 0.49826 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 91 | 0.11044 | 1.2730 | 0.38571 | 0.067672 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.10034 | 1.3491 | -0.090011 | -0.52534 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.058032 | 1.3070 | 0.16594 | 0.30586 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.083803 | 1.3393 | -0.11904 | 0.4194 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.3871 | 1.3857 | -0.33586 | -0.26963 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.23125 | 1.3296 | 0.2071 | -0.056227 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.35137 | 2.1487 | -0.21274 | -0.3359 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 204 | 0.10588 | 1.3677 | 0.10673 | -0.090066 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15 | -0.59 | 2.0774 | 0.20348 | -1.4233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.20345 | 1.4723 | -0.12291 | -0.45348 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.088 | 1.4271 | 0.36465 | 0.52618 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.13696 | 1.3069 | -0.30819 | 0.01875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.025 | 1.1784 | 0.45381 | -0.749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.13421 | 1.0384 | -0.27016 | -0.51272 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.20161 | 1.4598 | 0.51452 | 1.195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 151 | -0.1227 | 1.3900 | 0.11346 | 1.047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.11447 | 1.2263 | 0.37289 | 1.0989 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.035455 | 1.3608 | 0.71943 | 1.0716 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 92 | -0.033696 | 1.3813 | 0.0078826 | -0.26261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.14333 | 1.1922 | 0.1203 | 0.33433 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.16636 | 1.3180 | -0.31313 | 0.11423 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.52273 | 1.5955 | -0.27825 | -1.1972 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.60667 | 1.1248 | 0.7211 | -0.61558 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.12848 | 1.6134 | 0.13697 | -0.03767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.045946 | 1.2437 | -0.1565 | 0.17187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.083333 | 1.3029 | 0.55573 | -0.77959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.22561 | 1.3889 | -0.14161 | -0.47335 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.15625 | 1.0946 | 0.45203 | -0.97198 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.21719 | 1.4927 | -0.11595 | -0.48565 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.066667 | 1.2216 | -0.008196 | -0.8261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.518 | 1.3939 | 0.7488 | -0.04871 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.29364 | 1.4529 | 0.27948 | -0.31441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.13 | 1.4838 | 0.36159 | -0.52201 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | -0.14818 | 1.1681 | -0.40845 | -0.12152 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.60185 | 1.2084 | -0.32585 | -0.21646 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.1229 | 1.3966 | -0.026339 | -0.17096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.21429 | 1.0737 | -0.11399 | -0.7672 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.28718 | 1.1507 | 0.15515 | 0.16313 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.002381 | 1.2869 | 0.083488 | 0.0032106 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.56667 | 1.2181 | 0.59013 | 0.33208 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.25 | 1.3968 | -0.78889 | 0.93659 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.034028 | 1.2726 | 0.30259 | -0.36029 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.043103 | 1.6883 | 0.0070212 | -0.27025 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.22917 | 1.4500 | -0.16624 | -0.16885 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.22429 | 1.4035 | 0.8291 | 1.2926 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.056667 | 1.4770 | 0.74986 | 0.9181 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.078571 | 1.2390 | -0.11094 | -0.10484 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.38871 | 1.2746 | -0.20119 | -0.36802 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.38636 | 1.3391 | 0.3206 | -0.76807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.023913 | 1.3594 | 0.30607 | -0.065206 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.056522 | 1.3321 | -0.13909 | -0.41495 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.031818 | 1.1813 | 1.4734 | 3.357 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.023684 | 1.5734 | 0.26349 | -0.80051 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52407 | 1.3265 | -0.46449 | -0.13015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.1537 | 1.1130 | -0.16973 | -0.16171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.26277 | 1.2627 | 0.02782 | -0.49196 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.0029412 | 0.93816 | -0.51335 | -0.91392 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.32619 | 1.6195 | -0.69526 | 0.020216 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | -0.034375 | 1.2443 | 0.42873 | 1.1108 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.28125 | 1.3075 | 0.06587 | -1.1005 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 701 | 0.095226 | 1.5202 | 0.27233 | 0.58825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1489 | 0.039677 | 1.3613 | 0.15167 | 0.38144 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4239 | 0.020859 | 1.3453 | 0.00088056 | 0.44386 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3973 | 0.018555 | 1.3791 | 0.074342 | 0.4972 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3323 | -0.011449 | 1.3493 | -0.036977 | 0.45547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3464 | 0.016224 | 1.3478 | 0.026209 | 0.57432 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3671 | 0.034247 | 1.3576 | 0.020692 | 0.34159 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3432 | 0.040002 | 1.3131 | 0.13698 | 0.63591 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2554 | 0.017538 | 1.3471 | 0.15952 | 0.52576 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2655 | 0.005604 | 1.4326 | 0.12347 | 0.51871 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3172 | 0.0088731 | 1.3393 | 0.1424 | 0.54439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2450 | 0.056266 | 1.3933 | 0.16204 | 0.34019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2508 | 0.033895 | 1.3675 | 0.040533 | 0.64949 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2537 | 0.028181 | 1.3764 | 0.098571 | 0.53353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2735 | -0.019155 | 1.3515 | 0.15792 | 0.58206 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1930 | 0.05113 | 1.3806 | 0.072054 | 0.39781 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2410 | 0.03585 | 1.3893 | -0.023373 | 0.41096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1988 | 0.063796 | 1.4098 | 0.15214 | 0.29662 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1894 | 0.039755 | 1.4248 | 0.028755 | 0.18791 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2225 | -0.023646 | 1.3212 | 0.065128 | 0.33557 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | -0.039662 | 1.3214 | 0.10137 | 0.44649 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1701 | 0.02653 | 1.3869 | 0.099241 | 0.29103 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1461 | 0.060496 | 1.4336 | 0.16601 | 0.39288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1818 | 0.014532 | 1.3918 | 0.052808 | 0.20496 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1425 | -0.0091524 | 1.3768 | 0.058996 | 0.50985 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2077 | 0.065118 | 1.3319 | 0.061151 | 0.16403 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1492 | -0.021384 | 1.3759 | 0.19887 | 0.44049 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1308 | 0.0017591 | 1.3731 | 0.19823 | 0.3706 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1286 | 0.018789 | 1.3187 | 0.18677 | 0.094133 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1519 | 0.0006299 | 1.3779 | 0.10464 | 0.50379 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1190 | 0.091387 | 1.5120 | 0.20991 | 0.48513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1397 | -0.02806 | 1.4399 | 0.024422 | 0.615 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 939 | 0.07218 | 1.4138 | 0.086519 | 0.44719 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1079 | 0.011354 | 1.4041 | 0.097686 | 0.16233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | -0.063305 | 1.4001 | -0.043688 | 0.44773 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1234 | 0.012943 | 1.4036 | 0.14062 | 0.67517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1113 | -0.042673 | 1.3895 | -0.017785 | 0.55223 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 839 | -0.072272 | 1.4246 | 0.013161 | 0.56053 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | -0.015668 | 1.4188 | 0.040032 | 0.17945 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 703 | 0.033295 | 1.3451 | 0.21362 | 0.43014 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 827 | 0.089056 | 1.3491 | -0.042171 | 0.40563 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 688 | 0.094051 | 1.3733 | 0.13552 | 0.055162 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 695 | 0.022173 | 1.3376 | 0.17092 | 0.18732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 592 | 0.096127 | 1.4714 | -0.10993 | 0.40532 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 527 | 0.086132 | 1.3744 | 0.12718 | 0.18696 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 575 | 0.066527 | 1.3895 | 0.15568 | 0.37506 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 679 | -0.0032049 | 1.3555 | 0.16247 | 0.26111 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 600 | -0.091274 | 1.4130 | 0.26341 | 0.093242 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 478 | 0.10613 | 1.4260 | 0.33458 | 0.31355 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 554 | 0.0033461 | 1.3899 | 0.17849 | 0.53096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 461 | -0.034294 | 1.2971 | 0.075859 | -0.0011814 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 483 | -0.025601 | 1.2480 | 0.10375 | 0.19085 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.13202 | 1.2898 | 0.024057 | 0.27501 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 671 | -0.0149 | 1.3583 | 0.0082757 | 0.047271 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 599 | -0.0091266 | 1.3088 | 0.041306 | 0.28801 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 462 | 0.11594 | 1.3313 | 0.2405 | 0.33207 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 318 | -0.058946 | 1.3707 | -0.061805 | 0.40117 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | -0.12248 | 1.4050 | -0.098658 | 0.5182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 181 | 0.033939 | 1.6943 | 0.29233 | 0.088925 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 405 | 0.026943 | 1.2884 | 0.35475 | 0.91841 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 417 | -0.0035762 | 1.2960 | -0.0036227 | 0.052334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | 0.015478 | 1.4068 | 0.20946 | -0.021081 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | 0.16511 | 1.3862 | 0.047168 | 0.013764 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 419 | 0.14784 | 1.6074 | -0.16854 | 0.45745 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.14782 | 1.2678 | 0.19879 | 0.55192 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.055378 | 1.3348 | 0.21021 | 0.050647 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 289 | 0.11667 | 1.3999 | -0.039086 | 0.67241 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | -0.040698 | 1.3680 | 0.29207 | 0.29645 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 358 | 0.085246 | 1.2730 | 0.1712 | 0.55043 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 1363367 | 0.00045113 | 8.6484e-06 | 0.84727 | -0.31951 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 1363367 | 0.029569 | 0.00023114 | -0.21412 | -1.0301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 99 | -0.16141 | 1.3682 | 0.35695 | -0.48519 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.25128 | 1.4959 | 0.88124 | 0.66328 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.36923 | 1.2475 | 0.32931 | 0.14507 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31757 | 1.4486 | 0.73696 | -0.10628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.926 | 1.1842 | 0.26758 | 0.052368 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.023611 | 1.2330 | 0.14708 | -0.15686 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.29286 | 1.5060 | 0.52731 | -0.60123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.10686 | 1.4352 | 0.016942 | -0.93326 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 67 | -0.096269 | 1.3057 | -0.16568 | -0.013019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.02037 | 1.1900 | 0.61524 | -0.2304 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | -0.35465 | 1.5169 | 0.34813 | 0.88205 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32558 | 1.2835 | -0.085769 | -0.84022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 3 | -0.58333 | 1.7913 | -0.54546 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 115 | -0.1693 | 1.4793 | 0.21941 | 0.46936 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 101 | -0.15843 | 1.5698 | 0.43134 | -0.08002 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.43 | 1.1639 | 0.60125 | 0.57879 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 62 | 0.18226 | 1.5266 | 0.29543 | -0.3566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.13194 | 1.4016 | 0.36292 | 0.0010713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.78125 | 1.5755 | 0.94496 | 0.086866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.41471 | 1.4911 | 0.12294 | 0.23886 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 71 | 0.21761 | 1.1058 | -0.17039 | 0.014632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.040625 | 1.3385 | 0.46427 | -0.0016792 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 82 | -0.19815 | 1.4056 | 0.084947 | -0.24702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.8375 | 0.99176 | 0.54461 | -0.099221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.474 | 1.2176 | 0.30575 | -0.91293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.055263 | 0.92706 | 0.54346 | -0.45713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.3875 | 1.4679 | -0.20325 | -0.69123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.47917 | 1.3281 | -0.24332 | 0.79771 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.75714 | 1.3572 | 1.2193 | 0.92192 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 8 | -0.6375 | 1.8141 | -0.44461 | -1.3057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.8 | 1.1375 | -0.092012 | -1.2943 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.7587 | 2.4324 | -0.34573 | -1.0182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.44762 | 1.1977 | 0.081769 | 1.1261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 0.90856 | -0.35171 | -0.64643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.22083 | 2.0003 | 0.11697 | -0.33781 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 1.7744 | -0.3291 | -0.68946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.30345 | 1.5921 | 0.24477 | -0.64731 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 12 | -0.23333 | 1.0574 | -0.07168 | -0.89195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | -0.12353 | 1.3546 | 0.3963 | -0.64726 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.24259 | 1.0565 | 0.29156 | -0.54127 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.060145 | 1.3639 | -0.29421 | 0.39906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.16892 | 1.5871 | -0.042024 | -0.57766 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.27903 | 1.1303 | 0.53019 | 0.29037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | -0.15606 | 0.88384 | -0.42034 | -0.53987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.21667 | 1.4059 | 0.82902 | 0.37047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.013158 | 1.8664 | 0.5025 | -0.29442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | -0.10769 | 1.3939 | -0.077509 | 0.52334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.016667 | 1.3047 | 0.14097 | -0.16064 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.13571 | 1.3929 | -0.27999 | -0.86613 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.294 | 1.5502 | 0.49772 | 1.2109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.265 | 1.1244 | 0.44821 | -0.96387 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | 0.3268 | 1.4740 | -0.05542 | -0.16061 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 6 | -0.97222 | 1.1123 | 0.23804 | -1.106 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.7125 | 1.5976 | 0.19762 | -0.79182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | 0.081667 | 2.0493 | 0.18707 | -0.87334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | -0.19156 | 1.3107 | -0.23062 | -0.23034 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.39712 | 1.6116 | 0.055558 | -0.50862 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 75 | 0.19459 | 1.5732 | 0.065553 | -0.69265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | -0.74259 | 1.8155 | 0.7309 | 0.62486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | -0.4491 | 1.4936 | -0.019181 | -0.58349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | -0.080481 | 1.4723 | 0.23323 | -0.6212 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.23242 | 1.4505 | -0.34716 | -0.36354 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 133 | 0.055691 | 1.4444 | -0.39136 | -0.29624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 78 | -0.43958 | 1.5925 | -0.48356 | -0.020779 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.19775 | 1.7091 | 0.48602 | 0.33265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.056107 | 1.4844 | 0.27334 | 0.27847 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 121 | -0.27237 | 1.6370 | 0.19197 | 0.23339 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 96 | 0.37708 | 1.4481 | 0.32369 | 0.068932 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.098571 | 1.4856 | 0.21257 | -0.70427 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.14314 | 1.2815 | 0.031185 | -0.58565 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 95 | -0.33485 | 1.2981 | 0.2159 | -0.22909 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 115 | -0.26842 | 1.3840 | -0.05552 | 0.52105 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.087838 | 1.4801 | 0.0080274 | 0.017157 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.16513 | 1.3082 | 0.055232 | -0.16827 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 92 | -0.088194 | 1.5709 | 0.45187 | 0.055518 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | -0.040896 | 1.3994 | 0.096223 | 0.23222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | 0.49028 | 1.4147 | 0.29582 | -0.37137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | -0.19764 | 1.3549 | 0.28243 | -0.10527 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 135 | 0.27745 | 1.3989 | 0.23577 | -0.26221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 81 | -0.10973 | 1.5350 | 0.16321 | 0.56375 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.045 | 1.4055 | -0.0901 | -0.17993 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | -0.20819 | 1.3186 | 0.29558 | -0.16157 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 119 | -0.032353 | 1.3447 | -0.22926 | -0.18099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 126 | -0.0039683 | 1.3896 | 0.23539 | -0.037448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | -0.2335 | 1.4990 | 0.47191 | -0.17411 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.05 | 1.2666 | 1.1596 | 1.0629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.54662 | 1.4444 | -0.11861 | 0.84491 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.082813 | 1.2269 | -0.04982 | -0.19862 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | -0.11426 | 1.3708 | 0.024633 | -0.11171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.30692 | 1.8575 | 0.43962 | 0.16673 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.43421 | 1.4460 | 0.39308 | 0.20277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | -0.21752 | 1.5920 | 0.45544 | -0.20562 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.31854 | 1.3248 | 0.20473 | 0.7639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.091758 | 1.4550 | 0.60163 | 0.10982 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.017391 | 1.0323 | -0.10446 | -0.55182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | 0.12759 | 1.3590 | 0.31181 | -0.27586 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.2088 | 1.2982 | 0.40806 | -0.21033 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.1061 | 1.2531 | -0.056164 | -0.21645 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.57439 | 1.1380 | -0.058383 | -0.74146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.23136 | 1.2450 | -0.17985 | 0.53624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 722089 | 0.00049073 | 6.7516e-05 | 0.8123 | -0.98672 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 722089 | 0.02031 | 0.0051690 | -0.14257 | -1.0716 | RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270136 |-0.00043682 | 0.83190 |-0.00064354 | -1.1858 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270136 |-0.00043682 | 0.83190 |-0.00064354 | -1.1858 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270136 | -0.022647 | 0.80955 | 0.040117 | -1.0687 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270136 | -0.0010217 | 0.83205 | 0.00053239 | -1.1888 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135328 | 0.7052 | 0.29969 | 0.30824 | -0.02156 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135328 | -0.67011 | 0.32104 | 0.022869 | 0.40496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135328 | -0.045877 | 0.18532 | 0.055016 | 2.5372 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.52017 | 17.581 | 0.019731 | 4.5236 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.42766 | 18.120 | -0.021898 | 4.1548 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | 6.5451 | 332.04 | 0.10286 | -1.1575 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | -0.95267 | 77.551 | -0.046062 | 1.7666 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1.5948 | 79.694 | -0.11551 | 1.5809 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1502.5 | 331.87 | -0.099792 | -1.1612 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | -1.551 | 78.478 | -0.052308 | 1.5602 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1.0295 | 81.412 | -0.13133 | 1.4919 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1509.4 | 13.246 | 10.874 | 184.58 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134808 | 0.62914 | 0.28039 | 0.70809 | 5.2261 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134808 | -0.5797 | 0.31890 | 0.74563 | 5.5267 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134808 | -0.047159 | 0.19013 | -0.48348 | 10.297 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | -0.54232 | 17.311 | 0.058504 | 4.5157 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | -0.43613 | 17.797 | -0.010206 | 4.0935 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | 7.2265 | 331.18 | 0.098209 | -1.1504 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 7.6898 | 76.449 | -0.11296 | 1.8563 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 1.1817 | 78.354 | -0.057336 | 1.5678 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 1502.1 | 330.97 | -0.096034 | -1.1536 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134808 | 0.0050108 | 0.046403 | -0.091179 | 0.20111 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134808 | 0.0050108 | 0.046403 | -0.091179 | 0.20111 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 7.214 | 77.623 | -0.14724 | 1.7775 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 0.87205 | 79.863 | -0.019336 | 1.5032 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 1509.7 | 14.404 | 9.9841 | 148.89 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134808 | 0.0055875 | 0.046403 | -0.091912 | 0.1973 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134808 | 0.0055875 | 0.046403 | -0.091912 | 0.1973 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.3706 | 10.454 | 0.18778 | -0.46217 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 30.894 | 12.005 | 0.021809 | -0.18776 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 26.906 | 11.008 | -0.29225 | -0.32276 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 5.2324 | 12.275 | 0.35719 | -0.3531 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 22.275 | 11.002 | -0.15198 | -1.0906 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 8.6818 | 12.826 | 1.3305 | 1.1858 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.109 | 11.465 | -0.0059229 | -1.0031 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6063 | 51.369 | 11.549 | -0.1748 | -0.12799 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 5.3771 | 11.367 | 0.087575 | -0.13552 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6226 | 33.571 | 10.648 | 0.21791 | -0.24342 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 23.254 | 10.511 | -0.17326 | -0.30966 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 8.375 | 7.5901 | -0.20473 | -1.4168 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 28.833 | 8.2057 | 0.4506 | -1.3243 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2708 | -43.422 | 24.103 | -0.93087 | -1.1264 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2708 | -56.38 | 1.2610 | 0.28928 | 0.096434 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2708 | 0.012371 | 1.1821 | -0.055488 | 0.034441 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2708 | -0.019572 | 1.1545 | 0.019922 | -0.049425 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 906 | 0.28968 | 0.28820 | 5.5399 | 47.432 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 906 | 0.014874 | 0.28758 | -2.0195 | 23.379 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 906 | -0.076204 | 0.28303 | -3.928 | 45.995 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | -1.2465 | 30.286 | -0.026885 | 0.091613 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | -0.53481 | 15.238 | -0.23234 | 3.979 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | 20.789 | 540.50 | -0.017416 | -1.1839 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | -237.49 | 333.92 | 0.93684 | 2.0748 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | 5.4255 | 299.65 | 0.08249 | 1.6471 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | 10421 | 540.21 | 0.02786 | -1.1635 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 906 | -0.044905 | 0.034118 | 0.78414 | 1.2339 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 906 | -0.044905 | 0.034118 | 0.78414 | 1.2339 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | -238.17 | 334.17 | 0.96817 | 2.0401 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | 4.5356 | 298.82 | 0.056254 | 1.4399 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | 10442 | 39.989 | 0.45086 | 0.60443 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 906 | -0.04497 | 0.034154 | 0.78272 | 1.2167 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 906 | -0.04497 | 0.034154 | 0.78272 | 1.2167 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1775 | 0.30703 | 0.30450 | 7.0805 | 72.896 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1775 | 0.03488 | 0.27373 | 2.0773 | 25.334 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1775 | -0.063589 | 0.32894 | 1.9076 | 63.837 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | -0.85485 | 33.524 | -0.020869 | -0.074286 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | 0.15371 | 14.389 | -0.20275 | 3.6882 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | -13.45 | 549.64 | 0.041572 | -1.165 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | 348.7 | 242.65 | -0.086446 | 4.2584 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | -1.7831 | 283.34 | -0.10687 | 1.5896 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | 10460 | 550.97 | -0.024429 | -1.1524 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1775 | 0.056042 | 0.025357 | -0.11905 | 2.2635 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1775 | 0.056042 | 0.025357 | -0.11905 | 2.2635 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | 347.35 | 237.56 | -0.19112 | 4.3033 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | -1.3373 | 282.97 | -0.13564 | 1.5559 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | 10446 | 38.682 | 0.76646 | 1.0954 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1775 | 0.056006 | 0.025275 | -0.12164 | 2.2884 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1775 | 0.056006 | 0.025275 | -0.12164 | 2.2884 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 8.92 | 11.846 | 1.163 | 0.6526 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 1.4515 | 0.74259 | 2.2069 | 6.9146 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 237 | 35.171 | 4.2348 | -1.0431 | 2.5855 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.0333 | 6.2226 | 0.061671 | 0.15799 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 88 | 1.4545 | 0.83814 | 2.4596 | 8.2353 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 88 | 31.432 | 3.9852 | -0.61442 | 1.0215 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 6.9762 | 7.3654 | 0.56063 | 2.0427 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 33.5 | 5.5136 | 0.039376 | -0.57921 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3142 | 30.339 | 7.3093 | -0.41013 | 1.0984 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3142 | 4.7931 | 6.5186 | 0.26917 | 0.91384 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1413 | 1.5287 | 0.82773 | 1.7806 | 3.3624 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1413 | 34.141 | 3.7525 | -0.96046 | 3.2827 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.3571 | 6.7340 | -0.085182 | -0.58908 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 21 | 1.1905 | 0.49943 | 2.6229 | 5.8815 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 21 | 29.976 | 2.8220 | 0.5018 | 1.232 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 273172 |-0.00044002 | 0.83251 | -0.0013447 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 273172 |-0.00044002 | 0.83251 | -0.0013447 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 273172 | -0.042881 | 0.80886 | 0.074773 | -1.0626 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 273172 |-0.00051762 | 0.83203 | 0.0013211 | -1.1885 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 136376 | 0.63315 | 0.38851 | 0.75228 | -0.10733 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 136376 | -0.57755 | 0.42591 | -0.46451 | -0.081372 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 136376 | -0.051518 | 0.18890 | 0.12581 | 2.4372 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | -0.52504 | 17.402 | 0.02776 | 4.7341 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | -0.41013 | 17.997 | -0.028031 | 4.3128 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136376 | 9.1248 | 331.94 | 0.10601 | -1.1601 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 2.3198 | 76.715 | -0.13215 | 1.8997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 3.1931 | 79.175 | -0.14768 | 1.6664 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136376 | 1503.9 | 331.72 | -0.10303 | -1.1636 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 136376 | 0.00059302 | 0.046858 | -0.083819 | 0.3704 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 136376 | 0.00059302 | 0.046858 | -0.083819 | 0.3704 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 1.5274 | 78.323 | -0.16656 | 1.7538 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 2.465 | 80.743 | -0.20511 | 1.516 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136376 | 1512.4 | 12.148 | 8.5758 | 133.69 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 136376 | 0.0011718 | 0.046705 | -0.083026 | 0.38463 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 136376 | 0.0011718 | 0.046705 | -0.083026 | 0.38463 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 136796 | 0.54718 | 0.35010 | 1.0699 | 2.2869 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 136796 | -0.46746 | 0.40576 | -0.2076 | 1.51 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 136796 | -0.056376 | 0.19220 | -0.52775 | 8.5172 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136796 | -0.48092 | 17.138 | 0.085714 | 4.7627 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136796 | -0.35826 | 17.616 | 0.0069519 | 4.3339 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136796 | 9.0891 | 330.53 | 0.10098 | -1.1496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136796 | 11.378 | 75.346 | -0.20822 | 2.1175 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136796 | 3.8642 | 77.582 | -0.10584 | 1.7196 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136796 | 1504.1 | 330.36 | -0.098839 | -1.1531 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 136796 | 0.0074667 | 0.045473 | -0.19303 | 0.38356 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 136796 | 0.0074667 | 0.045473 | -0.19303 | 0.38356 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136796 | 11.027 | 77.010 | -0.22396 | 2.0823 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136796 | 3.6166 | 79.214 | -0.070803 | 1.6433 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136796 | 1512.6 | 14.017 | 8.7484 | 118.42 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 136796 | 0.0079204 | 0.045335 | -0.19339 | 0.3936 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 136796 | 0.0079204 | 0.045335 | -0.19339 | 0.3936 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 86 | 50.209 | 10.999 | -0.0037722 | -0.3841 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 86 | 9.0698 | 10.250 | 0.27073 | -0.034374 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 30.855 | 11.962 | 0.068005 | -0.19676 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1012 | 27.54 | 10.913 | -0.25791 | -0.43305 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 152 | 48.179 | 11.703 | -0.16163 | 0.3132 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 152 | 8.0563 | 11.424 | -0.14207 | -0.42246 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 152 | 31.757 | 10.310 | 0.51502 | 0.17126 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 152 | 24.818 | 10.116 | -0.44465 | -0.13627 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 12 | 48.583 | 13.307 | -1.1437 | 0.73781 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 11.167 | 13.350 | 0.93639 | 0.41301 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 50 | 34.42 | 11.795 | 0.23197 | -0.64997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 24.72 | 11.229 | -0.11448 | -0.82801 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6055 | 51.264 | 11.588 | -0.18641 | -0.09748 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 6.0092 | 11.478 | 0.10247 | -0.1821 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6225 | 33.452 | 10.682 | 0.22684 | -0.26921 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 23.891 | 10.613 | -0.17753 | -0.35973 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 18 | 45.778 | 7.3527 | -0.24026 | -0.5922 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 10.389 | 8.6916 | 0.27019 | -1.2164 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 19 | 26.895 | 6.7426 | 0.18969 | -1.0886 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 29.447 | 8.9471 | 0.013606 | -1.2993 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 3413 | -42.214 | 23.512 | -1.0569 | -0.875 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 3413 | -56.385 | 1.2467 | 0.2623 | 0.064337 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 3413 | 0.0115 | 1.1674 | -0.030414 | -0.022059 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 3413 | -0.0053472 | 1.1374 | 0.014026 | -0.072281 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 1065 | 0.27095 | 0.26890 | 5.7782 | 55.014 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 1065 | 0.0072222 | 0.28512 | -0.59035 | 22.667 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 1065 | -0.064907 | 0.24922 | -2.5088 | 30.619 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1065 | -0.72518 | 27.137 | -0.0085528 | 0.45819 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1065 | 0.016534 | 15.372 | 0.023789 | 4.3007 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1065 | 19.694 | 542.43 | -0.023826 | -1.2502 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1065 | -193.18 | 309.55 | 0.8821 | 2.1504 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1065 | 15.614 | 292.56 | -0.022532 | 1.2781 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1065 | 10413 | 542.74 | 0.035356 | -1.2273 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 1065 | -0.038522 | 0.031362 | 0.62931 | 1.3324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 1065 | -0.038522 | 0.031362 | 0.62931 | 1.3324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1065 | -193.09 | 309.12 | 0.91777 | 2.1531 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1065 | 15.476 | 292.51 | -0.039545 | 1.0977 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1065 | 10433 | 37.623 | 0.66616 | 1.1187 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 1065 | -0.038619 | 0.031331 | 0.62905 | 1.3389 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 1065 | -0.038619 | 0.031331 | 0.62905 | 1.3389 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 2315 | 0.29481 | 0.29869 | 6.6504 | 65.481 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 2315 | 0.041177 | 0.26290 | 1.7861 | 23.887 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 2315 | -0.07046 | 0.31924 | 1.025 | 57.824 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2315 | -0.75466 | 32.103 | -0.026593 | -0.03836 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2315 | 0.30009 | 13.495 | -0.23949 | 3.6684 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2315 | -11.991 | 551.15 | 0.02984 | -1.1702 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2315 | 340.44 | 223.10 | -0.097371 | 4.9465 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2315 | 27.369 | 263.42 | -0.056737 | 1.7224 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2315 | 10456 | 551.97 | -0.019232 | -1.1588 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 2315 | 0.053522 | 0.024314 | -0.047865 | 2.3106 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 2315 | 0.053522 | 0.024314 | -0.047865 | 2.3106 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2315 | 339.23 | 218.75 | -0.20061 | 4.983 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2315 | 27.959 | 262.99 | -0.089629 | 1.7013 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2315 | 10444 | 36.716 | 0.6806 | 1.1826 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 2315 | 0.053486 | 0.024243 | -0.047633 | 2.3386 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 2315 | 0.053486 | 0.024243 | -0.047633 | 2.3386 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 65 | 26.754 | 11.297 | -0.72612 | 0.013523 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 65 | 9.4538 | 11.743 | 1.0083 | 0.35277 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 288 | 1.4583 | 0.69096 | 1.4442 | 1.5765 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 288 | 35.024 | 4.2873 | -1.0309 | 2.3636 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 376 | 27.077 | 7.0949 | 0.30857 | 2.1048 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 376 | 4.5824 | 6.6841 | -0.15258 | 3.1004 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 154 | 1.4675 | 0.76590 | 1.4967 | 1.2365 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 154 | 30.727 | 3.6919 | -0.29421 | 0.55133 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 28 | 31.607 | 7.8619 | -0.41962 | 0.74912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 4.7143 | 6.8991 | 0.70227 | 2.6226 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 13 | 1.4615 | 0.74580 | 1.2443 | -0.070847 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 35.654 | 5.7224 | -0.6907 | -0.52524 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3831 | 30.259 | 7.3154 | -0.46154 | 1.1949 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3831 | 5.0106 | 6.6182 | 0.32382 | 1.2071 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1746 | 1.5057 | 0.81384 | 1.8176 | 3.5457 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1746 | 34.127 | 3.7126 | -0.94643 | 3.1643 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 68 | 24.735 | 7.0786 | -0.34824 | 0.55941 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 68 | 5.4265 | 6.8456 | 0.32987 | 0.34434 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 29 | 1.2759 | 0.63770 | 2.8763 | 8.7975 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 29 | 28.638 | 2.9329 | -0.0045053 | 0.77287 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 35.857 | 25.579 | 0.13257 | -1.3584 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 61.412 | 12.317 | -0.2264 | -1.3816 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 50.391 | 18.951 | -0.2449 | -1.1133 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 60.429 | 12.146 | -0.22753 | -1.3605 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 59.706 | 12.007 | -0.2186 | -1.3246 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.132 | 21.794 | 0.097609 | -1.0388 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 25.099 | 13.887 | -0.13475 | -1.0541 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4850 | 54.759 | 2.5395 | 0.90644 | 1.7071 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4848 | 35.54 | 9.5033 | 0.089087 | -1.0281 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4850 | 53.875 | 2.3968 | 0.91144 | 2.0885 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4850 | 53.222 | 2.3482 | 0.8132 | 2.1324 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 24.825 | 16.068 | 0.074283 | -1.3375 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 897 | 35.403 | 22.394 | 0.088701 | -1.0997 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 9014 | 62.778 | 9.8006 | -0.21807 | -1.0022 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9014 | 49.941 | 18.940 | -0.19456 | -1.1243 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9014 | 61.912 | 9.5959 | -0.22411 | -0.97955 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9014 | 61.244 | 9.5431 | -0.22685 | -0.95969 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3604 | 40.714 | 24.090 | -0.10566 | -1.222 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 19.4 | 13.450 | 0.33556 | -0.93127 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 5942 | 54.503 | 2.3994 | 0.96819 | 2.2053 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5940 | 38.18 | 9.2241 | -0.36125 | -0.94784 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5942 | 53.751 | 2.2485 | 0.93089 | 2.4948 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5942 | 53.199 | 2.1932 | 0.80984 | 2.473 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 3077 | 24.427 | 14.065 | -8.227e-05 | -1.0883 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 498 | 242.25 | 187.82 | 0.21848 | -1.3661 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 596.99 | 21.400 | -8.9287 | 110.85 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 361.92 | 134.95 | -0.22439 | -1.0797 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 586.2 | 21.542 | -8.2536 | 99.223 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 578.2 | 22.742 | -6.6762 | 74.255 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.73 | 161.34 | 0.19474 | -0.96749 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 455 | 152.59 | 90.414 | -0.10572 | -1.1156 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4877 | 344.82 | 16.616 | 1.08 | 2.8946 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4877 | 224.96 | 59.272 | 0.092336 | -1.0175 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4877 | 339.42 | 15.762 | 1.0858 | 3.2959 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4877 | 335.22 | 15.517 | 0.98787 | 3.3105 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1873 | 150.12 | 103.31 | 0.12295 | -1.351 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 955 | 236.48 | 161.29 | 0.16357 | -1.0923 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 9014 | 601.68 | 19.357 | -8.2886 | 102.48 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9014 | 373.58 | 141.14 | -0.21798 | -1.121 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9014 | 591.19 | 19.551 | -7.5225 | 89.252 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9014 | 583.39 | 21.038 | -5.7562 | 61.69 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3747 | 285.83 | 175.86 | -0.076042 | -1.2398 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 571 | 115.83 | 86.238 | 0.39247 | -0.93109 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 5967 | 343.16 | 15.675 | 1.1306 | 3.4712 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5967 | 241.33 | 57.534 | -0.35629 | -0.93675 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5967 | 338.49 | 14.789 | 1.1126 | 3.7972 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5967 | 334.98 | 14.436 | 0.99777 | 3.8347 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 3188 | 150.63 | 90.355 | 0.0076071 | -1.1157 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2839 | 1905.9 | 94.236 | 0.55702 | 1.6619 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2116 | 1083.6 | 24.479 | 0.88188 | 1.1699 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 3218 | 1897.8 | 90.440 | 0.62209 | 2.0303 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 25.685 | 18.279 | 0.1479 | -1.298 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 58.823 | 3.9249 | -1.4481 | 9.5548 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 35.249 | 13.806 | -0.14222 | -1.0165 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 57.749 | 3.8823 | -1.4227 | 9.2875 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 56.949 | 3.9110 | -1.3157 | 8.386 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.716 | 15.763 | 0.23506 | -0.84233 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 16.982 | 9.5657 | -0.070735 | -1.043 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4850 | 35.952 | 4.8556 | -1.3701 | 3.5827 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4848 | 23.587 | 6.9270 | 0.055493 | -0.7314 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4850 | 35.374 | 4.7647 | -1.4167 | 3.7388 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4850 | 34.949 | 4.7004 | -1.4382 | 3.8056 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 16.728 | 10.882 | 0.10272 | -1.2858 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 897 | 24.32 | 15.642 | 0.18808 | -0.94262 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 9014 | 59.325 | 3.8740 | -0.97087 | 5.9584 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9014 | 36.453 | 14.465 | -0.13927 | -1.0678 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9014 | 58.274 | 3.8301 | -0.9376 | 5.5642 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9014 | 57.495 | 3.8732 | -0.8475 | 4.9085 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3604 | 28.817 | 17.195 | -0.044613 | -1.1447 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 13.147 | 9.1862 | 0.3475 | -0.91501 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 5942 | 35.934 | 4.5657 | -1.3741 | 4.0025 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5940 | 25.352 | 6.7716 | -0.28477 | -0.64913 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5942 | 35.445 | 4.4787 | -1.4323 | 4.2016 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5942 | 35.081 | 4.4355 | -1.4594 | 4.2594 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 3077 | 16.406 | 9.5734 | 0.062747 | -1.0199 | RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | @@ -1424,22 +1533,22 @@ RichMCHits INFO 1D histograms in directory "RichMCHi | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28855 | -0.014978 | 0.22561 | 0.17105 | -0.27619 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 676243 | -0.010064 | 0.23947 | -0.029838 | 0.07604 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 212606 | -0.012299 | 0.22855 | -2.9707 | 263.75 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29119 | -0.0072643 | 7.5216 | 0.82834 | 0.52101 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 386919 | -0.057699 | 7.0068 | 0.72084 | 1.2634 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 116245 | 0.0033872 | 6.9051 | 0.93573 | 1.16 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 56211 | -0.022725 | 0.20505 | 0.22999 | -1.3511 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 853881 | -0.013139 | 0.27150 | -0.2918 | 10.562 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 690620 | -0.013359 | 0.22578 | -0.37764 | 24.941 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 853881 | -0.013139 | 0.27150 | -0.2918 | 10.562 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 853881 | -0.013139 | 0.27150 | -0.2918 | 10.562 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 242807 | -0.017887 | 0.21507 | -2.6829 | 248.88 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 31409 | -0.0076899 | 6.8910 | 0.88358 | 1.2774 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 564062 | -0.19196 | 7.8274 | 0.25458 | 1.427 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 492327 | -0.028704 | 7.0825 | 0.7243 | 0.86277 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 564062 | -0.19196 | 7.8274 | 0.25458 | 1.427 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 564062 | -0.19196 | 7.8274 | 0.25458 | 1.427 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 202551 | 0.003294 | 6.6680 | 0.91968 | 1.2038 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074977 | 0.057592 | 1.1633 | 1.3334 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062865 | 0.048315 | 1.802 | 4.0255 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.073865 | 0.056544 | 1.1613 | 1.3284 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062141 | 0.048203 | 1.8181 | 4.1085 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | @@ -1469,480 +1578,480 @@ RichRecPixelQC INFO 1D histograms in directory "RichRecP | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2877803 | 0.051207 | 0.00051420 | -0.22495 | -1.1255 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2877803 | 0.050742 | 0.0054732 | -0.12948 | -0.99083 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2877803 | 0.00011682 | 0.0029522 | -0.049658 | -0.95611 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 774320 | 0.00010698 | 0.0029538 | -0.038599 | -0.96398 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 719236 | 0.00013337 | 0.0029606 | -0.065954 | -0.97006 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 719069 | 0.00011098 | 0.0029446 | -0.043704 | -0.94251 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 665178 | 0.00011676 | 0.0029495 | -0.051399 | -0.9458 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1082345 | 0.029497 | 0.00023201 | 0.13781 | -1.0807 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1082345 | 0.028124 | 0.0040812 | -0.22188 | -0.99366 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1082345 | 5.7506e-05 | 0.0018603 | -0.022292 | -0.91122 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 285414 | 4.881e-05 | 0.0018596 | -0.021198 | -0.91183 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 264747 | 5.8663e-05 | 0.0018591 | -0.022113 | -0.9092 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 262832 | 5.6332e-05 | 0.0018629 | -0.019229 | -0.91986 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 269352 | 6.6772e-05 | 0.0018597 | -0.026632 | -0.90409 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2910346 | 0.051244 | 0.00053522 | -0.22028 | -1.1565 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2910346 | 0.050736 | 0.0054681 | -0.13162 | -0.98745 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2910346 | 0.00011226 | 0.0029491 | -0.04785 | -0.9471 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 854646 | 0.00010395 | 0.0029472 | -0.040662 | -0.93966 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 704739 | 0.00012031 | 0.0029534 | -0.056484 | -0.95471 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 752715 | 0.00010426 | 0.0029455 | -0.041916 | -0.94331 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 598246 | 0.00012477 | 0.0029510 | -0.055453 | -0.95313 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1363367 | 0.029565 | 0.00022401 | -0.36982 | -1.0091 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1363367 | 0.028125 | 0.0040819 | -0.21987 | -0.99935 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1363367 | 5.0227e-05 | 0.0018678 | -0.018228 | -0.92779 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 403599 | 4.9958e-05 | 0.0018663 | -0.022243 | -0.92287 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 326654 | 4.7315e-05 | 0.0018649 | -0.013903 | -0.92247 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 341585 | 5.2057e-05 | 0.0018716 | -0.018426 | -0.93682 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 291529 | 5.1746e-05 | 0.0018689 | -0.017378 | -0.92996 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8921 | 974.9 | 33.294 | 12.935 | 177.91 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8921 | 2045.7 | 14.728 | 1.2481 | 3.2567 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8921 | 1075.2 | 38.651 | -8.8448 | 109.4 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4877 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4877 | 11382 | 86.529 | 0.90199 | 2.1393 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4877 | 1888.9 | 91.062 | 1.0738 | 2.8216 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 9014 | 974.45 | 29.205 | 13.128 | 183.42 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 9014 | 2053.4 | 14.789 | 1.3491 | 3.175 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 9014 | 1083.8 | 35.321 | -8.0139 | 98.053 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 5967 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 5967 | 11373 | 81.832 | 0.95385 | 2.6072 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 5967 | 1879.6 | 86.117 | 1.1267 | 3.3735 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.728 | 7.3194 | 0.48799 | -0.15599 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.215 | 8.6725 | 0.37591 | -0.3425 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 13.693 | 7.8418 | 0.50425 | -0.062838 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.891 | 9.0934 | 0.39713 | -0.24217 | RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245682 | 18430 | 10489. | 3.865 | 22.934 | - | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8897 | 62696 | 22142. | 0.88473 | -0.2119 | - | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8897 | 18298 | 10711. | 4.0386 | 24.085 | - | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8897 | 19889 | 11728. | 3.7291 | 19.96 | - | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8897 | 18340 | 10745. | 4.0277 | 23.934 | - | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8897 | 18372 | 10771. | 4.0194 | 23.819 | - | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8897 | 31002 | 15808. | 2.8596 | 9.3825 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100461 | 33701 | 17845. | 2.4155 | 6.1084 | - | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4799 | 89997 | 15662. | 0.12163 | -1.0667 | - | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4799 | 33006 | 17291. | 2.5291 | 6.8 | - | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4799 | 35000 | 18615. | 2.2493 | 5.0906 | - | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4799 | 33066 | 17338. | 2.5193 | 6.7359 | - | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4799 | 33111 | 17373. | 2.5119 | 6.6876 | - | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4799 | 56841 | 22565. | 1.0146 | 0.063492 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 248337 | 19563 | 12214. | 2.9282 | 11.826 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 9001 | 56889 | 17393. | 1.3024 | 1.3189 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 9001 | 19889 | 12682. | 2.8594 | 11.032 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 9001 | 21887 | 13747. | 2.5564 | 8.7079 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 9001 | 19943 | 12718. | 2.8488 | 10.945 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 9001 | 19984 | 12746. | 2.8408 | 10.88 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 9001 | 34761 | 16298. | 1.8854 | 4.27 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 126066 | 36798 | 16886. | 1.8298 | 3.9634 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 5917 | 84888 | 15188. | 0.56903 | -0.70346 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 5917 | 36006 | 16433. | 1.8928 | 4.29 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 5917 | 37828 | 17105. | 1.7492 | 3.5692 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 5917 | 36063 | 16460. | 1.8875 | 4.2619 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 5917 | 36107 | 16480. | 1.8835 | 4.2407 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 5917 | 52272 | 17834. | 1.4031 | 1.7774 | RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 121600 | 0.033901 | 0.011565 | -0.34369 | -1.0308 | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 129250 | 52907 | 19197. | 1.5452 | 1.8012 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16399 | 6937.9 | -0.35931 | -22.829 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 2877803 | 0.051975 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 2871542 | 18021 | 10104. | 3.9147 | 23.751 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16249 | 6899.2 | -0.24833 | -22.103 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16249 | 6899.2 | -0.24833 | -22.103 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17607 | 10147. | 3.0419 | 11.45 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28253 | 23856 | 13835. | 3.1062 | 14.14 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28253 | 0.044137 | 0.0062789 | -1.2048 | 1.2776 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 2877803 | 0.036837 | 0.0095745 | -0.29204 | -1.1434 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 2871542 | 16994 | 9573.0 | 4.1315 | 26.671 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23036 | 13500. | 3.1641 | 14.846 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23036 | 13500. | 3.1641 | 14.846 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.0434 | 0.0068761 | -1.1643 | 1.028 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.0434 | 0.0068761 | -1.1643 | 1.028 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 22159 | 13378. | 3.2629 | 14.896 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 0.04274 | 0.0071708 | -1.0551 | 0.58054 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3682 | 16.099 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3682 | 16.099 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041659 | 0.0079083 | -0.9348 | 0.11321 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041659 | 0.0079083 | -0.9348 | 0.11321 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17393 | 6622.0 | 0.94817 | 0.0063636 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13943 | -1.5855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 2877803 | 0.051571 | 0.00029950 | -0.20076 | -1.1052 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 2871542 | 17904 | 10058. | 3.9946 | 24.654 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.1 | 1.0034 | 0.13226 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.1 | 1.0034 | 0.13226 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20632 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20632 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46682 | -1.4307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063324 | -1.8914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54199 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54199 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14658 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14658 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205310 | 17562 | 9644.1 | 4.4288 | 30.477 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205310 | 0.051177 | 0.00051838 | -0.20367 | -0.87606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 2877803 | 0.051193 | 0.00051486 | -0.20649 | -1.1349 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 2871542 | 17987 | 10094. | 3.9312 | 23.931 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205310 | 17385 | 9489.3 | 4.4711 | 31.265 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205310 | 17385 | 9489.3 | 4.4711 | 31.265 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205310 | 0.051163 | 0.00052012 | -0.17686 | -0.89984 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205310 | 0.051163 | 0.00052012 | -0.17686 | -0.89984 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205310 | 17562 | 9298.3 | 4.0934 | 27.004 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205310 | 0.051181 | 0.00051953 | -0.18656 | -0.85083 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205310 | 17388 | 9157.1 | 4.1299 | 27.646 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205310 | 17388 | 9157.1 | 4.1299 | 27.646 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205310 | 0.051168 | 0.00052121 | -0.16073 | -0.87309 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205310 | 0.051168 | 0.00052121 | -0.16073 | -0.87309 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 35231 | 15318. | 2.4118 | 7.868 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 0.041075 | 0.0081192 | -1.6215 | 2.8808 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 1020519 | 0.029741 | 0.010874 | 0.093554 | -1.0148 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 1085464 | 24676 | 10922. | 4.1336 | 22.419 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33432 | 15044. | 2.4243 | 8.2508 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33432 | 15044. | 2.4243 | 8.2508 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097479 | -1.3392 | 1.0803 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097479 | -1.3392 | 1.0803 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 33079 | 16162. | 2.6721 | 8.0678 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 0.03903 | 0.0081220 | -0.72187 | 0.26957 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31649 | 15486. | 2.8292 | 9.3165 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31649 | 15486. | 2.8292 | 9.3165 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089211 | -0.66628 | -0.050323 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089211 | -0.66628 | -0.050323 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 82238 | 0.020754 | 0.0049006 | -0.34532 | -0.87938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 77164 | 84252 | 15732. | 0.50796 | -0.81251 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 261975 | 0.032515 | 0.010031 | -0.28831 | -0.79604 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 279341 | 50154 | 14675. | 1.8082 | 3.618 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2835 | 17259 | 9852.8 | 2.8561 | 9.627 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 2910346 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 2906683 | 19621 | 12152. | 2.7396 | 10.295 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2835 | 17085 | 9715.4 | 2.9033 | 10.002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2835 | 17085 | 9715.4 | 2.9033 | 10.002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2835 | 18344 | 10485. | 2.6123 | 8.3033 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2835 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 18165 | 10360. | 2.649 | 8.5804 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 18165 | 10360. | 2.649 | 8.5804 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 0.05209 | 6.5854e-10 |-1.5263e+08 | 1.4207e+16 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2835 | 0.05209 | 6.5854e-10 |-1.5263e+08 | 1.4207e+16 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 30048 | 26172 | 14475. | 1.7354 | 3.0269 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 30048 | 0.04498 | 0.0061579 | -1.3824 | 1.8637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 2910346 | 0.037321 | 0.0098278 | -0.28453 | -1.1536 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 2906683 | 18364 | 11544. | 2.9647 | 12.064 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 30048 | 25283 | 14280. | 1.7994 | 3.3491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 30048 | 25283 | 14280. | 1.7994 | 3.3491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 30048 | 0.044275 | 0.0067948 | -1.3328 | 1.5243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 30048 | 0.044275 | 0.0067948 | -1.3328 | 1.5243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 30048 | 24036 | 14690. | 2.1965 | 6.2877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 30048 | 0.043143 | 0.0074024 | -1.0461 | 0.49402 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 30048 | 22853 | 14278. | 2.3059 | 6.9577 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 30048 | 22853 | 14278. | 2.3059 | 6.9577 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 30048 | 0.04201 | 0.0081644 | -0.91691 | 0.02787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 30048 | 0.04201 | 0.0081644 | -0.91691 | 0.02787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 430 | 17729 | 7762.8 | 0.89058 | -0.69384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 430 | 0.051563 | 0.00038385 | 0.27637 | -1.5103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 2910346 | 0.051587 | 0.00030725 | -0.23327 | -1.1604 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 2906683 | 19450 | 12065. | 2.8045 | 10.818 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17403 | 7662.7 | 0.96581 | -0.53421 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17403 | 7662.7 | 0.96581 | -0.53421 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051546 | 0.00038179 | 0.34992 | -1.4624 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051546 | 0.00038179 | 0.34992 | -1.4624 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 19507 | 8487.2 | 0.38286 | -1.5332 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 0.051631 | 0.00043384 | -0.0028918 | -1.8758 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19143 | 8446.0 | 0.45833 | -1.4704 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19143 | 8446.0 | 0.45833 | -1.4704 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043360 | 0.080424 | -1.8697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043360 | 0.080424 | -1.8697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 204449 | 18530 | 11323. | 3.503 | 17.549 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 204449 | 0.051195 | 0.00054264 | -0.10449 | -0.90747 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 2910346 | 0.051227 | 0.00053519 | -0.20094 | -1.1754 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 2906683 | 19573 | 12132. | 2.755 | 10.413 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204449 | 18312 | 11141. | 3.5543 | 18.134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204449 | 18312 | 11141. | 3.5543 | 18.134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204449 | 0.051181 | 0.00054386 | -0.078005 | -0.92046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204449 | 0.051181 | 0.00054386 | -0.078005 | -0.92046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204449 | 18432 | 10999. | 3.2941 | 15.584 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204449 | 0.051192 | 0.00054463 | -0.096956 | -0.91392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204449 | 18216 | 10828. | 3.3436 | 16.105 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204449 | 18216 | 10828. | 3.3436 | 16.105 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204449 | 0.051177 | 0.00054579 | -0.070112 | -0.92622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204449 | 0.051177 | 0.00054579 | -0.070112 | -0.92622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10575 | 41063 | 18146. | 1.4905 | 2.5028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10575 | 0.043335 | 0.0076875 | -1.9679 | 4.4292 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 1113295 | 0.032125 | 0.011849 | -0.11454 | -1.2333 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 1173270 | 27336 | 12888. | 2.5552 | 8.4538 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10575 | 39100 | 18189. | 1.5038 | 2.6151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10575 | 39100 | 18189. | 1.5038 | 2.6151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10575 | 0.041882 | 0.0093718 | -1.6884 | 2.3174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10575 | 0.041882 | 0.0093718 | -1.6884 | 2.3174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10575 | 37245 | 17006. | 1.6468 | 3.0949 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10575 | 0.040955 | 0.0084430 | -1.0388 | 0.58642 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 35534 | 16708. | 1.7381 | 3.4979 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 35534 | 16708. | 1.7381 | 3.4979 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 0.039494 | 0.0094669 | -0.90787 | 0.069827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10575 | 0.039494 | 0.0094669 | -0.90787 | 0.069827 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.00024414 |-2.6312e+08 | 7.6805e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 93714 | 0.018914 | 0.0048658 | 0.088524 | -0.96737 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 103759 | 79037 | 14091. | 0.98997 | 0.19473 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.00024414 |-2.6312e+08 | 7.6805e+16 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35360 | 17803. | 0.98134 | -0.47006 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 1082345 | 0.029952 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 1067728 | 32765 | 16922. | 2.5082 | 6.788 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34830 | 17595. | 1.0451 | -0.33568 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33490 | 15018. | 1.4581 | 1.1968 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 57692 | 34508. | -1.4493 | -1.0121 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 3.2927e-10 |-3.4774e+07 | 3.507e+15 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30755 | 12358. | 1.4338 | 1.2858 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30445 | 12211. | 1.484 | 1.4571 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30894 | 12195. | 1.4223 | 1.2575 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28365 | 12070. | 1.8534 | 2.7937 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 3.2927e-10 |-1.2968e+08 | 2.8966e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12064 | 32156 | 29764. | 2.3017 | 2.9543 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12064 | 0.02051 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 1082342 | 0.023397 | 0.0036770 | -0.011176 | -1.1345 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 1067725 | 32472 | 16869. | 2.5406 | 6.9651 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12064 | 31356 | 28603. | 2.4501 | 3.6428 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10111 | 30789 | 25703. | 2.5121 | 4.1941 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1953 | 17063 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12064 | 0.020488 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10111 | 0.020498 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1953 | 0.020808 | 0.0063475 | 0.38016 | -3.1959 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12064 | 39967 | 22208. | 1.7483 | 2.5305 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12064 | 0.02515 | 0.0033910 | -0.45695 | -0.77854 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12064 | 39303 | 21990. | 1.7966 | 2.7315 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10111 | 40265 | 22740. | 1.6921 | 2.3002 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1953 | 34875 | 17471. | 2.3843 | 5.6764 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12064 | 0.02498 | 0.0034616 | -0.41308 | -0.84717 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10111 | 0.025086 | 0.0035360 | -0.45221 | -0.88674 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1953 | 0.02448 | 0.0030347 | -0.30082 | -0.48171 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 491 | 18601 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 491 | 0.029394 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 1082345 | 0.029679 | 0.00013671 | 0.24874 | -0.88557 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 1067728 | 32412 | 16561. | 2.5849 | 7.3173 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 491 | 18888 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 415 | 15784 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21071 | 1344.1 | 20.694 | 235.2 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 491 | 0.0294 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 415 | 0.0294 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 491 | 26869 | 7502.4 | 1.425 | 1.1361 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 491 | 0.029599 | 0.00015307 | 0.39664 | -0.78307 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 491 | 26585 | 7301.8 | 1.4977 | 1.4245 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 415 | 28047 | 7931.0 | 1.1473 | 0.31691 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3162.0 | 2.0872 | 3.4739 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 491 | 0.029594 | 0.00015136 | 0.4251 | -0.75037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 415 | 0.029634 | 0.00014949 | 0.13803 | -0.67371 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9699e-05 | 1.1498 | -0.67804 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83530 | 35488 | 20858. | 2.3641 | 5.2964 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83530 | 0.029558 | 0.00023031 | 0.18723 | -1.0952 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 1082345 | 0.029493 | 0.00023492 | 0.1633 | -1.0568 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 1067728 | 32943 | 17118. | 2.4804 | 6.5829 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83530 | 35279 | 20739. | 2.3908 | 5.4432 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 70994 | 41495 | 24689. | 1.6367 | 1.969 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12536 | 28871 | 12814. | 4.454 | 22.525 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83530 | 0.029554 | 0.00023049 | 0.20211 | -1.0851 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 70994 | 0.029638 | 0.00023582 | -0.27321 | -1.247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12536 | 0.029462 | 0.00018508 | 0.53296 | -0.0010277 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83530 | 32053 | 15854. | 2.6947 | 8.1376 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83530 | 0.029494 | 0.00022797 | 0.25491 | -0.99974 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83530 | 31867 | 15754. | 2.7241 | 8.3334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 70994 | 32431 | 16248. | 2.6241 | 7.6093 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12536 | 28922 | 12456. | 3.3885 | 14.273 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83530 | 0.02949 | 0.00022801 | 0.27549 | -0.99218 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 70994 | 0.029499 | 0.00022947 | 0.22974 | -1.0264 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12536 | 0.029443 | 0.00021401 | 0.50757 | -0.68914 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3216 | 84463 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3216 | 0.030129 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 340806 | 0.02021 | 0.0059615 | -0.039274 | -1.3602 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 385888 | 47094 | 19662. | 1.7093 | 2.2409 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3216 | 83237 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2806 | 67705 | 17918. | -0.51163 | -2.4048 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38478 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3216 | 0.030169 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2806 | 0.026432 | 0.0034782 | -3.2416 | 13.21 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014072 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3216 | 61463 | 22653. | 0.77543 | -0.47511 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3216 | 0.024034 | 0.0048271 | -0.98652 | 0.088233 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3216 | 60376 | 22828. | 0.80965 | -0.43036 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2806 | 61737 | 23054. | 0.74645 | -0.52699 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52377 | 19632. | 1.2529 | 0.48463 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3216 | 0.023701 | 0.0050966 | -0.90377 | -0.20871 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2806 | 0.024049 | 0.0049628 | -1.0558 | 0.19015 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021618 | 0.0053817 | -0.17681 | -1.1655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1391 | 1.2133e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 1363367 | 0.029952 | 3.2927e-10 |-2.0185e+08 | 4.19e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 1354167 | 35788 | 16069. | 1.8807 | 4.2704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1391 | 1.4552e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1214 | -46563 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 177 | 23983 | 16493. | 3.3348 | 6.8278 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1214 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 177 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1391 | 32331 | 11653. | 1.2891 | 1.1193 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1391 | 32069 | 11571. | 1.3203 | 1.2215 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1214 | 32427 | 11402. | 1.2981 | 1.1471 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 177 | 29490 | 12423. | 1.6302 | 2.098 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1391 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1214 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 177 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 16769 | 56072 | 30119. | 0.65378 | -0.62448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 16769 | 0.02652 | 0.0033585 | -1.4795 | 1.7555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 1363364 | 0.024494 | 0.0035597 | -0.49553 | -0.93519 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 1354164 | 35527 | 16103. | 1.8957 | 4.3178 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 16769 | 55224 | 30183. | 0.67733 | -0.59634 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 14305 | 49923 | 26982. | 0.98377 | 0.22893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 2464 | 25819 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 16769 | 0.026325 | 0.0035652 | -1.3954 | 1.2343 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 14305 | 0.026036 | 0.0034194 | -1.199 | 0.61124 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 2464 | 0.024701 | 0.0021948 | -0.62117 | -10.245 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16769 | 40995 | 17961. | 1.5834 | 2.9896 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16769 | 0.025915 | 0.0029515 | -0.95298 | 0.17147 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 16769 | 40537 | 17930. | 1.5973 | 3.0382 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 14305 | 40980 | 18093. | 1.5733 | 2.9924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 2464 | 38184 | 16847. | 1.7416 | 3.3006 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 16769 | 0.025789 | 0.0030382 | -0.91261 | 0.029793 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 14305 | 0.025861 | 0.0030577 | -0.97011 | 0.12027 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 2464 | 0.025399 | 0.0028997 | -0.61998 | -0.31447 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 759 | 20945 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 759 | 0.029429 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 1363367 | 0.029718 | 0.00013257 | -0.24783 | -0.9324 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 1354167 | 35417 | 15816. | 1.931 | 4.562 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 759 | 21005 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 649 | 25028 | 8113.4 | 2.2912 | 4.2369 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 110 | 16615 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 759 | 0.029431 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 649 | 0.029518 | 0.00012666 | 1.2215 | 0.50648 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 110 | 0.029336 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 759 | 30999 | 10629. | 1.1666 | 0.32041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 759 | 0.029644 | 0.00014844 | 0.088395 | -0.62245 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 759 | 30520 | 10378. | 1.2447 | 0.58664 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 649 | 32172 | 10770. | 1.0225 | -0.010662 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 110 | 24948 | 6285.9 | 2.6372 | 8.3171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 759 | 0.029637 | 0.00014726 | 0.11137 | -0.60309 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 649 | 0.029668 | 0.00013840 | -0.0059231 | -0.23955 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 110 | 0.029533 | 0.00012681 | 0.82641 | -0.38024 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 101046 | 39645 | 20234. | 1.7258 | 2.7125 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 101046 | 0.029618 | 0.00021354 | -0.15736 | -0.97807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 1363367 | 0.029561 | 0.00022644 | -0.34694 | -1.017 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 1354167 | 35948 | 16200. | 1.8698 | 4.1913 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 101046 | 39482 | 20200. | 1.7372 | 2.755 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 87073 | 44221 | 22978. | 1.3325 | 1.0231 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 13973 | 34120 | 14770. | 2.2587 | 6.7339 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 101046 | 0.029615 | 0.00021423 | -0.14716 | -0.98379 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 87073 | 0.02968 | 0.00020088 | -0.42663 | -0.89614 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 13973 | 0.02954 | 0.00020452 | 0.15779 | -0.71358 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101046 | 35309 | 15824. | 1.9915 | 4.8749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101046 | 0.029558 | 0.00022927 | -0.13234 | -1.0399 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 101046 | 35125 | 15786. | 2.0078 | 4.9502 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 87073 | 35667 | 16003. | 1.9612 | 4.7076 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 13973 | 31942 | 14025. | 2.3697 | 7.0844 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 101046 | 0.029554 | 0.00023011 | -0.11312 | -1.057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 87073 | 0.029563 | 0.00022868 | -0.16509 | -1.0198 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 13973 | 0.029498 | 0.00023068 | 0.20058 | -1.0696 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6062 | 49515 | 36367. | 1.9839 | 0.92288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6062 | 0.0078567 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 631187 | 0.019784 | 0.0053024 | -0.029063 | -1.1453 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 712889 | 45163 | 15729. | 1.9112 | 3.842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 6062 | 49408 | 35417. | 2.0918 | 1.2312 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 5411 | 67011 | 38946. | 0.77413 | -1.8114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 651 | -14456 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 6062 | 0.0090447 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 5411 | 0.017158 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 651 | -1.0647 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6062 | 57252 | 18904. | 1.1978 | 0.98692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6062 | 0.023303 | 0.0042093 | -0.85555 | 0.2176 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6062 | 56536 | 19009. | 1.2121 | 1.0198 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5411 | 56825 | 19113. | 1.2131 | 1.0357 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 651 | 54219 | 17984. | 1.1841 | 0.71103 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6062 | 0.023047 | 0.0044142 | -0.81938 | 0.034328 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5411 | 0.023125 | 0.0043813 | -0.86537 | 0.15829 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 651 | 0.022432 | 0.0046197 | -0.48748 | -0.66026 | RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 16947 | 7029.0 | 2.2337 | 8.6188 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | -1.689 | 79.001 | -0.019954 | 1.6907 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 2.0009 | 81.693 | -0.11248 | 1.4548 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | 17034 | 7009.9 | 2.1578 | 8.0534 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -4.81 | 76.360 | 0.27362 | 1.7138 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -0.95703 | 88.226 | 0.18676 | 1.6232 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | 15017 | 7483.9 | 4.5216 | 27.215 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -4.81 | 76.360 | 0.27362 | 1.7138 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -0.95703 | 88.226 | 0.18676 | 1.6232 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 133.24 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.111 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1177 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.388 | 93.642 | 2.4599 | -4.3849 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 249.2 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1683 | 271.65 | -0.5481 | -0.17438 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 20.23 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15.941 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15295 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135328 | -2155.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135328 | -7.9552 | 124.69 | 0.71169 | 1.6122 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135328 | -3415.2 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135328 | -13.04 | 141.30 | 0.81836 | 1.0693 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 17383 | 7492.9 | 2.1486 | 7.553 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 7.2157 | 69.424 | -0.14549 | 2.1067 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 1.233 | 72.006 | -0.054315 | 1.7995 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | 17605 | 7507.4 | 2.0671 | 7.0841 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | 1.8141 | 74.106 | -0.58758 | 1.4911 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | -3.4872 | 84.350 | -0.35477 | 1.2627 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | 15175 | 7375.1 | 3.4729 | 16.737 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | 1.8141 | 74.106 | -0.58758 | 1.4911 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | -3.4872 | 84.350 | -0.35477 | 1.2627 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 138.36 | 118.11 | 3.5141 | -17.902 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 12.042 | 102.42 | 0.80878 | -0.05993 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 2294.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 3.5103 | 90.243 | 0.32341 | 4.0884 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 191.98 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 1746 | 50.874 | 382.97 | -7960.6 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | -68.396 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 1.236 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | -13586 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134808 | 794.88 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134808 | -2.9969 | 52.764 | -5.4839 | -4.6938 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134808 | 710.14 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134808 | -2.4439 | 55.081 | -4.2592 | -2.5972 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 18017 | 8380.8 | 2.3351 | 9.6414 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 18566 | 8771.7 | 2.2033 | 7.5137 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 18462 | 9011.6 | 2.4681 | 8.8676 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.6169 | 50.451 | -0.48324 | 3.7955 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.582 | 52.802 | -0.48882 | 2.4512 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49289 | 7970.2 | 0.58806 | 0.36168 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47103 | 10895. | 0.97388 | 0.031356 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 17467 | 3891.9 | 0.14164 | -2.6855 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16481 | 5928.8 | 0.91296 | -0.021092 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 19019 | 9440.3 | 2.4945 | 8.331 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6063 | 17330 | 8110.8 | 2.7552 | 11.441 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 1.5144 | 48.941 | -0.19674 | 2.9736 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 0.90011 | 49.570 | -0.12851 | 1.6845 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 17845 | 8515.8 | 2.666 | 10.353 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 17271 | 8008.6 | 2.7395 | 11.481 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 1.5005 | 51.817 | -0.22655 | 2.9607 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 0.67268 | 51.818 | -0.12417 | 1.7493 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 73235 | 3515.4 | -0.41324 | -1.5667 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72635 | 3652.1 | 0.021958 | -1.5732 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | 31569 | 16003. | 2.5725 | 7.1296 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | -254.21 | 316.42 | 0.73548 | 1.8351 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | -1.2873 | 286.02 | 0.13544 | 2.0881 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -18934 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -267.48 | 304.67 | 0.50236 | 0.46551 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -48.863 | 297.87 | 0.28473 | 2.2984 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | 29934 | 11507. | 0.31517 | -10.855 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | -267.48 | 304.67 | 0.50236 | 0.46551 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | -48.863 | 297.87 | 0.28473 | 2.2984 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 27.956 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 0.30675 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 576.43 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 268.42 | 615.43 | -0.29693 | -1.5373 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 875.08 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 9483.1 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 210.95 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | -263.15 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | -3642.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 906 | -485.03 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 906 | 7.8106 | 248.32 | 0.66379 | 3.0857 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 906 | -484.99 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 906 | 7.8408 | 248.25 | 0.66513 | 3.0781 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 29934 | 13900. | 3.292 | 13.534 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 359.81 | 233.02 | -0.10229 | 4.3482 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 11.938 | 272.33 | -0.074594 | 1.2912 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 21219 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 311.32 | 119.78 | -4.2337 | 21.153 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 1.9616 | 239.40 | -0.63998 | 6.0586 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 30742 | 11722. | 1.7662 | -0.33057 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 311.32 | 119.78 | -4.2337 | 21.153 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 1.9616 | 239.40 | -0.63998 | 6.0586 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 2206.7 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 37.535 | 530.54 | 1.1414 | -1.6922 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 34286 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -385.64 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -781.03 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 9304.1 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 1521.8 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -32.619 | 516.20 | 1.2433 | -0.026944 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 32860 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1775 | 452.56 | 213.05 | 2.6243 | -4.9887 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1775 | -6.6716 | 292.79 | -0.33073 | 1.8445 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1775 | 452.64 | 212.94 | 2.6281 | -5.0179 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1775 | -6.7586 | 292.65 | -0.331 | 1.8481 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27633 | 9210.6 | 2.9276 | 8.6926 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 236 | 32309 | 15074. | 2.2639 | 4.9677 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 32658 | 15848. | 2.411 | 5.632 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 110.88 | 317.57 | -0.35759 | -0.57417 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 0.30233 | 279.61 | -0.40214 | 1.4868 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55368 | 16765. | 0.83413 | -0.22361 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 82 | 56609 | 19290. | 0.72817 | -0.78342 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 59778 | 23995. | 0.94504 | -0.17864 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 215.52 | 328.39 | 0.55315 | 0.94587 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 17.875 | 259.14 | -1.489 | 5.3214 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26144 | 6272.7 | 1.597 | 2.1876 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27199 | 8112.5 | 1.559 | 1.3376 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3099 | 32262 | 15550. | 2.2653 | 4.9507 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3142 | 32008 | 15918. | 2.7105 | 8.2027 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3142 | 7.0538 | 357.74 | 0.011496 | -0.3082 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3142 | 5.2986 | 254.42 | 0.050429 | 1.4035 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1397 | 30913 | 13649. | 2.5147 | 7.0085 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 31567 | 15835. | 2.8025 | 8.6943 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 129.28 | 335.75 | -0.41309 | 0.02316 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 0.26481 | 256.14 | -0.041575 | 1.5298 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 84331 | 11494. | -0.39424 | -1.4177 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 13 | 81865 | 9439.4 | 0.23985 | -0.89755 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | 90110 | 14462. | -0.0049795 | -1.243 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | 27.56 | 144.31 | -0.81556 | -0.51884 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | -10.92 | 219.38 | -0.0099333 | -1.2589 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | 16939 | 8493.1 | 2.8206 | 10.544 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | -13.94 | 80.014 | -0.035228 | 1.6622 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136376 | -5.4963 | 82.882 | -0.18879 | 1.4084 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 17059 | 8594.9 | 2.7964 | 10.293 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 34.143 | 61.450 | 0.50627 | 2.1007 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136376 | 19.189 | 80.490 | 0.12161 | 1.4915 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 18082 | 10410. | 2.4962 | 7.5952 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 34.143 | 61.450 | 0.50627 | 2.1007 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136376 | 19.189 | 80.490 | 0.12161 | 1.4915 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 80.829 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1.011 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1659.5 | 238.12 | 0.6 | -4.3741 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 19.681 | 97.197 | 2.45 | -4.1864 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 211.03 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | 1937.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -8.3867 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -22.206 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136376 | -10563 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 136376 | 9760.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 136376 | 81.634 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 136376 | 3936.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 136376 | 20.876 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136796 | 17359 | 9055.5 | 2.8508 | 10.652 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136796 | -4.6036 | 71.553 | -0.17662 | 2.0123 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136796 | -5.5253 | 74.508 | -0.18715 | 1.663 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136796 | 17731 | 9324.1 | 2.781 | 10.04 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136796 | 37.828 | 62.500 | -0.82944 | 5.2266 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136796 | 15.575 | 78.324 | -0.50448 | 2.2621 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136796 | 17625 | 10028. | 2.3336 | 6.3013 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136796 | 37.828 | 62.500 | -0.82944 | 5.2266 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136796 | 15.575 | 78.324 | -0.50448 | 2.2621 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 105.64 | 159.98 | 1.2166 | -5.2966 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 2.5018 | 114.43 | 0.74791 | -0.3774 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 2911.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 12.238 | 105.91 | 0.31785 | 2.3467 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 191.34 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | 2419.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | -77.133 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | -9.314 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136796 | -10441 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 136796 | 516.28 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 136796 | -3.0725 | 52.548 | -3.2687 | -1.5219 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 136796 | 484.43 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 136796 | -3.4112 | 53.931 | -2.8965 | -0.89493 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 86 | 19857 | 10752. | 1.8321 | 3.8643 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 18453 | 10170. | 2.4679 | 7.7096 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 4.8731 | 36.560 | 0.19216 | -0.20279 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 86 | 2.2955 | 37.093 | -0.45221 | 0.23154 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1012 | 20239 | 11299. | 1.9287 | 4.054 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 19827 | 11134. | 2.1209 | 4.9696 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 1.9458 | 50.217 | -0.6498 | 4.0624 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1012 | 0.18708 | 52.409 | -0.53509 | 2.5686 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 152 | 48901 | 10049. | 0.86137 | 0.16046 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 152 | 47930 | 10803. | 1.0543 | 0.46518 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 152 | 7.3005 | 36.772 | -0.35418 | 1.6318 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 152 | -0.21019 | 34.620 | -0.10271 | -0.44654 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 152 | 47669 | 10351. | 1.062 | 0.622 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | 48381 | 10958. | 0.98026 | 0.24353 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | 7.0239 | 37.624 | -0.36203 | 1.7438 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 152 | -0.13704 | 35.446 | -0.077016 | -0.46921 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 19972 | 6388.8 | 0.44883 | -1.2322 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 12 | 19073 | 8620.5 | 0.43597 | -1.4854 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | -36.975 | 105.06 | -0.77759 | -1.1583 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | 26.757 | 59.779 | -0.85686 | 0.17629 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 18518 | 8908.4 | 1.459 | 2.4853 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 19093 | 9185.5 | 1.2854 | 1.7655 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | -9.0805 | 69.642 | -1.1869 | 2.5521 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 0.52266 | 61.164 | -1.1004 | 1.4363 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 21684 | 12530. | 1.7113 | 2.7107 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6055 | 18509 | 10155. | 2.4101 | 7.0261 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 3.7774 | 48.883 | -0.26919 | 3.0639 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 2.3294 | 49.394 | -0.18253 | 1.8061 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 19533 | 11029. | 2.1464 | 5.1621 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 18423 | 10009. | 2.4064 | 7.0904 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 3.876 | 51.824 | -0.30041 | 3.0246 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 2.0463 | 51.687 | -0.17523 | 1.8649 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 73002 | 3496.5 | -0.24138 | -1.4398 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | 72870 | 3874.3 | 0.20761 | -1.2004 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -3.1432 | 26.800 | 0.38164 | -0.71397 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -4.7318 | 28.473 | 0.2784 | -1.468 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 72600 | 3710.1 | 0.27275 | -1.2593 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | 72881 | 3868.3 | 0.20945 | -1.1996 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -3.3493 | 26.142 | 0.44053 | -0.62823 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -5.8836 | 28.675 | 0.37652 | -1.4469 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1065 | 34702 | 16189. | 2.0342 | 4.7295 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1065 | -203.03 | 302.01 | 0.51531 | 1.5662 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1065 | 8.3519 | 285.92 | -0.026718 | 1.4561 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1065 | 8906.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1065 | -182.77 | 311.32 | -0.083597 | 0.91518 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1065 | -53.271 | 334.31 | 0.64151 | 1.9451 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1065 | 36722 | 16418. | 1.5504 | 2.6685 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1065 | -182.77 | 311.32 | -0.083597 | 0.91518 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1065 | -53.271 | 334.31 | 0.64151 | 1.9451 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | 1591.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | 518.35 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | -30062 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | -8088.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | -7757.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | 14118 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | 446.91 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | -54.278 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1065 | -4681.4 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 1065 | -436.87 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 1065 | 20.613 | 242.87 | 0.19258 | 1.6241 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 1065 | -436.84 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 1065 | 20.875 | 242.77 | 0.19202 | 1.6098 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2315 | 33088 | 14648. | 2.0765 | 5.2446 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2315 | 352.17 | 215.26 | -0.096108 | 5.0498 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2315 | 39.727 | 254.94 | 0.12257 | 1.4653 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2315 | 43194 | 20674. | 1.075 | 0.40119 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2315 | 305.13 | 139.72 | -2.4381 | 17.167 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2315 | 23.513 | 188.67 | 0.092185 | 7.2624 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2315 | 37399 | 15253. | 1.1895 | 0.85412 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2315 | 305.13 | 139.72 | -2.4381 | 17.167 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2315 | 23.513 | 188.67 | 0.092185 | 7.2624 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | 2449.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | -338.65 | 366.98 | 3.5089 | 8.3509 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | 18745 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | -23.908 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | -381.23 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | 8373.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | 1636 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | -56.603 | 499.52 | 1.8275 | 0.32608 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2315 | 35883 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 2315 | 436.35 | 196.54 | 2.8868 | -5.0458 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 2315 | 20.349 | 275.10 | -0.26106 | 2.1541 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 2315 | 436.44 | 196.51 | 2.888 | -5.0698 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 2315 | 20.112 | 275.08 | -0.26102 | 2.1518 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 64 | 30242 | 9751.3 | 1.7183 | 3.064 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 31984 | 12741. | 2.4563 | 9.8243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 26.561 | 331.54 | 0.27379 | -1.1388 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 65 | 21.208 | 224.17 | 0.056967 | -0.59596 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 287 | 34622 | 15050. | 1.7819 | 3.1948 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 288 | 34797 | 15098. | 1.8423 | 3.6892 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 288 | 153.21 | 285.44 | -0.48771 | -0.21106 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 288 | 22.843 | 260.39 | -0.47228 | 1.7244 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 370 | 52234 | 15020. | 1.2284 | 0.91716 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 376 | 52770 | 16991. | 1.5895 | 2.5737 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 376 | 34.224 | 279.80 | 0.39315 | 0.75454 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 376 | 14.663 | 230.63 | -0.027135 | 0.81501 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 151 | 51644 | 16205. | 1.3033 | 0.82829 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 154 | 51650 | 17608. | 1.6445 | 2.3187 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 154 | 127.12 | 298.74 | 0.73156 | 1.5139 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 154 | 21.053 | 250.95 | -0.83279 | 3.1874 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 29837 | 11274. | 1.332 | 0.50525 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 28 | 30978 | 9845.9 | 1.4405 | 1.3182 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | -12.559 | 351.06 | -0.062359 | -1.2045 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | 71.375 | 212.06 | -0.96644 | 0.70164 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 28791 | 7402.2 | 0.95983 | 0.53884 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 28015 | 6650.5 | 0.93559 | 0.77444 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 78.684 | 395.69 | -0.61204 | -1.1052 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 67.737 | 205.05 | -0.94752 | 0.43607 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3794 | 35419 | 15149. | 1.6134 | 2.4834 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3831 | 35139 | 15834. | 2.0309 | 5.0461 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3831 | 44.595 | 331.71 | -0.089652 | -0.15673 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3831 | 22.22 | 239.98 | 0.064771 | 1.5302 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1734 | 33885 | 14202. | 1.8343 | 3.7217 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1746 | 34141 | 15327. | 2.0989 | 5.2486 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1746 | 152.62 | 305.90 | -0.52516 | 0.37749 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1746 | 24.274 | 243.26 | -0.028483 | 1.6345 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 56 | 77533 | 9604.3 | 0.69528 | -0.68628 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 84605 | 14943. | 0.61108 | -0.89897 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 14.036 | 204.19 | -0.27017 | -0.46031 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 9.4138 | 200.10 | 0.094346 | -0.82414 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 23 | 78472 | 9269.7 | 0.55853 | -0.82584 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 29 | 83192 | 14491. | 0.67768 | -0.72923 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 29 | 32.676 | 155.34 | -0.67042 | -0.51875 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 29 | -16.514 | 195.61 | -0.099123 | -1.2083 | RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1116 | 22005 | 13480. | 2.111 | 4.6144 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1116 | 25980 | 20543. | 2.6629 | 7.3691 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1332 | 26751 | 21012. | 2.4374 | 6.2091 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1332 | 14783 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6276 | 23190 | 16837. | 2.8924 | 9.713 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6276 | 20505 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28093 | 21888. | 2.2974 | 4.9916 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16741 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 626 | 33795 | 14116. | 1.1405 | 0.37808 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 626 | 43104 | 25073. | 1.3469 | 0.77862 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 703 | 46316 | 27162. | 1.1866 | 0.34552 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 703 | 16330 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3386 | 40541 | 23741. | 1.5865 | 1.6196 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3386 | 42298 | 22351. | 1.3797 | 0.14691 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 719 | 45431 | 26960. | 1.1756 | 0.1599 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 719 | 40312 | 25216. | 1.1618 | -0.35317 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 26 | 18760 | 6763.0 | 1.3405 | 1.6424 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 26 | 20917 | 7890.1 | 0.93293 | -0.015381 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1110 | 23695 | 13793. | 1.7055 | 2.9499 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1110 | 28268 | 19912. | 1.8903 | 3.9853 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1382 | 29858 | 20156. | 1.5634 | 2.4807 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1382 | 56448 | 32844. | -0.12615 | -1.3825 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 50 | 23673 | 10479. | 0.82994 | 0.77987 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 50 | 20714 | 10559. | 1.954 | 3.693 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6280 | 26705 | 19058. | 2.0059 | 4.3882 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6280 | 30108 | 9067.8 | -9.7661 | -113.44 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1428 | 32099 | 22045. | 1.4925 | 1.9106 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1428 | 14663 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 23 | 31505 | 7828.6 | 0.30339 | 0.084104 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 23 | 33777 | 8286.9 | 0.56523 | 0.84402 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 755 | 36474 | 14547. | 1.0171 | 0.27248 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 755 | 44925 | 21972. | 1.158 | 0.80711 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 925 | 44852 | 20923. | 1.2592 | 1.4295 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 925 | 43826 | 27898. | 1.7757 | 1.6211 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 30 | 36033 | 12831. | 0.62106 | -1.1291 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 30 | 27909 | 10147. | 1.6989 | 1.7925 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 4136 | 42446 | 20824. | 1.4255 | 1.6994 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 4136 | 38935 | 11693. | 0.57306 | -1.482 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 909 | 47885 | 22832. | 1.0762 | 0.62158 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 909 | 38417 | 19908. | 1.2673 | 0.65248 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60859 | 16786. | 0.57601 | -0.618 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.654 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20728 | 10954. | 2.9185 | 12.259 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9594.4 | 3.3084 | 16.462 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9634.4 | 3.2957 | 16.319 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32063 | 14264. | 2.2232 | 5.357 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83833 | 10370. | -0.17289 | -1.1678 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4699 | 31656 | 14387. | 2.3291 | 5.7474 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4697 | 34916 | 16266. | 1.877 | 3.276 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4699 | 31753 | 14457. | 2.3124 | 5.6442 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4699 | 31828 | 14510. | 2.2997 | 5.5666 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56228 | 18268. | 0.68897 | -0.51698 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 863 | 57366 | 14654. | 0.85663 | 0.076788 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8980 | 19630 | 11918. | 2.5473 | 8.1805 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8980 | 23133 | 13529. | 2.0669 | 5.1598 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8980 | 19731 | 11981. | 2.5281 | 8.0457 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8980 | 19808 | 12029. | 2.5137 | 7.9448 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3570 | 36405 | 15341. | 1.4099 | 1.9408 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80943 | 10071. | 0.17153 | -0.97552 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 5837 | 35123 | 14772. | 1.5962 | 2.627 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5835 | 38274 | 15691. | 1.3458 | 1.6631 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5837 | 35225 | 14813. | 1.5863 | 2.5847 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5837 | 35302 | 14844. | 1.5789 | 2.5531 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2972 | 53143 | 15479. | 0.92202 | 0.24 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 449 | 60440 | 16886. | 0.58269 | -0.60544 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.654 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20662 | 10930. | 2.9241 | 12.32 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18082 | 9593.6 | 3.3086 | 16.465 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18139 | 9633.0 | 3.2962 | 16.323 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31863 | 14209. | 2.2365 | 5.4534 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 304 | 83573 | 10498. | -0.16445 | -1.1653 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4726 | 31638 | 14370. | 2.3308 | 5.76 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4726 | 34842 | 16225. | 1.8842 | 3.3124 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4726 | 31734 | 14439. | 2.3142 | 5.6577 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4726 | 31807 | 14492. | 2.3017 | 5.5808 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1722 | 55953 | 18288. | 0.69748 | -0.5008 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 921 | 57066 | 14700. | 0.85923 | 0.092078 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8980 | 19630 | 11918. | 2.5473 | 8.1805 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8980 | 23051 | 13504. | 2.0745 | 5.2021 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8980 | 19729 | 11980. | 2.5284 | 8.0477 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8980 | 19805 | 12027. | 2.5142 | 7.9482 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3713 | 36202 | 15336. | 1.4154 | 1.9654 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 466 | 80644 | 10189. | 0.1727 | -0.96319 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 5862 | 35094 | 14764. | 1.5985 | 2.6344 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5862 | 38199 | 15679. | 1.35 | 1.6756 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5862 | 35194 | 14804. | 1.5887 | 2.5924 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5862 | 35271 | 14835. | 1.5813 | 2.5609 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 3083 | 52963 | 15494. | 0.92439 | 0.2493 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60795 | 16777. | 0.58666 | -0.60355 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9539.5 | 3.3209 | 16.612 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20738 | 10959. | 2.9128 | 12.207 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9592.2 | 3.3042 | 16.421 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9632.2 | 3.2916 | 16.277 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32071 | 14277. | 2.2179 | 5.3201 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83741 | 10350. | -0.16349 | -1.1648 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4699 | 31761 | 14472. | 2.3097 | 5.6238 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4697 | 34958 | 16296. | 1.8722 | 3.2475 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4699 | 31858 | 14541. | 2.2931 | 5.5223 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4699 | 31933 | 14594. | 2.2805 | 5.446 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56178 | 18224. | 0.68899 | -0.51183 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 863 | 57322 | 14631. | 0.85798 | 0.078133 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8980 | 19642 | 11931. | 2.542 | 8.1393 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8980 | 23166 | 13550. | 2.0592 | 5.1161 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8980 | 19742 | 11995. | 2.5229 | 8.0049 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8980 | 19820 | 12043. | 2.5084 | 7.9043 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3570 | 36433 | 15362. | 1.4043 | 1.917 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80976 | 10001. | 0.16649 | -0.9657 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 5837 | 35216 | 14807. | 1.5875 | 2.5885 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5835 | 38301 | 15702. | 1.3448 | 1.6549 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5837 | 35318 | 14848. | 1.5777 | 2.5469 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5837 | 35395 | 14878. | 1.5703 | 2.5157 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2972 | 53141 | 15460. | 0.91653 | 0.23068 | RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28855 |-1.5206e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 676243 | 3.9301e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 212606 | 3.3911e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39496 | 1.0725 | 0.90049 | 0.3454 | -0.41294 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39047 | 0.048658 | 0.0067284 | -2.5633 | 6.3475 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29119 | 5.6522e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 386919 | 3.1935e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 116245 |-6.3101e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21722 | 1.2016 | 1.0254 | 0.54545 | -0.091614 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21210 | 0.028147 | 0.0033289 | -2.3474 | 5.1959 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 56211 | -3.708e+12 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 853881 | 3.0866e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 690620 |-3.9023e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 853881 | 3.0866e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 853881 | 3.0866e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 242807 | 1.4237e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 40557 | 1.1112 | 0.93305 | 0.3662 | -0.49456 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 40101 | 0.048718 | 0.0066565 | -2.6058 | 6.6321 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 31409 |-6.0968e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 564062 | 5.0131e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 492327 |-2.6224e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 564062 | 5.0131e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 564062 | 5.0131e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 202551 |-2.6411e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 27485 | 1.2471 | 1.0394 | 0.41599 | -0.53322 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 26782 | 0.028142 | 0.0033409 | -2.4317 | 5.8021 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | @@ -1955,8 +2064,8 @@ RichRecPixelQC INFO 1D profile histograms in directory " | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14480 | 1.6814 | 0.51037 | 0.19205 | -0.64462 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14480 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12949 | 0.10504 | 0.10306 | 1.0467 | 0.11002 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14329 | 21427 | 13159. | 2.5925 | 8.778 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14412 | 957.31 | 745.24 | 2.7861 | 12.022 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 15084 | 1.5897 | 0.51492 | 0.3051 | -0.55148 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 15084 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 13339 | 0.093789 | 0.10272 | 1.1929 | 0.40833 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14979 | 24196 | 15072. | 1.7644 | 3.5539 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 15024 | 977.12 | 730.46 | 2.699 | 11.893 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.x86_64_v3-opt index dff36dea178e782972aa07a38b56b31a12b26ac1..c846b788d5a26c8d0840e211f6c4d9ae3cc8f69d 100644 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.x86_64_v3-opt +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC.ref.x86_64_v3-opt @@ -5,8 +5,8 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_ab47e101 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 893 | 18760 | 21.008 | - | "nTracksSelected" | 893 | 18760 | 21.008 | + | "nTracksInput" | 893 | 20146 | 22.560 | + | "nTracksSelected" | 893 | 20146 | 22.560 | DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 1000 | @@ -16,21 +16,21 @@ HLTControlFlowMgr INFO Number of counters : 1 | "Processed events" | 1000 | PrForwardTrackingVelo_5399212b INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 892 | 94155 | 105.55 | - | "Created long tracks" | 892 | 1008 | 1.1300 | + | "Accepted input tracks" | 892 | 97776 | 109.61 | + | "Created long tracks" | 892 | 1018 | 1.1413 | | "Empty input tracks" | 1 | - | "Input tracks" | 892 | 99807 | 111.89 | - | "Number of candidate bins per track" | 94155 | 49174 | 0.52227 | 1.1845 | 0.0000 | 19.000 | - | "Number of complete candidates/track 1st Loop" | 25543 | 770 | 0.030145 | 0.17236 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 24988 | 254 | 0.010165 | 0.10071 | 0.0000 | 2.0000 | - | "Number of x candidates per track 1st Loop" | 25543 | 5702 | 0.22323 | 0.48713 | - | "Number of x candidates per track 2nd Loop" | 24988 | 19514 | 0.78093 | 1.0434 | - | "Percentage second loop execution" | 25543 | 24988 | 0.97827 | - | "Removed duplicates" | 892 | 13 | 0.014574 | + | "Input tracks" | 892 | 102669 | 115.10 | + | "Number of candidate bins per track" | 97776 | 50724 | 0.51878 | 1.1762 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 26479 | 778 | 0.029382 | 0.16977 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 25916 | 266 | 0.010264 | 0.10117 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 26479 | 5941 | 0.22437 | 0.48809 | + | "Number of x candidates per track 2nd Loop" | 25916 | 20160 | 0.77790 | 1.0395 | + | "Percentage second loop execution" | 26479 | 25916 | 0.97874 | + | "Removed duplicates" | 892 | 24 | 0.026906 | PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 606 | 2429 | 4.0083 | - | "#tracks with hits added" | 606 | + | "#UT hits added" | 622 | 2509 | 4.0338 | + | "#tracks with hits added" | 622 | PrHybridSeeding_46e539c7 INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Created T2x1 three-hit combinations in case 0" | 449083 | 251721 | 0.56052 | 0.54375 | 0.0000 | 3.0000 | @@ -56,32 +56,32 @@ PrHybridSeeding_46e539c7 INFO Number of counters : 21 | "Created two-hit combinations in case 2" | 243182 | 1454837 | 5.9825 | 4.6460 | 0.0000 | 83.000 | PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 137 | - | "chi2 cut" | 348 | - | "nIterations" | 1008 | 2337 | 2.3185 | - | "nOutlierIterations" | 871 | 915 | 1.0505 | - | "nTracksInput" | 893 | 1008 | 1.1288 | - | "nTracksOutput" | 893 | 523 | 0.58567 | + | "Pre outlier chi2 cut" | 143 | + | "chi2 cut" | 338 | + | "nIterations" | 1018 | 2352 | 2.3104 | + | "nOutlierIterations" | 875 | 907 | 1.0366 | + | "nTracksInput" | 893 | 1018 | 1.1400 | + | "nTracksOutput" | 893 | 537 | 0.60134 | PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 214 | - | "chi2 cut" | 4093 | - | "nIterations" | 18760 | 37834 | 2.0167 | - | "nOutlierIterations" | 18546 | 17205 | 0.92769 | - | "nTracksInput" | 893 | 18760 | 21.008 | - | "nTracksOutput" | 893 | 14453 | 16.185 | + | "Pre outlier chi2 cut" | 260 | + | "chi2 cut" | 3852 | + | "nIterations" | 20146 | 40663 | 2.0184 | + | "nOutlierIterations" | 19886 | 16678 | 0.83868 | + | "nTracksInput" | 893 | 20146 | 22.560 | + | "nTracksOutput" | 893 | 16034 | 17.955 | PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | PrMatchNN_959da4d3 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 888 | 227734.6 | 256.46 | - | "#MatchingMLP" | 26141 | 23314.76 | 0.89188 | - | "#MatchingTracks" | 888 | 18760 | 21.126 | + | "#MatchingChi2" | 888 | 237910.8 | 267.92 | + | "#MatchingMLP" | 28014 | 24969.31 | 0.89132 | + | "#MatchingTracks" | 888 | 20146 | 22.687 | PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 14824 | 60046 | 4.0506 | - | "#tracks with hits added" | 14824 | + | "#UT hits added" | 15022 | 60938 | 4.0566 | + | "#tracks with hits added" | 15022 | PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Empty Long tracks" | 10 | @@ -119,32 +119,32 @@ PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | PrTrackAssociator_825c239a INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Efficiency" | 14480 | 13889 |( 95.91851 +- 0.1644282)% | - | "MC particles per track" | 13889 | 16247 | 1.1698 | + |*"Efficiency" | 15080 | 14485 |( 96.05438 +- 0.1585316)% | + | "MC particles per track" | 14485 | 16950 | 1.1702 | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | RiMCOpticalPhotonsLong INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"Charge mis-match between reco track and matched MCParticle"| 272887 | 2 |(0.0007329041 +- 0.0005182396)% | + |*"Charge mis-match between reco track and matched MCParticle"| 276676 | 2 |(0.0007228672 +- 0.0005111424)% | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 893 | 4037336 | 4521.1 | 4086.1 | 0.0000 | 22184. | - | "# Rich1Gas Segments" | 893 | 8922 | 9.9910 | 6.1366 | 0.0000 | 35.000 | - | "# Rich2Gas Photons" | 893 | 1171086 | 1311.4 | 1200.6 | 0.0000 | 7025.0 | - | "# Rich2Gas Segments" | 893 | 4849 | 5.4300 | 3.6555 | 0.0000 | 20.000 | - | "# Selected Tracks" | 893 | 11366 | 12.728 | 7.3149 | 0.0000 | 36.000 | - |*"RICH selection efficiency" | 14480 | 11366 |( 78.49448 +- 0.3414368)% | + | "# Rich1Gas Photons" | 893 | 4096902 | 4587.8 | 4192.6 | 0.0000 | 22117. | + | "# Rich1Gas Segments" | 893 | 9011 | 10.091 | 6.2913 | 0.0000 | 37.000 | + | "# Rich2Gas Photons" | 893 | 1465851 | 1641.5 | 1452.7 | 0.0000 | 8163.0 | + | "# Rich2Gas Segments" | 893 | 5941 | 6.6529 | 4.2382 | 0.0000 | 23.000 | + | "# Selected Tracks" | 893 | 12223 | 13.688 | 7.8295 | 0.0000 | 39.000 | + |*"RICH selection efficiency" | 15080 | 12223 |( 81.05438 +- 0.3191112)% | TBTCMatch_e6402d48 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 13963 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 13963 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 13963 | + |*"BadInput" | 14569 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 14569 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 14569 | TBTC_Forward_c95b0b3d INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 517 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 517 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 517 | + |*"BadInput" | 511 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 511 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 511 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# Converted Clusters" | 893 | 837869 | 938.26 | @@ -187,1233 +187,1341 @@ VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | - | "Nb of Produced Tracks" | 893 | 187893 | 210.41 | + | "Nb of Produced Tracks" | 893 | 190621 | 213.46 | RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 4180853 | 5.9265e-05 | 0.0013711 | -0.046527 | -0.97252 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 3183651 | 5.7992e-05 | 0.0013669 | -0.046238 | -0.96484 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3594935 | 5.5692e-05 | 0.0013931 | -0.047973 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3594935 | 5.5692e-05 | 0.0013931 | -0.047973 | -1.011 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3935238 | 8.753e-06 | 0.0015275 |-0.00043984 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2971670 | 1.3329e-06 | 0.0015270 | 0.0065692 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3349324 | 2.1235e-05 | 0.0015279 | -0.014526 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3349324 | 2.1235e-05 | 0.0015279 | -0.014526 | -1.2459 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245615 | 0.00014928 | 0.0010291 | 0.011722 | -0.50969 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211981 | 0.00015715 | 0.0010208 | 0.016298 | -0.50468 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245615 | 0.00014928 | 0.0010291 | 0.011722 | -0.50969 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245611 | 0.00012883 | 0.0010472 | -0.020642 | -0.48913 | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245611 | 0.00012883 | 0.0010472 | -0.020642 | -0.48913 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3935238 | 3.1315 | 1.8200 | 0.010309 | -1.1947 | - | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245615 | 3.1258 | 1.8118 | 0.013536 | -1.1892 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3935238 | 0.039779 | 0.011084 | -0.54645 | -0.53053 | - | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245615 | 0.049953 | 0.0047068 | -3.5154 | 14.358 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1326853 | 1.6611e-05 | 0.0010193 | -0.001428 | -0.8244 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1094808 | 1.4706e-05 | 0.0010172 | 0.0010188 | -0.81661 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1135479 | 1.3595e-05 | 0.0010422 | -0.0041053 | -0.89367 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1135479 | 1.3595e-05 | 0.0010422 | -0.0041053 | -0.89367 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1226351 | 2.0043e-05 | 0.0011532 | -0.012288 | -1.1997 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1003010 | 1.7004e-05 | 0.0011527 | -0.007546 | -1.1994 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1034977 | 2.8769e-05 | 0.0011582 | -0.026505 | -1.2111 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1034977 | 2.8769e-05 | 0.0011582 | -0.026505 | -1.2111 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | 8.8494e-06 | 0.00061758 | 0.06622 | 0.17351 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91798 | 9.5577e-06 | 0.00061289 | 0.06364 | 0.19967 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85326 | 4.7566e-06 | 0.00060849 | 0.072336 | 0.24928 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15176 | 3.1558e-05 | 0.00066532 | 0.023007 | -0.1887 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 |-2.5721e-05 | 0.00065026 | -0.066517 | 0.23747 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 |-2.5721e-05 | 0.00065026 | -0.066517 | 0.23747 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1226351 | 3.1509 | 1.8138 | -0.008666 | -1.1876 | - | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100502 | 3.1463 | 1.8161 | -0.0023176 | -1.2018 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1226351 | 0.024617 | 0.0055230 | -0.43782 | -0.68364 | - | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100502 | 0.028819 | 0.0022799 | -3.1805 | 12.157 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 4230073 | 6.7745e-05 | 0.0013508 | -0.058785 | -0.91181 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 3229575 | 6.646e-05 | 0.0013464 | -0.059492 | -0.90264 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3644900 | 5.6477e-05 | 0.0013789 | -0.055513 | -0.9689 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3644900 | 5.6477e-05 | 0.0013789 | -0.055513 | -0.9689 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3981810 | 9.7362e-06 | 0.0015340 | 0.00077588 | -1.2594 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3015830 | 2.8307e-06 | 0.0015331 | 0.0075864 | -1.2589 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3396642 | 2.2875e-05 | 0.0015337 | -0.016126 | -1.2585 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3396642 | 2.2875e-05 | 0.0015337 | -0.016126 | -1.2585 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248263 | 0.00017172 | 0.00092768 | 0.069109 | -0.33222 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 213745 | 0.00017861 | 0.00091940 | 0.072249 | -0.32878 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248263 | 0.00017172 | 0.00092768 | 0.069109 | -0.33222 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248258 | 0.00012785 | 0.00096783 | -0.031292 | -0.25817 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 248258 | 0.00012785 | 0.00096783 | -0.031292 | -0.25817 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3981810 | 3.135 | 1.8170 | 0.0064026 | -1.19 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 248263 | 3.1314 | 1.8212 | 0.0073376 | -1.1978 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3981810 | 0.039885 | 0.011032 | -0.55471 | -0.5103 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 248263 | 0.050047 | 0.0045501 | -3.7012 | 15.952 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1668586 | 1.7212e-05 | 0.0010206 | -0.0017751 | -0.82902 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1384751 | 1.5497e-05 | 0.0010186 |-0.00024946 | -0.82121 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1426686 | 9.6078e-06 | 0.0010474 | -0.0035101 | -0.90809 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1426686 | 9.6078e-06 | 0.0010474 | -0.0035101 | -0.90809 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1542467 | 2.2825e-05 | 0.0011536 | -0.017427 | -1.202 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1270737 | 1.9877e-05 | 0.0011533 | -0.013268 | -1.2013 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1300567 | 3.086e-05 | 0.0011582 | -0.03085 | -1.2114 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1300567 | 3.086e-05 | 0.0011582 | -0.03085 | -1.2114 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126119 | 4.2843e-06 | 0.00061290 | 0.079657 | 0.18141 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 114014 | 5.5376e-06 | 0.00060997 | 0.073989 | 0.20341 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 108769 | 8.925e-07 | 0.00060637 | 0.084862 | 0.24388 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 17350 | 2.5317e-05 | 0.00065153 | 0.040302 | -0.15496 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126119 |-4.7014e-05 | 0.00066445 | -0.13565 | 0.2529 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 126119 |-4.7014e-05 | 0.00066445 | -0.13565 | 0.2529 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1542467 | 3.1749 | 1.8176 | -0.031576 | -1.1866 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 126119 | 3.1433 | 1.8172 |-0.00014977 | -1.2042 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1542467 | 0.024593 | 0.0055551 | -0.44761 | -0.66757 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 126119 | 0.028777 | 0.0023585 | -3.0603 | 11.431 | RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 270 |-5.3514e-05 | 0.0021226 | 0.11675 | 0.36747 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113300 | 0.00047481 | 0.0028638 | -0.22749 | -0.81642 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 992 |-0.00022406 | 0.0020897 | 0.20649 | 0.36329 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2856 |-0.00012467 | 0.0023202 | 0.19806 | 0.016613 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9295 | 6.8966e-05 | 0.0025528 | 0.024392 | -0.37442 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31913 | 0.00030094 | 0.0026993 | -0.10241 | -0.58721 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152717 | 0.00040996 | 0.0028902 | -0.12617 | -0.85731 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 482695 | 7.6677e-05 | 0.0029828 | -0.021896 | -0.98982 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 546259 |-2.2905e-05 | 0.0029766 | 0.016768 | -0.98068 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 387559 | 1.1487e-05 | 0.0029415 | -0.027063 | -0.9386 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 270 |-5.3514e-05 | 0.0021226 | 0.11675 | 0.36747 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113300 | 0.00047481 | 0.0028638 | -0.22749 | -0.81642 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 992 |-0.00022406 | 0.0020897 | 0.20649 | 0.36329 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2856 |-0.00012467 | 0.0023202 | 0.19806 | 0.016613 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9295 | 6.8966e-05 | 0.0025528 | 0.024392 | -0.37442 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31913 | 0.00030094 | 0.0026993 | -0.10241 | -0.58721 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152717 | 0.00040996 | 0.0028902 | -0.12617 | -0.85731 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 482695 | 7.6677e-05 | 0.0029828 | -0.021896 | -0.98982 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 546259 |-2.2905e-05 | 0.0029766 | 0.016768 | -0.98068 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 387559 | 1.1487e-05 | 0.0029415 | -0.027063 | -0.9386 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3594935 | 3.1311 | 1.8195 | 0.010518 | -1.1943 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3594935 | 0.04062 | 0.011062 | -0.64955 | -0.45444 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 312 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 133485 | 0.00024358 | 0.0028939 | -0.049459 | -0.87917 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1137 | 0.00039639 | 0.0022026 | -0.40381 | 0.66214 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2875 | 0.00032267 | 0.0024641 | -0.22517 | -0.17321 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7364 | 0.00034162 | 0.0025748 | -0.12245 | -0.43333 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27925 | 0.00048213 | 0.0026828 | -0.3057 | -0.53821 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 152032 | 0.0005867 | 0.0028810 | -0.26997 | -0.81141 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 515234 | 0.00017888 | 0.0029849 | -0.09669 | -1.0003 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 589354 | 6.6603e-06 | 0.0029861 | -0.0093879 | -1.0033 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 437275 |-9.3081e-05 | 0.0029496 | 0.063371 | -0.94982 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 312 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 133485 | 0.00024358 | 0.0028939 | -0.049459 | -0.87917 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1137 | 0.00039639 | 0.0022026 | -0.40381 | 0.66214 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2875 | 0.00032267 | 0.0024641 | -0.22517 | -0.17321 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7364 | 0.00034162 | 0.0025748 | -0.12245 | -0.43333 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27925 | 0.00048213 | 0.0026828 | -0.3057 | -0.53821 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 152032 | 0.0005867 | 0.0028810 | -0.26997 | -0.81141 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 515234 | 0.00017888 | 0.0029849 | -0.09669 | -1.0003 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 589354 | 6.6603e-06 | 0.0029861 | -0.0093879 | -1.0033 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 437275 |-9.3081e-05 | 0.0029496 | 0.063371 | -0.94982 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 575321 | 5.1575e-05 | 0.0018626 | -0.019856 | -0.91839 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 575321 | 5.1575e-05 | 0.0018626 | -0.019856 | -0.91839 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 540636 | 4.3126e-05 | 0.0018750 | -0.014812 | -0.9432 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34685 | 0.00015627 | 0.0016984 | -0.063561 | -0.54761 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6050 | 1.4731e-05 | 0.0017884 | 0.0059079 | -0.77797 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15271 | 0.00036258 | 0.0018195 | -0.17453 | -0.85344 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4400 | 0.00026593 | 0.0018468 | -0.14059 | -0.85145 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1923 | 7.977e-05 | 0.0017409 | -0.0084694 | -0.62931 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13164 | 6.6249e-05 | 0.0018200 | 0.033947 | -0.87212 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32290 | 0.00010082 | 0.0018669 | -0.021227 | -0.93442 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58062 | 8.6664e-05 | 0.0018670 | -0.035012 | -0.92685 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 88448 |-1.1963e-05 | 0.0018627 | 0.017834 | -0.90538 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 99414 |-4.2199e-05 | 0.0018856 | 0.031074 | -0.94762 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103449 |-5.2753e-05 | 0.0018997 | 0.029258 | -0.98923 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 78864 | 8.3753e-05 | 0.0018839 | -0.054446 | -0.97458 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39301 | 0.00016413 | 0.0018604 | -0.073575 | -0.92523 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 900 | 0.00012991 | 0.0016715 | -0.0088747 | -0.51657 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1333 | 9.9533e-05 | 0.0017406 | -0.076272 | -0.64485 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 716 | 5.6762e-05 | 0.0017855 | -0.044364 | -0.67437 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 398 | 0.00011408 | 0.0015564 | 0.038773 | -0.072407 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1442 | 5.6297e-05 | 0.0016843 | 0.0097411 | -0.49437 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2690 | 0.0001815 | 0.0017182 | -0.087279 | -0.57256 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3637 | 0.00018343 | 0.0017294 | -0.12952 | -0.60496 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4948 | 0.0001547 | 0.0016957 | -0.056751 | -0.53364 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6060 | 0.00017559 | 0.0016764 | -0.032793 | -0.50151 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5973 | 0.00014242 | 0.0017160 | -0.078443 | -0.56003 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4096 | 0.0002139 | 0.0017007 | -0.10649 | -0.58336 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2492 | 0.00011464 | 0.0016195 | 0.034705 | -0.47387 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6950 | 3.2759e-05 | 0.0017712 | 0.00066663 | -0.74053 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16604 | 0.00034079 | 0.0018146 | -0.16434 | -0.84035 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5116 | 0.00023223 | 0.0018386 | -0.12316 | -0.82857 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2321 | 8.6755e-05 | 0.0017050 | -0.003224 | -0.53322 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14606 | 6.512e-05 | 0.0018051 | 0.031988 | -0.83503 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34980 | 0.00010839 | 0.0018536 | -0.027886 | -0.90567 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61699 | 9.3369e-05 | 0.0018579 | -0.041738 | -0.90809 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 93396 |-5.9525e-07 | 0.0018522 | 0.010999 | -0.88452 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 105474 |-2.5003e-05 | 0.0018709 | 0.02213 | -0.91921 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 109422 |-3.8998e-05 | 0.0018880 | 0.019831 | -0.9657 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 82960 | 9.1237e-05 | 0.0018741 | -0.058796 | -0.9556 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41793 | 0.00016096 | 0.0018460 | -0.067799 | -0.90115 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 560158 | 6.3555e-05 | 0.0018578 | -0.02468 | -0.90395 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 560158 | 6.3555e-05 | 0.0018578 | -0.02468 | -0.90395 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 528960 | 5.5063e-05 | 0.0018693 | -0.020712 | -0.92686 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31198 | 0.00017805 | 0.0016907 | -0.051914 | -0.5374 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1412 | 0.00011413 | 0.0018201 | 0.029627 | -0.75077 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30551 | 9.5221e-05 | 0.0018698 | -0.020865 | -0.90624 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11839 | 0.00013746 | 0.0017863 | -0.036648 | -0.76401 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5215 |-2.4389e-05 | 0.0018227 | -0.0081077 | -0.82145 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3597 | 0.00024282 | 0.0018046 | -0.095063 | -0.86224 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14710 | 0.00038331 | 0.0018323 | -0.17129 | -0.8706 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41508 | 0.00015405 | 0.0018778 | -0.065133 | -0.94561 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79293 | 8.3077e-05 | 0.0018889 | -0.035592 | -0.97349 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101821 |-3.5254e-05 | 0.0018806 | 0.017402 | -0.96017 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 98293 |-3.4106e-05 | 0.0018826 | 0.022748 | -0.93831 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86920 | 2.81e-06 | 0.0018533 | -0.0069874 | -0.89634 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53801 | 0.000131 | 0.0018396 | -0.046314 | -0.87124 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 338 | -5.457e-05 | 0.0014953 | 0.013543 | -0.27221 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2434 | 0.00026306 | 0.0017449 | -0.11734 | -0.59205 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1346 | 5.2329e-05 | 0.0017142 | 0.072203 | -0.61327 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 937 | 4.6497e-05 | 0.0016269 | 0.011146 | -0.32901 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 561 | 0.00028353 | 0.0015550 | 0.0069407 | -0.51486 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1345 | 4.1571e-05 | 0.0016974 | 0.076492 | -0.53098 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2205 | 0.0001631 | 0.0016812 | -0.048693 | -0.49937 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3627 | 0.00019943 | 0.0017245 | -0.069361 | -0.62205 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5198 | 0.00014395 | 0.0016586 | -0.071333 | -0.4809 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5271 | 0.00021698 | 0.0017083 | -0.067483 | -0.57619 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4414 | 0.00024386 | 0.0016645 | -0.10115 | -0.47685 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3522 | 0.00014923 | 0.0017064 | -0.011451 | -0.54712 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1750 | 7.6325e-05 | 0.0017539 | 0.045042 | -0.64401 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32985 | 0.00010961 | 0.0018600 | -0.030406 | -0.88398 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13185 | 0.00012786 | 0.0017785 | -0.024517 | -0.7496 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6152 |-1.1872e-05 | 0.0017899 | -0.0092085 | -0.74744 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4158 | 0.00024904 | 0.0017688 | -0.087208 | -0.8094 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16055 | 0.00035315 | 0.0018233 | -0.14699 | -0.85581 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43713 | 0.00015456 | 0.0018673 | -0.064666 | -0.92464 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 82920 | 8.9161e-05 | 0.0018808 | -0.038496 | -0.95769 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 107019 |-2.3758e-05 | 0.0018677 | 0.0095753 | -0.93598 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 103564 |-1.5815e-05 | 0.0018716 | 0.013009 | -0.91707 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 91334 | 1.7723e-05 | 0.0018431 | -0.015613 | -0.87569 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 57323 | 0.00013221 | 0.0018310 | -0.044715 | -0.8522 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1135479 | 5.7494e-05 | 0.0018602 | -0.022255 | -0.91129 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1135479 | 5.7494e-05 | 0.0018602 | -0.022255 | -0.91129 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1069596 | 4.9042e-05 | 0.0018722 | -0.017751 | -0.93515 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 65883 | 0.00016661 | 0.0016948 | -0.058157 | -0.54256 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1135479 | 3.1505 | 1.8140 | -0.0081382 | -1.1888 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1135479 | 0.025019 | 0.0054416 | -0.57538 | -0.57008 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1688342 | 0.00011497 | 0.0029473 | -0.048574 | -0.94728 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1688342 | 0.00011497 | 0.0029473 | -0.048574 | -0.94728 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1688342 | 0.00011497 | 0.0029473 | -0.048574 | -0.94728 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.000803 | 0.0013709 | 1.0791 | 1.7482 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 | 0.00021703 | 0.0021841 | -0.32406 | 0.40887 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 116219 | 0.00032148 | 0.0028644 | -0.11129 | -0.83916 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979 | 0.00021683 | 0.0021171 | -0.0013752 | 0.26013 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2767 | 0.00018944 | 0.0023018 | -0.18104 | 0.16847 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9279 | 0.00024051 | 0.0025267 | -0.11169 | -0.32247 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30280 | 0.00031301 | 0.0027094 | -0.11091 | -0.61178 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 143178 | 0.00044464 | 0.0028776 | -0.15572 | -0.84712 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 467292 | 0.00013219 | 0.0029887 | -0.056181 | -0.99443 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 536702 | 2.1828e-06 | 0.0029813 | -0.0079096 | -0.99509 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 381317 |-2.5171e-05 | 0.0029382 | 0.0023869 | -0.93624 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.000803 | 0.0013709 | 1.0791 | 1.7482 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 | 0.00021703 | 0.0021841 | -0.32406 | 0.40887 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 116219 | 0.00032148 | 0.0028644 | -0.11129 | -0.83916 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979 | 0.00021683 | 0.0021171 | -0.0013752 | 0.26013 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2767 | 0.00018944 | 0.0023018 | -0.18104 | 0.16847 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9279 | 0.00024051 | 0.0025267 | -0.11169 | -0.32247 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 30280 | 0.00031301 | 0.0027094 | -0.11091 | -0.61178 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 143178 | 0.00044464 | 0.0028776 | -0.15572 | -0.84712 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 467292 | 0.00013219 | 0.0029887 | -0.056181 | -0.99443 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 536702 | 2.1828e-06 | 0.0029813 | -0.0079096 | -0.99509 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 381317 |-2.5171e-05 | 0.0029382 | 0.0023869 | -0.93624 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3644900 | 0.0001121 | 0.0029492 | -0.047858 | -0.9474 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3644900 | 0.0001121 | 0.0029492 | -0.047858 | -0.9474 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3644900 | 0.0001121 | 0.0029492 | -0.047858 | -0.9474 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3644900 | 3.1348 | 1.8173 | 0.006461 | -1.1905 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3644900 | 0.040725 | 0.011009 | -0.65903 | -0.43211 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1956558 | 0.00010962 | 0.0029508 | -0.047236 | -0.94752 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1956558 | 0.00010962 | 0.0029508 | -0.047236 | -0.94752 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1956558 | 0.00010962 | 0.0029508 | -0.047236 | -0.94752 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313 | 1.3228e-05 | 0.0023735 | -0.11017 | 0.33905 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 136143 | 0.00035242 | 0.0028887 | -0.14416 | -0.85167 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1130 | 0.00025913 | 0.0021601 | -0.16646 | 0.64658 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2937 | 0.00022129 | 0.0024379 | -0.17087 | -0.13893 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7739 | 0.00027893 | 0.0025508 | -0.084816 | -0.34335 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 29264 | 0.00026592 | 0.0026475 | -0.0633 | -0.52242 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 164201 | 0.00047492 | 0.0028796 | -0.15327 | -0.84352 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 547810 | 9.4139e-05 | 0.0029824 | -0.033884 | -0.98865 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 612183 | 2.7657e-06 | 0.0029812 | -0.012263 | -0.98992 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 454818 |-2.2831e-05 | 0.0029460 | -0.0073398 | -0.94458 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313 | 1.3228e-05 | 0.0023735 | -0.11017 | 0.33905 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 136143 | 0.00035242 | 0.0028887 | -0.14416 | -0.85167 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1130 | 0.00025913 | 0.0021601 | -0.16646 | 0.64658 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2937 | 0.00022129 | 0.0024379 | -0.17087 | -0.13893 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7739 | 0.00027893 | 0.0025508 | -0.084816 | -0.34335 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 29264 | 0.00026592 | 0.0026475 | -0.0633 | -0.52242 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 164201 | 0.00047492 | 0.0028796 | -0.15327 | -0.84352 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 547810 | 9.4139e-05 | 0.0029824 | -0.033884 | -0.98865 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 612183 | 2.7657e-06 | 0.0029812 | -0.012263 | -0.98992 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 454818 |-2.2831e-05 | 0.0029460 | -0.0073398 | -0.94458 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 777225 | 5.0372e-05 | 0.0018690 | -0.020394 | -0.92981 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 777225 | 5.0372e-05 | 0.0018690 | -0.020394 | -0.92981 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 737565 | 4.2759e-05 | 0.0018797 | -0.016612 | -0.95125 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39660 | 0.00015948 | 0.0017040 | -0.051584 | -0.56331 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7562 |-0.00011607 | 0.0017875 | 0.062122 | -0.76507 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17377 | 0.00038934 | 0.0018204 | -0.18604 | -0.86089 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4621 | 0.00028366 | 0.0018427 | -0.1443 | -0.8408 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1943 | 0.00010704 | 0.0017621 | -0.016118 | -0.65302 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18574 | 0.00017746 | 0.0018366 | -0.036297 | -0.90336 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 48597 | 6.5587e-05 | 0.0018743 | -0.013209 | -0.94702 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 86268 | 6.9542e-05 | 0.0018720 | -0.02913 | -0.928 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 124427 |-1.2412e-05 | 0.0018663 | 0.014755 | -0.9155 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 138666 |-6.2827e-05 | 0.0018886 | 0.041465 | -0.95516 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 142852 |-3.2667e-05 | 0.0019008 | 0.019993 | -0.99208 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 98637 | 0.00011254 | 0.0018867 | -0.071703 | -0.97733 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 48041 | 0.00016941 | 0.0018663 | -0.081905 | -0.93223 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1151 | 0.00013946 | 0.0016619 | 0.014448 | -0.50941 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1371 | 0.00012329 | 0.0017370 | -0.07864 | -0.62424 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 751 | 0.00010638 | 0.0017405 | -0.072445 | -0.62552 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 390 | 9.387e-05 | 0.0015354 | 0.029765 | -0.017045 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1808 | 6.2904e-05 | 0.0016664 | -0.0072947 | -0.45313 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3476 | 0.00015695 | 0.0017495 | -0.054477 | -0.68963 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4553 | 0.00020462 | 0.0017314 | -0.091642 | -0.59481 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5942 | 0.00019768 | 0.0016997 | -0.051306 | -0.53027 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6881 | 0.00017558 | 0.0016843 | -0.031532 | -0.52221 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6364 | 0.00014572 | 0.0017316 | -0.064699 | -0.59769 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4316 | 0.00014645 | 0.0016992 | -0.078753 | -0.59319 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2657 | 0.00012387 | 0.0016229 | 0.0064341 | -0.48019 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8713 |-7.1109e-05 | 0.0017687 | 0.046526 | -0.72515 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18748 | 0.00036964 | 0.0018157 | -0.17618 | -0.84792 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5372 | 0.00025525 | 0.0018279 | -0.12996 | -0.81184 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2333 | 0.00010442 | 0.0017194 | -0.008753 | -0.54881 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20382 | 0.00016603 | 0.0018207 | -0.031069 | -0.86614 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 52073 | 7.3236e-05 | 0.0018644 | -0.017527 | -0.92789 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 90821 | 7.7764e-05 | 0.0018640 | -0.033972 | -0.91078 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 130369 | 9.245e-07 | 0.0018569 | 0.008131 | -0.8954 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 145547 | -4.641e-05 | 0.0018762 | 0.032853 | -0.93141 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 149216 |-2.2871e-05 | 0.0018923 | 0.013947 | -0.9747 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 102953 | 0.00011418 | 0.0018780 | -0.072477 | -0.9614 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50698 | 0.00016681 | 0.0018533 | -0.077651 | -0.91075 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 649461 | 5.0317e-05 | 0.0018665 | -0.015842 | -0.92535 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 649461 | 5.0317e-05 | 0.0018665 | -0.015842 | -0.92535 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 614712 | 4.0662e-05 | 0.0018766 | -0.011918 | -0.94469 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 34749 | 0.00018499 | 0.0017139 | -0.041249 | -0.61371 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1093 | 2.8841e-05 | 0.0017563 | 0.070226 | -0.61495 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 45087 | 9.2319e-05 | 0.0018716 | -0.030913 | -0.91776 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14993 | 0.00023236 | 0.0017963 | -0.089875 | -0.7891 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6249 |-6.2327e-05 | 0.0017962 | 0.036223 | -0.79523 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2473 | 0.00026975 | 0.0017691 | -0.10499 | -0.75807 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9130 | 0.00040931 | 0.0018305 | -0.20075 | -0.85964 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31062 | 0.00024983 | 0.0018719 | -0.11415 | -0.9471 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78972 | 0.00017907 | 0.0018804 | -0.087235 | -0.96963 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 120540 |-4.8581e-05 | 0.0018940 | 0.030024 | -0.98302 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 117706 |-8.2726e-05 | 0.0018870 | 0.049193 | -0.95242 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 108604 | -3.919e-05 | 0.0018692 | 0.022879 | -0.92256 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78803 | 4.1084e-05 | 0.0018551 | 0.0013937 | -0.90397 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 254 | 4.5652e-06 | 0.0014775 | -0.0087662 | -0.30341 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3223 | 0.00017225 | 0.0017223 | -0.053865 | -0.63738 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1468 | 0.00013816 | 0.0017287 | 0.097897 | -0.66059 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 930 |-5.9299e-05 | 0.0016306 | 0.072281 | -0.40939 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 452 | 0.00021015 | 0.0015674 | -0.022198 | -0.39477 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1041 | 0.00015057 | 0.0016745 | 0.10949 | -0.54819 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1917 | 0.00013528 | 0.0016974 | -0.07277 | -0.51651 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3196 | 0.00023618 | 0.0017319 | -0.065136 | -0.67588 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5447 | 0.00017966 | 0.0016814 | -0.029628 | -0.54408 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6136 | 0.00026998 | 0.0017263 | -0.066885 | -0.62348 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5900 | 0.00019239 | 0.0017192 | -0.088089 | -0.60392 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4785 | 0.00014351 | 0.0017510 | -0.031273 | -0.71624 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1347 | 2.3295e-05 | 0.0016967 | 0.061144 | -0.53192 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 48310 | 9.8624e-05 | 0.0018604 | -0.033811 | -0.89788 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16461 | 0.00022338 | 0.0017902 | -0.072733 | -0.78034 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7179 |-6.1904e-05 | 0.0017740 | 0.040074 | -0.74817 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2925 | 0.00025922 | 0.0017353 | -0.091134 | -0.70085 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10171 | 0.00038094 | 0.0018159 | -0.16699 | -0.84354 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32979 | 0.00024291 | 0.0018621 | -0.11043 | -0.92604 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 82168 | 0.00018146 | 0.0018745 | -0.087091 | -0.95857 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 125987 |-3.5673e-05 | 0.0018834 | 0.023544 | -0.96299 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 123842 | -5.733e-05 | 0.0018781 | 0.036745 | -0.93437 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 114504 | -2.268e-05 | 0.0018598 | 0.012871 | -0.90462 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83588 | 4.7946e-05 | 0.0018485 | -0.0015983 | -0.89241 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1426686 | 5.0347e-05 | 0.0018678 | -0.018311 | -0.92777 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1426686 | 5.0347e-05 | 0.0018678 | -0.018311 | -0.92777 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1352277 | 4.1798e-05 | 0.0018783 | -0.014464 | -0.94826 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 74409 | 0.00017134 | 0.0017087 | -0.046602 | -0.58674 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1426686 | 3.1723 | 1.8176 | -0.028966 | -1.1882 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1426686 | 0.024993 | 0.0054730 | -0.58294 | -0.55193 | RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 |-4.3462e-05 | 0.0021442 | 0.10508 | 0.33855 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 50865 | 0.00052893 | 0.0028302 | -0.25434 | -0.73997 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 929 |-0.00023285 | 0.0020877 | 0.19963 | 0.32449 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2771 |-0.00011561 | 0.0023320 | 0.19243 | -0.013363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8922 | 6.595e-05 | 0.0025586 | 0.022179 | -0.37967 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28951 | 0.00028909 | 0.0026986 | -0.09845 | -0.5911 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113765 | 0.00029586 | 0.0028798 | -0.091429 | -0.8466 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 275732 | 4.0854e-05 | 0.0029701 | -0.0089732 | -0.97033 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 298730 |-8.1036e-06 | 0.0029617 | 0.0066095 | -0.96458 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 198949 | 7.3085e-05 | 0.0029247 | -0.051286 | -0.91311 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 |-4.3462e-05 | 0.0021442 | 0.10508 | 0.33855 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 50865 | 0.00052893 | 0.0028302 | -0.25434 | -0.73997 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 929 |-0.00023285 | 0.0020877 | 0.19963 | 0.32449 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2771 |-0.00011561 | 0.0023320 | 0.19243 | -0.013363 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8922 | 6.595e-05 | 0.0025586 | 0.022179 | -0.37967 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28951 | 0.00028909 | 0.0026986 | -0.09845 | -0.5911 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113765 | 0.00029586 | 0.0028798 | -0.091429 | -0.8466 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 275732 | 4.0854e-05 | 0.0029701 | -0.0089732 | -0.97033 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 298730 |-8.1036e-06 | 0.0029617 | 0.0066095 | -0.96458 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 198949 | 7.3085e-05 | 0.0029247 | -0.051286 | -0.91311 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2004743 | 3.1346 | 1.8181 | 0.0072273 | -1.1915 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2004743 | 0.040597 | 0.011083 | -0.64669 | -0.46941 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 58028 | 0.00027362 | 0.0028521 | -0.044405 | -0.82386 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 0.00040503 | 0.0021919 | -0.41609 | 0.70999 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2699 | 0.00034423 | 0.0024610 | -0.24684 | -0.15841 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6935 | 0.00032427 | 0.0026013 | -0.12305 | -0.46825 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25033 | 0.00048742 | 0.0026810 | -0.31122 | -0.53071 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 112946 | 0.0004652 | 0.0028872 | -0.22744 | -0.83772 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285608 | 0.00014392 | 0.0029770 | -0.082311 | -0.98928 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313550 |-6.9877e-06 | 0.0029754 | -0.0017084 | -0.98567 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218620 |-3.9738e-05 | 0.0029259 | 0.045005 | -0.92291 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13 | 0.001815 | 0.0000 | 0 | 0 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 58028 | 0.00027362 | 0.0028521 | -0.044405 | -0.82386 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 0.00040503 | 0.0021919 | -0.41609 | 0.70999 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2699 | 0.00034423 | 0.0024610 | -0.24684 | -0.15841 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6935 | 0.00032427 | 0.0026013 | -0.12305 | -0.46825 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25033 | 0.00048742 | 0.0026810 | -0.31122 | -0.53071 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 112946 | 0.0004652 | 0.0028872 | -0.22744 | -0.83772 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285608 | 0.00014392 | 0.0029770 | -0.082311 | -0.98928 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313550 |-6.9877e-06 | 0.0029754 | -0.0017084 | -0.98567 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218620 |-3.9738e-05 | 0.0029259 | 0.045005 | -0.92291 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 163850 | 4.0293e-05 | 0.0018576 | -0.0074363 | -0.9132 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 163850 | 4.0293e-05 | 0.0018576 | -0.0074363 | -0.9132 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 148007 | 3.2139e-05 | 0.0018752 | -0.0021893 | -0.9491 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15843 | 0.00010436 | 0.0017113 | -0.039113 | -0.5776 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3445 |-9.1672e-06 | 0.0017723 | 0.037423 | -0.75275 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5458 | 0.00017467 | 0.0018189 | -0.071614 | -0.83269 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2570 | 0.00021368 | 0.0018447 | -0.11197 | -0.8762 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1341 | 3.1951e-05 | 0.0017384 | -0.01663 | -0.62633 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7715 | 7.1065e-05 | 0.0018221 | 0.024563 | -0.88421 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14465 |-5.9089e-05 | 0.0018444 | 0.073125 | -0.88944 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19251 |-5.3285e-05 | 0.0018629 | 0.039232 | -0.91033 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22215 |-4.7206e-06 | 0.0018836 | 0.015574 | -0.95205 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25261 | 3.0693e-05 | 0.0019021 | -0.01498 | -0.99337 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24011 | 7.2062e-05 | 0.0019085 | -0.031863 | -1.0152 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13502 | 0.00012882 | 0.0018947 | -0.063281 | -0.9917 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8773 | 3.4888e-05 | 0.0018717 | -0.010253 | -0.95444 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 393 | 0.00017538 | 0.0017991 | -0.092901 | -0.62169 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 888 | 0.00012874 | 0.0017586 | -0.091772 | -0.68638 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 526 |-0.00012072 | 0.0018347 | 0.078323 | -0.71465 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 296 | 0.0001337 | 0.0015940 | 0.032019 | -0.17703 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 688 |-5.3161e-05 | 0.0016837 | 0.07148 | -0.53382 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1446 | 0.00022711 | 0.0017135 | -0.093701 | -0.58638 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1639 | 0.00014821 | 0.0017158 | -0.093849 | -0.62561 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1929 | 0.00012683 | 0.0017100 | -0.090158 | -0.56731 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2225 | 9.8741e-05 | 0.0016889 | 0.032464 | -0.52586 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2427 | 8.2862e-05 | 0.0017384 | -0.057516 | -0.56472 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1994 | 0.00010834 | 0.0017300 | -0.05604 | -0.67052 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1392 | 3.4277e-05 | 0.0015754 | 0.075043 | -0.37403 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3838 | 1.0824e-05 | 0.0017761 | 0.023692 | -0.74125 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6346 | 0.00016758 | 0.0018098 | -0.073821 | -0.81107 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3096 | 0.00014582 | 0.0018476 | -0.072888 | -0.85724 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1637 | 5.4238e-05 | 0.0017084 | -0.013009 | -0.53849 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8403 | 5.9439e-05 | 0.0018099 | 0.030665 | -0.85605 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15911 |-2.6897e-05 | 0.0018323 | 0.051374 | -0.86597 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20890 |-3.2196e-05 | 0.0018490 | 0.023451 | -0.88708 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24144 | 8.3443e-06 | 0.0018675 | 0.0041629 | -0.92101 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27486 | 3.7171e-05 | 0.0018829 | -0.013754 | -0.95591 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26438 | 7.3063e-05 | 0.0018933 | -0.033983 | -0.98052 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15496 | 0.00012575 | 0.0018710 | -0.061797 | -0.94913 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10165 | 3.4794e-05 | 0.0018293 | -0.001895 | -0.88066 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 169979 | 5.4036e-05 | 0.0018480 | -0.0054886 | -0.88774 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 169979 | 5.4036e-05 | 0.0018480 | -0.0054886 | -0.88774 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 155415 | 4.5168e-05 | 0.0018666 | -0.0018686 | -0.92448 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14564 | 0.00013265 | 0.0016714 | -0.015324 | -0.49715 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1089 |-3.2555e-05 | 0.0017899 | 0.096692 | -0.68107 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15519 |-5.7935e-05 | 0.0018379 | 0.084468 | -0.84681 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6894 | 0.00018468 | 0.0017615 | -0.03216 | -0.7394 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2544 |-1.4262e-05 | 0.0018091 | 0.0055643 | -0.78479 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2078 | 0.00019692 | 0.0017649 | -0.077998 | -0.76271 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4958 | 0.00014714 | 0.0018051 | -0.053628 | -0.79102 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8425 | 6.0226e-05 | 0.0018851 | -0.02817 | -0.91461 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13834 | 0.00029174 | 0.0018883 | -0.15174 | -0.95354 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27715 | 5.9278e-05 | 0.0018888 | -0.026069 | -0.98119 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27966 |-2.9448e-05 | 0.0018889 | 0.02515 | -0.97171 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24207 | 2.8242e-05 | 0.0018665 | 0.0017033 | -0.92558 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20186 |-4.2864e-05 | 0.0018642 | 0.0756 | -0.91013 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 259 | 1.4583e-05 | 0.0014754 | 0.15644 | -0.19132 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1406 | 0.00024173 | 0.0017216 | -0.10314 | -0.58127 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 804 | 1.657e-05 | 0.0016953 | 0.19647 | -0.56511 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 478 |-4.9631e-05 | 0.0015759 | -0.019417 | -0.056238 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 376 | 0.00029085 | 0.0015295 | 0.069171 | -0.32074 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 839 |-2.9466e-06 | 0.0016538 | 0.16817 | -0.42891 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1176 | 0.00016159 | 0.0016983 | 0.0071104 | -0.55705 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1617 | 9.7178e-05 | 0.0016674 | -0.064026 | -0.55282 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2001 | 5.9706e-05 | 0.0016534 | -0.079083 | -0.46984 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2002 | 0.00013886 | 0.0016894 | -0.020141 | -0.5153 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1888 | 0.00020934 | 0.0016661 | -0.10672 | -0.4446 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1718 | 0.00020244 | 0.0016801 | 0.022673 | -0.52889 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1348 |-2.1279e-05 | 0.0017200 | 0.10133 | -0.56697 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16925 |-2.8375e-05 | 0.0018290 | 0.063678 | -0.83067 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7698 | 0.00016657 | 0.0017553 | -0.0079399 | -0.72857 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3022 | -2.057e-05 | 0.0017698 | 0.0046518 | -0.68221 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2454 | 0.00021361 | 0.0017258 | -0.066242 | -0.68772 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5797 | 0.0001223 | 0.0017818 | -0.018571 | -0.74619 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9601 | 7.5204e-05 | 0.0018590 | -0.028206 | -0.86662 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15451 | 0.00026733 | 0.0018632 | -0.13622 | -0.91386 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29716 | 5.9309e-05 | 0.0018726 | -0.028775 | -0.95087 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29968 |-1.5614e-05 | 0.0018739 | 0.018342 | -0.94113 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26095 | 4.5034e-05 | 0.0018496 | -0.010694 | -0.89069 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21904 |-2.0659e-05 | 0.0018497 | 0.065842 | -0.88173 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 333829 | 4.7331e-05 | 0.0018527 | -0.0065043 | -0.9002 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 333829 | 4.7331e-05 | 0.0018527 | -0.0065043 | -0.9002 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 303422 | 3.8853e-05 | 0.0018708 | -0.0020732 | -0.93646 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 30407 | 0.00011809 | 0.0016921 | -0.028584 | -0.53859 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 333829 | 3.1617 | 1.8139 | -0.016966 | -1.1883 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 333829 | 0.025251 | 0.0053286 | -0.61665 | -0.48409 | -RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 938859 | 0.00010431 | 0.0029334 | -0.041852 | -0.92767 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 938859 | 0.00010431 | 0.0029334 | -0.041852 | -0.92767 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 938859 | 0.00010431 | 0.0029334 | -0.041852 | -0.92767 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 230 | 0.00018925 | 0.0022535 | -0.29499 | 0.34105 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 57542 | 0.00032952 | 0.0028527 | -0.1052 | -0.82047 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 878 | 0.00019636 | 0.0021317 | 0.026349 | 0.23131 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2522 | 0.00018834 | 0.0023475 | -0.16324 | 0.070357 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8011 | 0.00021661 | 0.0025056 | -0.089149 | -0.30777 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24415 | 0.00029023 | 0.0027192 | -0.10547 | -0.6307 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 92748 | 0.00034637 | 0.0028656 | -0.12716 | -0.8332 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 257085 | 0.00012422 | 0.0029818 | -0.052187 | -0.98426 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 295077 |-1.0923e-05 | 0.0029760 |-0.00027164 | -0.98396 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 200312 |-1.9766e-05 | 0.0029249 | 0.0098806 | -0.91614 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39 | 0.00096038 | 0.0011730 | 0.87117 | 1.5836 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 230 | 0.00018925 | 0.0022535 | -0.29499 | 0.34105 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 57542 | 0.00032952 | 0.0028527 | -0.1052 | -0.82047 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 878 | 0.00019636 | 0.0021317 | 0.026349 | 0.23131 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2522 | 0.00018834 | 0.0023475 | -0.16324 | 0.070357 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8011 | 0.00021661 | 0.0025056 | -0.089149 | -0.30777 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24415 | 0.00029023 | 0.0027192 | -0.10547 | -0.6307 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 92748 | 0.00034637 | 0.0028656 | -0.12716 | -0.8332 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 257085 | 0.00012422 | 0.0029818 | -0.052187 | -0.98426 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 295077 |-1.0923e-05 | 0.0029760 |-0.00027164 | -0.98396 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 200312 |-1.9766e-05 | 0.0029249 | 0.0098806 | -0.91614 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2199344 | 0.00010091 | 0.0029366 | -0.042205 | -0.93035 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2199344 | 0.00010091 | 0.0029366 | -0.042205 | -0.93035 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2199344 | 0.00010091 | 0.0029366 | -0.042205 | -0.93035 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2199344 | 3.1362 | 1.8058 | 0.0047628 | -1.1741 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2199344 | 0.040791 | 0.010969 | -0.66475 | -0.41782 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1260485 | 9.8362e-05 | 0.0029390 | -0.042458 | -0.93235 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1260485 | 9.8362e-05 | 0.0029390 | -0.042458 | -0.93235 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1260485 | 9.8362e-05 | 0.0029390 | -0.042458 | -0.93235 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313 | 1.3228e-05 | 0.0023735 | -0.11017 | 0.33905 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73799 | 0.00037 | 0.0028724 | -0.14299 | -0.83387 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1125 | 0.00024234 | 0.0021519 | -0.16816 | 0.6746 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2892 | 0.00023116 | 0.0024535 | -0.17664 | -0.16153 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7538 | 0.00026818 | 0.0025467 | -0.087311 | -0.33479 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27556 | 0.00026729 | 0.0026415 | -0.056994 | -0.52257 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 134545 | 0.00036409 | 0.0028783 | -0.11548 | -0.85013 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 356182 | 5.0331e-05 | 0.0029835 | -0.021801 | -0.98771 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 383611 |-1.3856e-05 | 0.0029761 | -0.0053011 | -0.98114 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 272904 | 2.1063e-05 | 0.0029321 | -0.019951 | -0.92695 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.0020821 | 0.0012429 | 0.87692 | -0.41178 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313 | 1.3228e-05 | 0.0023735 | -0.11017 | 0.33905 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73799 | 0.00037 | 0.0028724 | -0.14299 | -0.83387 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1125 | 0.00024234 | 0.0021519 | -0.16816 | 0.6746 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2892 | 0.00023116 | 0.0024535 | -0.17664 | -0.16153 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7538 | 0.00026818 | 0.0025467 | -0.087311 | -0.33479 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27556 | 0.00026729 | 0.0026415 | -0.056994 | -0.52257 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 134545 | 0.00036409 | 0.0028783 | -0.11548 | -0.85013 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 356182 | 5.0331e-05 | 0.0029835 | -0.021801 | -0.98771 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 383611 |-1.3856e-05 | 0.0029761 | -0.0053011 | -0.98114 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 272904 | 2.1063e-05 | 0.0029321 | -0.019951 | -0.92695 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 381678 | 5.3512e-05 | 0.0018666 | -0.02095 | -0.92273 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 381678 | 5.3512e-05 | 0.0018666 | -0.02095 | -0.92273 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 351950 | 4.5522e-05 | 0.0018834 | -0.016819 | -0.95578 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29728 | 0.00012707 | 0.0017019 | -0.043177 | -0.55972 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5422 | -8.229e-05 | 0.0017927 | 0.013638 | -0.74725 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12345 | 0.00025655 | 0.0018109 | -0.10679 | -0.84313 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4366 | 0.00028 | 0.0018376 | -0.14622 | -0.8303 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1885 | 8.2836e-05 | 0.0017401 | -0.020098 | -0.62134 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11712 | 0.00014307 | 0.0018475 | -0.028026 | -0.9084 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27917 | 1.6443e-05 | 0.0018661 | 0.0095415 | -0.93121 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41209 | 4.7807e-05 | 0.0018769 | -0.016251 | -0.93939 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 54158 | 1.8478e-05 | 0.0018850 | -0.0070728 | -0.94745 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61560 |-2.6517e-05 | 0.0019078 | 0.022782 | -0.98602 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64776 |-8.1643e-07 | 0.0019098 | 0.0060626 | -1.004 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41618 | 0.00010943 | 0.0018893 | -0.066389 | -0.97798 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24982 | 9.218e-05 | 0.0018620 | -0.031079 | -0.93982 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 982 | 0.00014653 | 0.0016457 | 0.010852 | -0.49856 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1267 | 0.00012028 | 0.0017490 | -0.085436 | -0.65517 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 683 | 5.0452e-05 | 0.0017331 | -0.057062 | -0.62477 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 306 | 8.9815e-05 | 0.0015056 | 0.075361 | 0.010026 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1437 | 7.427e-05 | 0.0016727 | -0.0010011 | -0.40815 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2550 | 0.00016284 | 0.0017543 | -0.057752 | -0.69747 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3238 | 0.00017746 | 0.0017667 | -0.10679 | -0.65329 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4071 | 0.00019386 | 0.0017018 | -0.042783 | -0.55101 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4764 | 8.7762e-05 | 0.0016779 | -0.0084132 | -0.52078 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4744 | 4.6091e-05 | 0.0017242 | -0.023969 | -0.55961 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3415 | 0.00018658 | 0.0016783 | -0.10397 | -0.563 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2271 | 9.412e-05 | 0.0015901 | 0.034672 | -0.4202 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6404 |-3.5345e-05 | 0.0017659 | 0.0030783 | -0.69707 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13612 | 0.00024304 | 0.0018053 | -0.10347 | -0.82595 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5049 | 0.00024349 | 0.0018233 | -0.12818 | -0.80419 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2191 | 8.4006e-05 | 0.0017031 | -0.009561 | -0.53363 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13149 | 0.00013435 | 0.0018264 | -0.023125 | -0.85623 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30467 | 3.1632e-05 | 0.0018554 | 0.0010835 | -0.91013 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 44447 | 5.9411e-05 | 0.0018676 | -0.025038 | -0.91782 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58229 | 3.5644e-05 | 0.0018686 | -0.014333 | -0.9144 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 66324 |-1.5366e-05 | 0.0018869 | 0.016983 | -0.94848 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 69520 | 3.1533e-06 | 0.0018948 | 0.003074 | -0.97292 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 45033 | 0.00011637 | 0.0018714 | -0.071084 | -0.94614 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27253 | 9.2365e-05 | 0.0018378 | -0.027178 | -0.89833 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 302383 | 3.9466e-05 | 0.0018697 | -0.0092541 | -0.93247 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 302383 | 3.9466e-05 | 0.0018697 | -0.0092541 | -0.93247 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 281225 | 2.8966e-05 | 0.0018832 | -0.0051619 | -0.95812 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21158 | 0.00015054 | 0.0017160 | -0.027001 | -0.6182 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 485 |-1.3146e-05 | 0.0018399 | 0.035966 | -0.70606 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26259 | 7.3899e-05 | 0.0018640 | -0.028615 | -0.90525 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7823 | 0.00026071 | 0.0017991 | -0.10155 | -0.80824 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3305 |-0.00016409 | 0.0017816 | 0.11607 | -0.78385 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1056 | 0.00017047 | 0.0018137 | -0.049937 | -0.91386 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2859 | 0.00029315 | 0.0018791 | -0.14728 | -0.95593 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9837 | 0.00022223 | 0.0018591 | -0.099998 | -0.93206 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28627 | 0.00029762 | 0.0018913 | -0.16224 | -0.97558 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 55623 |-2.5359e-05 | 0.0018985 | 0.022468 | -0.99374 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53945 |-0.00011752 | 0.0018934 | 0.072519 | -0.96466 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49742 | -4.333e-05 | 0.0018848 | 0.027329 | -0.9496 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41664 |-3.6869e-05 | 0.0018592 | 0.041124 | -0.91051 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78 |-0.00041588 | 0.0015665 | 0.0098863 | -0.88748 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1887 | 0.00017043 | 0.0017422 | -0.057919 | -0.70267 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 751 | 0.00017762 | 0.0018051 | 0.082805 | -0.83845 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 486 |-0.00017217 | 0.0016526 | 0.11831 | -0.5719 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 164 |-3.9941e-05 | 0.0016903 | -0.064097 | -0.65146 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 412 | 0.00022683 | 0.0017356 | 0.032333 | -0.69911 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 999 | 0.00014211 | 0.0017173 | -0.12661 | -0.48607 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1872 | 0.0001867 | 0.0017313 | -0.045665 | -0.67857 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3340 | 0.00013704 | 0.0016826 | 0.012341 | -0.54086 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4067 | 0.00021401 | 0.0017069 | -0.050394 | -0.56844 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4082 | 0.00012648 | 0.0017136 | -0.042432 | -0.59873 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3020 | 0.00012983 | 0.0017155 | -0.020114 | -0.65394 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 563 |-7.0439e-05 | 0.0018090 | 0.055602 | -0.69328 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28146 | 8.1498e-05 | 0.0018549 | -0.031968 | -0.89042 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8574 | 0.00025258 | 0.0017999 | -0.083425 | -0.81393 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3791 | -0.0001652 | 0.0017644 | 0.11666 | -0.75606 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1220 | 0.00013876 | 0.0017972 | -0.045753 | -0.87579 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3271 | 0.00028335 | 0.0018587 | -0.12377 | -0.92428 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10836 | 0.00021484 | 0.0018467 | -0.1004 | -0.89732 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30499 | 0.00029039 | 0.0018815 | -0.15461 | -0.96002 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 58963 |-1.4343e-05 | 0.0018851 | 0.018469 | -0.96814 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 58012 |-8.4041e-05 | 0.0018781 | 0.05423 | -0.93493 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53824 |-2.5205e-05 | 0.0018680 | 0.017045 | -0.91825 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 44684 |-2.3422e-05 | 0.0018486 | 0.034196 | -0.89256 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 684061 | 4.729e-05 | 0.0018680 | -0.015773 | -0.92712 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 684061 | 4.729e-05 | 0.0018680 | -0.015773 | -0.92712 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 633175 | 3.8136e-05 | 0.0018833 | -0.011618 | -0.95689 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 50886 | 0.00013675 | 0.0017078 | -0.036247 | -0.58387 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 684061 | 3.196 | 1.8138 | -0.04841 | -1.1826 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 684061 | 0.025036 | 0.0054580 | -0.59463 | -0.52453 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 849 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 25883 | 0.034195 | 0.011809 | -0.37409 | -1.0586 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41318 | 1.4810 | 0.10736 | -0.33018 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30743 | 1.6981 | 0.18957 | -0.11157 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37656 | 1.6290 | -0.036076 | -0.33892 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3480 | 0.4073 | 0.24585 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.068421 | 1.8457 | -0.017884 | -0.30392 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40149 | 1.4839 | 0.19578 | -0.12471 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17981 | 1.6670 | -0.010306 | -0.5513 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28333 | 1.5531 | 0.26929 | -0.27231 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12368 | 1.5367 | 0.13729 | -0.39296 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17712 | 1.5152 | 0.22871 | -0.39801 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75833 | 1.5768 | 0.12884 | -0.66308 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10676 | 2.0810 | -0.0045216 | -1.1646 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 507233 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13 | 1.7408 | 0.23854 | -0.96125 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53833 | 1.3878 | 0.098272 | -0.64472 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.12838 | 1.1629 | 0.12874 | -1.1398 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081699 | 1.4196 | 0.32703 | -0.046622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12211 | 1.3804 | 0.28196 | 0.010151 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.15094 | 1.5168 | 0.21168 | -0.28581 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.096061 | 1.5987 | 0.2134 | -0.25969 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.2127 | 1.6954 | 0.074628 | -0.42655 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.14974 | 1.6529 | 0.17813 | -0.31394 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21613 | 1.6166 | 0.12512 | -0.26547 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24374 | 1.4702 | 0.20203 | -0.2494 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.2172 | 1.5568 | 0.18625 | -0.12125 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17322 | 1.5227 | 0.13086 | -0.15626 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27231 | 1.5535 | 0.13491 | -0.22601 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.086966 | 1.6890 | 0.15235 | -0.40752 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12663 | 1.6034 | 0.15364 | -0.21463 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19744 | 1.6077 | 0.081685 | -0.27387 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23898 | 1.6377 | 0.1299 | -0.16929 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.28814 | 1.6103 | 0.073389 | -0.24816 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15303 | 1.5989 | 0.18914 | -0.153 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24267 | 1.6690 | 0.063885 | -0.42752 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30034 | 1.7229 | 0.13633 | -0.58833 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32932 | 1.7869 | 0.077775 | -0.46677 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16463 | 1.6101 | 0.13791 | -0.14658 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.079407 | 1.6266 | 0.19124 | -0.17206 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24458 | 1.6741 | 0.11118 | -0.25565 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 393 | 0.23493 | 1.6288 | 0.27852 | -0.31048 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31523 | 1.7093 | 0.31719 | -0.26998 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.22916 | 1.6140 | 0.095356 | -0.21843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20502 | 1.6556 | -0.038498 | -0.52491 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32079 | 1.6266 | 0.18544 | -0.41092 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.3632 | 1.5757 | -0.029273 | -0.31344 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25612 | 1.6275 | 0.294 | -0.19787 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.29513 | 1.7014 | 0.17336 | -0.31575 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.382 | 1.5010 | 0.14137 | -0.13101 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50369 | 1.5175 | 0.12653 | -0.85675 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016667 | 1.7620 | 0.25013 | -0.38515 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.678 | 1.8480 | -0.2102 | -0.14974 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6903 | 0.16563 | -0.57044 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29855 | 1.7243 | 0.13134 | -0.38579 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.016154 | 1.4624 | 0.53577 | 0.37024 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50536 | 1.6430 | 0.097847 | -0.6631 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.063043 | 1.4052 | -0.081295 | -0.71369 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.044872 | 1.4169 | 0.90768 | 0.21774 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.195 | 1.5848 | 0.05333 | -0.62788 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98571 | 1.4867 | 0.039315 | -0.72143 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.2803 | 1.5870 | 0.65552 | -0.11744 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23359 | 1.5405 | -0.076177 | -0.23327 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 507233 | 0.0009871 | 0.00019065 | 0.55517 | -0.869 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 507233 | 0.038939 | 0.0088879 | -0.56514 | -0.74191 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.92083 | 1.7610 | 0.2229 | -0.60967 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.058163 | 1.5368 | -0.073383 | -0.58866 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 507233 | 0.051597 | 0.00033041 | 0.10732 | -1.0596 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | -0.043651 | 1.5697 | 0.42889 | 0.54952 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45909 | 1.2501 | -0.066309 | -0.41464 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.56976 | 1.5518 | -0.057371 | -0.77686 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11333 | 1.2727 | 0.33758 | -0.74399 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.71209 | 1.7110 | 0.14936 | -0.80772 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.3878 | 1.5584 | 0.14932 | -0.57613 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2289 | 1.8326 | 0.56336 | -0.82816 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.37536 | 1.5524 | 0.064539 | -0.066318 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15427 | 0.27401 | 1.5842 | 0.096156 | -0.15525 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.24362 | 1.3709 | -0.033615 | -0.37275 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29858 | 1.6154 | 0.10664 | -0.25894 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28257 | 1.6047 | 0.076966 | -0.28145 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.30066 | 1.6133 | 0.065518 | -0.28249 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26154 | 1.6247 | 0.081823 | -0.35168 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28952 | 1.6473 | 0.12519 | -0.33856 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26708 | 1.6103 | 0.098005 | -0.31954 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.31026 | 1.6627 | 0.050017 | -0.30988 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29621 | 1.6541 | 0.088594 | -0.3299 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25279 | 1.6360 | 0.10966 | -0.30358 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23751 | 1.6613 | 0.14776 | -0.31124 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.33449 | 1.6383 | 0.11502 | -0.33064 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5902 | 0.29969 | 1.6574 | 0.08824 | -0.24771 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.2879 | 1.6788 | 0.087983 | -0.38484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26114 | 1.6885 | 0.12418 | -0.41185 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.24009 | 1.6848 | 0.12782 | -0.38677 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30269 | 1.6410 | 0.10473 | -0.36488 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32653 | 1.6508 | 0.13524 | -0.34832 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30808 | 1.6285 | 0.11976 | -0.3836 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21071 | 1.5901 | 0.083395 | -0.29653 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31542 | 1.6432 | 0.12192 | -0.4169 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31437 | 1.6531 | 0.12931 | -0.38535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.2852 | 1.6401 | 0.12218 | -0.26929 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33206 | 1.5715 | 0.062223 | -0.36637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32902 | 1.6544 | 0.080032 | -0.27433 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26951 | 1.6049 | 0.13174 | -0.29939 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36395 | 1.5705 | 0.078054 | -0.41688 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26128 | 1.6854 | 0.17716 | -0.30481 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32383 | 1.6284 | 0.036496 | -0.13351 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28519 | 1.6115 | 0.10354 | -0.2648 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34277 | 1.6253 | 0.10903 | -0.36219 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.31998 | 1.5593 | 0.068972 | -0.19442 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.2635 | 1.6651 | 0.14389 | -0.21132 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21424 | 1.6274 | 0.17006 | -0.28396 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1014 | 0.34927 | 1.6111 | -0.0619 | -0.21655 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.2293 | 1.6686 | 0.10917 | -0.27054 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22185 | 1.7091 | 0.17999 | -0.52875 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.1997 | 1.5172 | 0.13364 | -0.37649 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19874 | 1.6443 | 0.076488 | -0.42495 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14728 | 1.5883 | 0.25877 | -0.23728 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.1886 | 1.6214 | 0.23995 | -0.19668 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.21266 | 1.6021 | 0.15716 | -0.37422 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.48282 | 1.5812 | -0.072567 | -0.052192 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27385 | 1.6242 | 0.14487 | -0.51659 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 292 | 0.21838 | 1.5920 | 0.05014 | -0.44412 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21248 | 1.5062 | 0.049603 | -0.30674 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.24693 | 1.7293 | 0.1675 | -0.77721 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029545 | 1.6037 | 0.0046675 | -0.57182 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25657 | 1.7121 | 0.16775 | -0.32864 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13962 | 1.4408 | 0.102 | -0.57953 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13354 | 1.7212 | 0.37426 | -0.26768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48577 | 1.5249 | 0.29054 | -0.59967 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21865 | 1.5840 | 0.20432 | -0.18456 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.045556 | 1.3768 | 0.096113 | -0.21421 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44572 | 1.4784 | 0.31489 | 0.0015237 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.042308 | 1.5818 | 0.69141 | 0.57976 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.002381 | 1.1558 | -0.24842 | -0.56544 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 507233 | 0.051212 | 0.00053404 | -0.22345 | -0.89192 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.38333 | 1.3685 | 0.37511 | -1.1294 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.38 | 1.6153 | -0.019492 | -0.47077 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.1569 | 1.0099 | -0.18633 | -0.68982 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22309 | 1.5774 | 0.21111 | -0.26673 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10665 | 1.6410 | 0.053939 | -0.1283 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.32989 | 1.7790 | 0.057564 | -0.54784 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.0375 | 1.7081 | 0.1811 | -0.4616 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27818 | 1.8535 | 0.30923 | -0.36171 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24652 | 1.6987 | -0.03312 | -0.40993 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10745 | 1.5820 | 0.05933 | -0.39239 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21703 | 1.7376 | 0.049961 | -0.58861 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31373 | 1.5650 | -0.04847 | -0.24301 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38179 | 1.5954 | -0.062554 | -0.50903 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57569 | 1.7047 | 0.17549 | -0.40578 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.33302 | 1.6113 | 0.13836 | -0.41792 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15295 | 1.6407 | -0.013233 | -0.044684 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 244 | 0.65581 | 1.7599 | 0.0071212 | -0.10976 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35843 | 1.7844 | -0.081385 | -0.52355 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36479 | 1.6274 | -0.13257 | -0.3575 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72192 | 1.5941 | 0.073747 | -0.60939 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25769 | 1.5140 | -0.5321 | -0.89062 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.056504 | 1.5937 | 0.13897 | -0.79723 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058182 | 1.6749 | 0.14326 | -0.17216 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.35 | 1.5675 | 0.31176 | 0.16777 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.035714 | 1.6341 | -0.058004 | -0.20603 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72778 | 1.9963 | 0.35113 | -0.90135 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1817 | 1.2112 | -0.093692 | -0.66263 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45313 | 1.2223 | 0.29492 | -1.0047 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.46167 | 1.3284 | 0.17483 | -0.21647 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53158 | 1.4861 | 0.070757 | -0.66558 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55 | 1.3184 | 0.032896 | 0.4336 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33644 | 1.2040 | 0.40019 | -0.36847 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 191734 | 0.0011015 | 0.00027319 | 0.16005 | -1.5963 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 191734 | 0.033079 | 0.010493 | -0.244 | -0.83445 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 17243 | 0.00043534 | 4.4586e-06 | -0.31676 | -1.0334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 17243 | 0.020956 | 0.0049564 | -0.40067 | -0.85002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 52881 | 0.032708 | 0.010264 | -0.29526 | -0.85588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.15426 | 1.1888 | 0.081159 | -0.66229 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | -0.15323 | 1.2259 | 0.0087169 | -0.6283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 255 | 0.44569 | 1.4263 | 0.10017 | -0.2233 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.33648 | 1.4013 | 0.11422 | -0.064923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 182 | 0.42017 | 1.6307 | 0.12812 | -0.37947 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.22346 | 1.6823 | 0.14179 | -0.43129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.52031 | 1.4914 | -0.041398 | -0.0236 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 117 | 0.23376 | 1.4947 | -0.24585 | 0.47703 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 154 | 0.20779 | 1.6673 | 0.4027 | 0.10174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | 0.29359 | 1.3608 | -0.083321 | -0.94404 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.094512 | 1.3525 | 0.12878 | -0.47698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.09 | 1.3003 | 0.21139 | -0.47666 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.2375 | 1.3986 | -0.079006 | -0.55381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.17689 | 1.2621 | 0.1762 | -0.36816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 82 | 0.05 | 1.3389 | -0.25339 | -0.36405 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.27264 | 1.2794 | 0.23368 | -0.20206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.33889 | 1.3642 | 0.72337 | 0.27094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.54365 | 1.3346 | 0.066766 | -0.67594 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 14 | 0.11429 | 1.1505 | -0.72821 | -0.19188 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.31279 | 1.2781 | 0.36093 | 0.40813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.53846 | 1.3628 | 0.37576 | -0.34829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 22 | -0.11364 | 1.1648 | -0.31398 | -0.8958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.072222 | 1.3439 | 0.38655 | -0.52899 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.61667 | 1.1671 | -0.48136 | -0.5175 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.70833 | 1.3551 | 0.097798 | -0.20147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 42 | 0.10952 | 1.2704 | 0.65447 | 0.93495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.17917 | 1.1681 | -0.1635 | 0.48958 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.10313 | 1.2971 | 0.18248 | -0.55147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | -0.14322 | 1.3557 | 0.22452 | -0.46831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.2875 | 0.98607 | -0.45115 | -0.93039 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.34189 | 1.3641 | 0.22587 | -0.75319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.22222 | 0.94328 | -0.72731 | 2.0386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.14583 | 1.4273 | 0.49827 | -0.84187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 35 | 0.63286 | 1.4750 | 0.20869 | -0.86119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 58 | 0.26207 | 1.1168 | 0.61667 | 0.38071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 17 | 0.10882 | 1.3712 | -0.78984 | -0.2466 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 514625 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.16375 | 1.4120 | 0.40625 | -0.33043 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.1007 | 0.13969 | -0.24134 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.28191 | 1.3722 | 0.10928 | -0.83696 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.082 | 1.2936 | -0.015117 | -0.66559 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.27778 | 1.3080 | 0.49257 | -0.42588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | -0.05 | 0.85732 | 0.76095 | -0.49354 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.36304 | 1.3612 | 0.45247 | -0.2078 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.069231 | 1.4345 | 0.39391 | 0.5968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.7951 | 1.5000 | 0.021322 | -0.81517 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.29706 | 1.3114 | 0.33075 | -0.085562 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.1218 | -0.16424 | -0.83412 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.31 | 1.1153 | -0.42437 | -0.55301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.57642 | 1.5114 | 0.08471 | -0.6656 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.2168 | 0.11295 | 0.16294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.25 | 1.4159 | 0.35903 | 0.42548 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.098387 | 1.1739 | 0.053194 | -0.27456 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.1413 | 1.4043 | 0.6802 | -0.21306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.18514 | 1.0841 | 0.12511 | -0.51715 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.39483 | 1.4019 | 0.43845 | 0.67518 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.48929 | 1.1660 | 0.006125 | -0.37829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.36111 | 1.6960 | 0.43071 | -1.016 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.51818 | 1.3178 | -0.53101 | -0.30605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.14677 | 1.2785 | -0.49149 | -0.97099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.13871 | 1.1622 | -0.04128 | -0.81978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.45811 | 1.3498 | 0.36127 | -0.88187 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 621 | 0.07294 | 1.3757 | 0.24111 | -0.048235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.068421 | 1.4518 | -0.010351 | -0.8896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 968 | 0.13033 | 1.3127 | 0.37398 | -0.051766 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.31774 | 1.3238 | 0.9854 | 0.7267 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1044 | 0.1437 | 1.4458 | 0.34698 | -0.20024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1337 | 0.10766 | 1.5346 | 0.17427 | -0.22621 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.23333 | 1.3957 | 0.96352 | 1.4539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.218 | 1.3540 | 0.33272 | -0.24258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 966 | 0.2668 | 1.6441 | 0.23188 | -0.19014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1253 | 0.1312 | 1.4343 | 0.27087 | -0.21267 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1108 | 0.19125 | 1.4840 | 0.21499 | -0.072713 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1006 | 0.2818 | 1.4285 | 0.15794 | -0.30747 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1108 | 0.20912 | 1.4623 | 0.26617 | -0.25507 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1071 | 0.17764 | 1.4089 | 0.24384 | 0.14607 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.27857 | 1.4541 | 0.22589 | -0.048732 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 872 | 0.1594 | 1.4456 | 0.24718 | -0.15885 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 765 | 0.18526 | 1.5106 | 0.23666 | -0.30172 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 770 | 0.3147 | 1.5423 | 0.21461 | -0.20969 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.29684 | 1.4878 | 0.18614 | -0.15198 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 944 | 0.30435 | 1.4679 | 0.23525 | -0.25395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 597 | 0.24146 | 1.4414 | 0.28731 | 0.098029 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 512 | 0.26394 | 1.4151 | 0.26436 | 0.1139 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 560 | 0.42668 | 1.5506 | 0.21792 | -0.3246 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.37 | 1.5347 | 0.078225 | 0.11271 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 644 | 0.28459 | 1.4606 | 0.28324 | 0.022709 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 403 | 0.25189 | 1.4899 | 0.12768 | -0.24903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 433 | 0.25489 | 1.4473 | 0.28344 | -0.047852 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 422 | 0.30522 | 1.3344 | 0.3132 | -0.0070898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 407 | 0.23135 | 1.4870 | 0.29748 | -0.23655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 491 | 0.36394 | 1.4107 | 0.19159 | -0.1524 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 391 | 0.3016 | 1.4397 | 0.14049 | -0.26174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 374 | 0.28384 | 1.3806 | 0.20201 | -0.17543 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.28731 | 1.4220 | 0.13096 | -0.21028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 337 | 0.25115 | 1.3960 | 0.13002 | -0.5117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.29541 | 1.4500 | 0.29608 | 0.29109 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 423 | 0.28646 | 1.3277 | 0.014591 | -0.45383 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 258 | 0.53176 | 1.4117 | 0.26428 | -0.098865 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 216 | 0.54767 | 1.3271 | 0.36503 | 0.077683 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 349 | 0.22652 | 1.4374 | 0.25843 | -0.084103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 209 | 0.35603 | 1.4113 | 0.14855 | -0.16021 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | 0.39785 | 1.3487 | 0.20624 | -0.39831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | 0.39407 | 1.3484 | 0.40429 | 0.21218 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 192 | 0.40938 | 1.3058 | 0.11289 | -0.32733 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 386 | 0.3071 | 1.3647 | 0.095231 | -0.35031 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 387 | 0.28065 | 1.3189 | 0.36806 | -0.17344 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.083987 | 1.3601 | 0.14438 | -0.14973 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 262 | 0.40687 | 1.3322 | 0.28968 | -0.36815 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.27553 | 1.3259 | 0.032299 | -0.32247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.31154 | 1.3440 | 0.3437 | -0.2023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 128 | 0.16172 | 1.3687 | 0.29136 | -0.2763 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.22226 | 1.2668 | 0.20968 | -0.50785 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.26538 | 1.5540 | 0.49357 | 0.029153 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.10871 | 1.3645 | 0.22811 | -0.27052 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.23814 | 1.4138 | 0.048709 | -0.73945 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.30975 | 1.2515 | 0.48016 | 0.20827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 173 | 0.22666 | 1.2460 | 0.19626 | -0.42795 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | -0.0073529 | 1.1967 | -0.087554 | -0.76893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.31053 | 1.3365 | 0.25763 | 0.087152 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.2182 | 1.3439 | 0.52428 | 0.47493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.059375 | 1.3087 | 0.15986 | -0.32132 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.63452 | 1.3587 | 0.23838 | -0.36225 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.41935 | 1.3019 | 0.68306 | 0.58048 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 165 | 0.15954 | 1.2351 | 0.46762 | 0.17925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | 0.20586 | 1.3906 | 0.25002 | 0.33378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.25206 | 1.3104 | 0.32977 | -0.18968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35986 | 1.3615 | 0.11206 | -0.5971 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 | 0.29476 | 1.4117 | 0.62128 | 0.028928 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.39375 | 1.2276 | 0.078506 | 0.25223 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.15631 | 1.4622 | 0.63918 | 0.1863 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.58048 | 1.4003 | -0.0087549 | -0.57437 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.80588 | 1.3692 | -0.07403 | 0.26205 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.40882 | 1.4488 | 0.48904 | -0.48572 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.14231 | 0.99534 | -0.70728 | 0.26226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.42722 | 1.2158 | -0.049842 | -0.25717 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.34518 | 1.3312 | 0.22086 | -0.38234 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.091071 | 1.3166 | 0.19325 | -0.40433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.21744 | 1.0856 | 0.16871 | -0.18609 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.24032 | 1.4192 | 0.58272 | 0.12602 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.41364 | 1.0915 | 0.083064 | -0.31073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.525 | 1.2588 | 0.30059 | -0.18012 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.482 | 1.2237 | 0.33308 | -0.44938 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.030357 | 1.4352 | 0.63067 | 0.66139 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.068182 | 1.3884 | 0.37369 | -0.46563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.29121 | 1.2580 | -0.011318 | -0.73398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.40294 | 1.3515 | 0.28205 | 0.015285 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 514625 | 0.00098585 | 0.00018967 | 0.56511 | -0.83986 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 514625 | 0.039508 | 0.0091247 | -0.55973 | -0.76655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.73846 | 1.9268 | 0.49755 | -0.76767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.27821 | 1.3825 | 0.50129 | -0.26828 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.55 | 1.6065 | 0.06886 | -0.34849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.10859 | 1.3052 | 0.2925 | 0.2433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.58636 | 1.5663 | -0.83414 | 0.55878 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.75 | 1.1314 | 0.56236 | 0.39619 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.44524 | 1.6557 | -0.033305 | -0.72476 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.018966 | 1.6967 | 0.1788 | 0.059926 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.2 | 1.4006 | 0.14585 | -0.32338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.162 | 1.3834 | 0.081347 | -0.28792 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.2975 | 1.3751 | -0.051858 | -0.57627 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 514625 | 0.051623 | 0.00034412 | 0.024984 | -1.2128 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 95 | 0.33211 | 1.4081 | 0.12403 | -0.14001 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 114 | 0.19561 | 1.0928 | -0.11982 | 0.42227 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.21134 | 1.2647 | 0.33019 | -0.17855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52037 | 1.4476 | 0.32257 | -1.0287 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 105 | 0.0071429 | 1.2462 | 0.31877 | 0.32959 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15827 | 1.2981 | 0.2773 | -0.57905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.33667 | 1.4396 | 0.15202 | -0.76103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.49051 | 1.2767 | 0.4699 | -0.8398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.29 | 1.4156 | 0.51763 | 0.65378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.20714 | 1.2475 | 0.019569 | -0.0064398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.003125 | 1.1178 | 0.56203 | -0.7573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 210 | 0.39115 | 1.3484 | 0.34448 | -0.027893 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.17143 | 1.2582 | 0.50648 | 0.040303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.19304 | 1.2387 | 0.26012 | 0.1294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.3 | 1.2499 | 0.51409 | 0.20603 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.2803 | 1.1793 | 0.19374 | -0.053669 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.73291 | 1.5920 | 0.068327 | -0.56803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.17222 | 1.2003 | 0.77641 | -0.29755 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.43772 | 1.3276 | 0.073047 | -0.86495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.098718 | 1.2500 | 0.35076 | -0.31066 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.14464 | 1.3216 | 0.0084706 | 0.4927 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.35845 | 1.3305 | 0.53943 | -0.10612 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.057692 | 1.4191 | 0.27836 | -0.16384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.60833 | 1.2579 | 0.377 | -1.0019 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.1 | 1.3279 | -0.32409 | -0.62328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38261 | 1.3307 | 0.56799 | 0.068695 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.16565 | 1.3063 | 0.25364 | -0.26464 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.43077 | 1.1276 | -0.26764 | -0.49122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.31667 | 1.0518 | 0.34099 | 0.13093 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.058696 | 1.1861 | 0.4669 | -0.7128 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.33 | 1.3486 | -0.046807 | -0.24911 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.22536 | 1.3721 | 0.13574 | -0.6124 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.55333 | 1.4018 | 0.3125 | -0.0079929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.25 | 0.94956 | -0.44149 | -0.85116 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.40714 | 1.3691 | 0.082422 | -0.21353 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.28393 | 1.2106 | -0.17263 | -0.0032724 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.15938 | 1.0162 | 0.49142 | -0.47676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.89737 | 1.1028 | 0.69314 | 0.065418 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.10455 | 1.4015 | 1.3204 | 2.2426 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | 0.45714 | 0.96914 | -0.60915 | -0.39231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 937 | 0.3176 | 1.5918 | -0.034802 | -0.062776 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.22143 | 1.2191 | -0.031656 | -1.0065 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.63421 | 1.3705 | 0.010212 | -0.68538 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 1.0409 | 0.84901 | -0.56607 | -1.0784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.79865 | 1.3329 | -0.010656 | -0.20202 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15138 | 0.29655 | 1.4700 | 0.12942 | -0.094399 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.067647 | 1.1893 | 1.1178 | 0.34819 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.47593 | 0.91958 | 0.16664 | -0.70162 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.19211 | 1.1472 | 0.62423 | 0.36094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.039362 | 1.2393 | -0.045617 | -0.87684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.12368 | 1.5610 | -0.48466 | -1.3136 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.45615 | 1.2739 | -0.13137 | 0.053036 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16757 | 0.2884 | 1.4899 | 0.13289 | -0.10499 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.055882 | 1.3892 | 0.381 | -0.80846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.49828 | 1.4333 | 0.4153 | -0.52859 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.82879 | 1.3273 | 0.031451 | 0.0033372 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14274 | 0.31176 | 1.4752 | 0.12914 | -0.15235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.37766 | 1.3425 | 0.37089 | -0.18304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.4425 | 1.0785 | 0.075684 | -0.6159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 13711 | 0.30392 | 1.4782 | 0.10421 | -0.12573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.29348 | 1.3752 | -0.040547 | -1.2849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.53077 | 1.4938 | 0.4227 | -0.39335 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.58143 | 1.2599 | -0.55088 | 0.6073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 214 | 0.30089 | 1.3814 | 0.33291 | -0.19972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11225 | 0.31818 | 1.4866 | 0.13886 | -0.10137 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9587 | 0.28025 | 1.4953 | 0.13984 | -0.18005 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9686 | 0.30218 | 1.4673 | 0.078685 | -0.16297 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9046 | 0.33051 | 1.4937 | 0.11586 | -0.20886 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8439 | 0.33985 | 1.4975 | 0.15447 | -0.20499 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7016 | 0.31371 | 1.4678 | 0.12522 | -0.24035 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6613 | 0.28584 | 1.4845 | 0.12252 | -0.19215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5725 | 0.32284 | 1.4651 | 0.16381 | -0.21459 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5689 | 0.34671 | 1.4854 | 0.096244 | -0.20485 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3984 | 0.31589 | 1.4542 | 0.18599 | -0.25425 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5232 | 0.28403 | 1.4638 | 0.15846 | -0.24133 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3539 | 0.26394 | 1.4582 | 0.15227 | -0.19572 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2972 | 0.29608 | 1.4556 | 0.20291 | -0.071674 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3384 | 0.34496 | 1.4649 | 0.16781 | -0.25642 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3125 | 0.29196 | 1.4537 | 0.14804 | -0.1609 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2357 | 0.24956 | 1.4347 | 0.22287 | -0.1527 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2536 | 0.31608 | 1.3633 | 0.17227 | -0.19019 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2714 | 0.32186 | 1.4297 | 0.12718 | -0.22257 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2211 | 0.246 | 1.4258 | 0.19017 | -0.26029 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1603 | 0.34149 | 1.3803 | 0.1324 | -0.17389 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1952 | 0.29955 | 1.3757 | 0.16115 | -0.2518 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2374 | 0.26893 | 1.3366 | 0.27149 | 0.042852 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1475 | 0.33659 | 1.3757 | 0.17382 | -0.12809 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1629 | 0.27399 | 1.3572 | 0.25907 | 0.025057 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1389 | 0.27066 | 1.4166 | 0.16592 | 0.0039341 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1415 | 0.30138 | 1.3622 | 0.23063 | -0.24436 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1278 | 0.32612 | 1.3989 | 0.1588 | -0.10226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1240 | 0.27909 | 1.2929 | 0.17528 | -0.084722 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1248 | 0.19652 | 1.3800 | 0.31139 | -0.17916 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 870 | 0.31299 | 1.3332 | 0.26827 | -0.15527 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1196 | 0.32971 | 1.3541 | 0.20887 | -0.20241 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1219 | 0.26493 | 1.3428 | 0.38583 | 0.078719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 655 | 0.26519 | 1.3781 | 0.39879 | -0.078988 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 795 | 0.34803 | 1.3785 | 0.28762 | -0.074004 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 887 | 0.29732 | 1.3348 | 0.11654 | -0.34596 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 540 | 0.3547 | 1.3505 | 0.26111 | -0.11126 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1107 | 0.25554 | 1.3574 | 0.18351 | -0.15813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 853 | 0.21236 | 1.3450 | 0.33738 | -0.04861 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 588 | 0.33267 | 1.3477 | 0.24037 | 0.0083567 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 571 | 0.36685 | 1.3087 | 0.25217 | 0.086472 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.24857 | 1.3383 | 0.11516 | -0.43208 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 444 | 0.20653 | 1.2994 | 0.31228 | -0.17775 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 661 | 0.22352 | 1.2861 | 0.19213 | -0.05713 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 506 | 0.34703 | 1.3056 | 0.17728 | -0.42727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 432 | 0.22857 | 1.4024 | 0.28022 | -0.079222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 379 | 0.27528 | 1.3222 | 0.16919 | -0.35805 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.31254 | 1.3886 | 0.29999 | -0.19693 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 424 | 0.33612 | 1.3384 | 0.28207 | -0.19903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 306 | 0.25098 | 1.2182 | 0.22506 | -0.32615 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 458 | 0.28547 | 1.3901 | 0.21589 | -0.25432 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 133 | 0.15752 | 1.3463 | 0.38601 | -0.11923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 288 | 0.3461 | 1.4076 | 0.095012 | -0.26808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.077397 | 1.2482 | 0.38887 | 0.39265 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 259 | 0.44846 | 1.4254 | 0.38201 | 0.061788 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.17526 | 1.5593 | 0.63677 | -0.3014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.18121 | 1.2725 | 0.26619 | 0.027382 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 367 | 0.16029 | 1.2942 | 0.45502 | 0.027809 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 447 | 0.13809 | 1.2189 | 0.32363 | 0.109 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 339 | 0.35531 | 1.3554 | 0.189 | -0.49809 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 156 | 0.21783 | 1.1682 | 0.49315 | 0.36231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.22431 | 1.2891 | 0.34651 | 0.14667 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | 0.068455 | 1.2146 | 0.37688 | 0.31019 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 198 | 0.31515 | 1.2755 | 0.32304 | 0.16686 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.14259 | 1.3910 | 0.57308 | 0.12927 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 341 | 0.30114 | 1.3054 | 0.25122 | -0.33295 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 268 | 0.36007 | 1.2218 | 0.19088 | -0.30292 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 326 | 0.33105 | 1.3005 | 0.34867 | -0.38215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 256 | 0.34961 | 1.2975 | 0.093014 | -0.4581 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.45884 | 1.3179 | 0.36207 | -0.26079 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.22411 | 1.2082 | -0.082339 | -0.0587 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 190 | 0.22316 | 1.3881 | 0.31316 | -0.42563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.2117 | 1.0428 | -0.10752 | -0.078925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 191 | 0.2071 | 1.2765 | 0.34281 | -0.15493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.11069 | 1.2979 | 0.224 | -0.41374 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 174 | 0.41202 | 1.3919 | 0.49225 | 0.062769 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.062698 | 1.2589 | 0.55804 | 0.51513 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.16128 | 1.1583 | 0.30466 | -0.31912 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.34244 | 1.3594 | 0.076774 | -0.35024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.35562 | 1.2863 | 0.49867 | 0.37946 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 116 | 0.20862 | 1.3582 | 0.29599 | -0.34564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 514625 | 0.051258 | 0.00056380 | -0.19136 | -0.9749 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.57571 | 1.2650 | 0.2336 | -0.42936 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.071429 | 1.4809 | 0.32943 | -0.28491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 102 | 0.63431 | 1.4904 | 0.2976 | -0.77661 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.086 | 1.0766 | 0.47382 | -0.55677 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.059524 | 1.5065 | 0.02905 | -0.9059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 105 | 0.35381 | 1.3698 | 0.21206 | -0.82378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.26034 | 1.4204 | -0.13459 | -0.91529 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.63333 | 1.4690 | 0.47233 | -0.98757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.045 | 1.2492 | 0.38827 | -0.70688 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | 0.11651 | 1.2252 | 0.55461 | 0.0095537 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32273 | 1.1659 | 0.14953 | -0.92697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.538 | 0.97788 | 0.25741 | -0.13873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.62941 | 1.3429 | 0.045183 | -0.72813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3775 | 0.86627 | 0.68082 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.21301 | 1.2940 | 0.053168 | -0.1936 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.47 | 1.1078 | 0.53067 | -0.92768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.382 | 1.1471 | -0.45878 | -0.27237 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.22222 | 1.3001 | 0.5589 | -0.26118 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.12188 | 1.3158 | 0.59831 | 0.15076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.17222 | 1.3147 | 0.94516 | 0.55718 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.31667 | 1.2266 | 0.29937 | -0.33142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.43222 | 1.1902 | -0.030025 | 0.17067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.22 | 0.84149 | -0.10698 | -1.1362 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.41486 | 1.2257 | 0.45097 | -0.46367 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.43333 | 1.2855 | 0.12912 | 0.63588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.083333 | 1.2941 | 1.5328 | 3.1831 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.33095 | 1.3424 | 0.69636 | 0.4236 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47222 | 0.92349 | 0.19635 | -0.85241 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.51667 | 1.3055 | 0.37988 | -0.69824 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.42619 | 1.1019 | -0.87539 | 0.34803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.38651 | 1.2915 | 0.29306 | 0.10023 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 1.9 | 1.5346 | -0.36984 | -0.61452 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.4314 | 1.6887 | 0.060822 | 0.039722 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 179 | 0.32737 | 1.4437 | 0.17904 | -0.29851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 231 | -0.0093258 | 1.5955 | 0.11396 | -0.26288 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 163 | 0.079233 | 1.5676 | 0.46238 | 0.054258 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.021174 | 1.6979 | 0.41886 | 0.019326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 276 | -0.16068 | 1.5709 | 0.19824 | -0.10311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 180 | 0.0071288 | 1.6786 | 0.2163 | -0.18872 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 175 | 0.60154 | 1.6376 | 0.12578 | -0.40774 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 373 | 0.032991 | 1.5272 | 0.27047 | -0.1048 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 268 | 0.36608 | 1.5673 | 0.25572 | -0.40873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 339 | 0.063968 | 1.5759 | 0.11045 | -0.1228 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 237 | 0.13886 | 1.5001 | 0.25565 | -0.07726 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 244 | 0.26041 | 1.4774 | 0.22817 | -0.27674 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 222 | 0.033363 | 1.4570 | 0.31407 | 0.11014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 337 | 0.23359 | 1.4275 | 0.34097 | -0.016341 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 221 | 0.55884 | 1.4409 | 0.2396 | -0.48424 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 171 | 0.28344 | 1.4516 | 0.14895 | -0.61939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 304 | 0.32278 | 1.3304 | 0.16043 | -0.48239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 250 | 0.18133 | 1.4940 | 0.10097 | 0.17719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | 0.41086 | 1.3010 | 0.40242 | -0.13391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 130 | 0.070769 | 1.4650 | 0.7341 | 0.39933 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.094697 | 1.2879 | 0.2458 | -0.24761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | 0.17893 | 1.2405 | 0.17193 | -0.1541 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | -0.10306 | 1.2935 | 0.47627 | 0.55732 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 112 | 0.32589 | 1.4371 | 0.13904 | -0.49974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 229 | 0.31097 | 1.3876 | 0.1945 | -0.48259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | 0.526 | 1.2748 | 0.10232 | 0.15784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 166 | 0.32258 | 1.2697 | 0.4284 | 0.20386 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 120 | 0.18626 | 1.3234 | 0.096905 | -0.93955 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.3331 | 1.3857 | 0.10266 | 0.304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.051569 | 1.3479 | 0.35564 | -0.091306 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 103 | 0.34893 | 1.2740 | 0.12082 | -0.275 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 269 | 0.35358 | 1.4587 | 0.32957 | -0.35105 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | 0.23093 | 1.4694 | 0.12882 | -0.46374 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 85 | 0.74669 | 1.2850 | 0.3223 | -0.55985 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 227 | 0.34692 | 1.4897 | 0.23269 | -0.37453 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 122 | 0.07459 | 1.2053 | 0.03749 | -0.48284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 87 | 0.33736 | 1.3494 | 0.37958 |-0.00046676 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 196 | 0.099861 | 1.2995 | 0.2885 | 0.040522 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.62467 | 1.3061 | 0.4106 | -0.57373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | -0.10265 | 1.2608 | 0.43166 | -0.40392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 168 | 0.42917 | 1.3080 | 0.29525 | -0.38064 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 149 | 0.54866 | 1.3570 | 0.31971 | -0.1263 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 84 | 0.30621 | 1.4539 | 0.22471 | -0.32171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.49 | 1.5642 | 0.39207 | -0.25351 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.3754 | 1.2451 | 0.64259 | 0.96516 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.75 | 1.3202 | 0.055077 | -0.0046684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 181 | 0.50373 | 1.3265 | 0.11006 | -0.46693 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 48 | 0.55735 | 1.5082 | 0.3457 | -0.0090583 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.08125 | 1.3381 | -0.060435 | -0.69443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.45 | 1.4259 | 0.85977 | 0.52786 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 200 | 0.1485 | 1.3110 | 0.27371 | -0.41373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.37941 | 1.3169 | 0.26162 | -0.046111 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 117 | 0.23291 | 1.4345 | 0.13973 | -0.64059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.24231 | 1.2225 | 0.49019 | -0.85305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.33148 | 1.3314 | 0.29682 | -0.86302 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.47105 | 1.3721 | 0.47504 | -0.82259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.15625 | 1.2178 | -0.51512 | -0.21903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.19902 | 1.3018 | 0.2258 | -0.25938 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.37778 | 1.4305 | 0.37121 | -0.44816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31757 | 1.3334 | -0.01136 | -0.073388 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 106 | 0.19528 | 1.2268 | 0.47825 | 0.67978 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.14286 | 1.1322 | 0.40976 | -0.54869 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.42037 | 1.1408 | -0.16132 | -0.7235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.12458 | 1.2177 | 0.22936 | -0.60447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.14815 | 1.1121 | -0.048653 | -0.44286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.17857 | 1.5508 | 0.40952 | -1.1018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 208649 | 0.0011092 | 0.00027649 | 0.10654 | -1.6324 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 208649 | 0.035719 | 0.010998 | -0.51971 | -0.80467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 21028 | 0.0004337 | 4.3793e-06 | 0.092347 | -0.99556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 21028 | 0.019038 | 0.0049675 | 0.060028 | -1.021 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.099038 | 1.3706 | 0.19427 | -0.063263 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.068105 | 1.3971 | 0.17549 | 0.10607 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.053333 | 1.4673 | -0.40844 | -0.96634 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3034 | 0.11232 | 0.012411 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.31923 | 1.2730 | 0.084512 | -0.50688 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.0625 | 1.0741 | -0.31341 | 0.84992 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.56333 | 0.84606 | -0.79603 | -0.38777 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.031481 | 1.4358 | 1.1147 | 2.1143 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 75 | -0.0033333 | 1.3486 | -0.17845 | 0.30534 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 88 | -0.1117 | 1.1857 | 0.12714 | 1.4732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 177 | 0.078213 | 1.6290 | 0.43187 | 0.22649 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | 0.2625 | 1.3283 | 0.12724 | -0.32442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 34 | 0.026471 | 1.1548 | -0.20922 | -0.14512 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 93 | 0.21344 | 1.3487 | -0.10546 | -0.17487 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | 0.15566 | 1.0616 | 0.11587 | 0.22569 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | -0.26944 | 2.1520 | 0.24465 | -0.51349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.074 | 1.1406 | -0.20598 | -0.060978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.142 | 1.3778 | 0.41645 | -0.34493 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.08125 | 1.0844 | -0.12888 | 0.3566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | 0.28667 | 1.1219 | 0.34521 | -0.18011 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | 0.12959 | 1.2105 | -0.34779 | -0.68874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.0058824 | 2.0028 | 0.53457 | 0.44988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.33462 | 1.4269 | 0.27411 | -0.19288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.38333 | 2.2429 | -0.16762 | -0.50714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.17593 | 0.99614 | 0.9843 | 0.67401 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.20758 | 1.2908 | 0.030492 | 0.033375 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.45769 | 1.1307 | 0.56254 | -0.52082 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.24091 | 1.0449 | 0.28981 | -0.13563 | | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1097 | -0.78644 | 1.3517 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 195393 | 0.00047306 | 1.3639e-05 | 0.051353 | -0.98668 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 195393 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.078169 | 1.3504 | -0.33876 | 0.1486 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.86055 | 0.098195 | -0.94628 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17333 | 1.2709 | 0.28927 | -0.39808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11706 | 1.2252 | -0.074952 | 0.068798 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13588 | 1.3971 | -0.11807 | -0.75404 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.254 | 1.3425 | -0.35394 | -0.078737 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2603 | 0.1399 | -0.71431 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13571 | 1.2415 | 0.36767 | -0.63797 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.062871 | 1.2248 | 0.082352 | -0.30141 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.18529 | 1.1494 | 0.13401 | -0.53628 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.088462 | 1.0164 | 0.32703 | -0.69894 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.082787 | 1.3241 | 0.52304 | 0.88588 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.043333 | 1.2369 | 0.060205 | -0.26176 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.39783 | 1.4803 | 0.94114 | 0.23432 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.13587 | 1.3833 | -0.53241 | 0.96334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18167 | 1.3712 | 0.19723 | -0.20692 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.066 | 1.0920 | 0.69627 | 0.247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.146 | 1.3875 | -1.0564 | 0.62675 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31667 | 1.1355 | 0.2314 | -0.79893 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30424 | 1.3310 | -0.11951 | -0.39965 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27 | 1.3809 | -0.16231 | -0.53953 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12255 | 1.3303 | 0.64121 | 0.431 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.11883 | 1.2498 | 0.51138 | 0.0098555 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16326 | 1.4750 | 0.18887 | 0.080004 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.1583 | 1.4099 | 0.090684 | -0.13574 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.044011 | 1.3425 | -0.11172 | -0.39184 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031019 | 1.3905 | 0.32501 | 0.12547 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.068848 | 1.3807 | -0.057034 | 0.33621 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.033494 | 1.4022 | 0.11991 | 0.053126 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.013883 | 1.4333 | 0.07052 | 0.022152 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.094719 | 1.4004 | 0.41508 | 0.48876 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 347 | 0.16088 | 1.2914 | 0.29041 | 0.51472 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28488 | 1.4803 | -0.048623 | -0.3252 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24619 | 1.3838 | 0.27828 | 0.23739 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | 0.13 | 1.5395 | 0.0022364 | 0.45131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.079815 | 1.2904 | 0.33285 | 0.11324 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.04547 | 1.4715 | 0.32171 | 0.16566 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14521 | 1.4142 | 0.081452 | -0.0097607 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23857 | 1.3337 | 0.36415 | 0.047377 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.093597 | 1.4204 | 0.26204 | 0.2239 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.12014 | 1.4684 | 0.26808 | -0.26102 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.113 | 1.3111 | -0.081816 | -0.05149 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13248 | 1.1992 | 0.23613 | -0.21624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.046623 | 1.5278 | 0.050595 | 0.71635 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05093 | 1.2729 | 0.32334 | -0.26775 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.012222 | 1.3595 | 0.30983 | -0.20547 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23178 | 1.4258 | 0.30797 | 0.63209 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 260 | 0.20323 | 1.4405 | 0.15323 | -0.0083506 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.01359 | 1.4601 | 0.44249 | -0.18912 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.21934 | 1.3179 | 0.25659 | 0.13343 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.048347 | 1.2001 | -0.027737 | 0.041604 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.09898 | 1.1666 | 0.3383 | -0.30996 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.04619 | 1.3858 | 0.27409 | -0.088025 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22813 | 1.3035 | 0.11787 | 0.047461 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10636 | 1.2685 | -0.050508 | -0.27448 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.40217 | 1.2054 | 0.16798 | -0.13864 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.07043 | 1.3929 | -0.35001 | 0.62748 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.091964 | 1.4959 | 0.43745 | 0.86283 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25238 | 1.1226 | 0.67472 | -0.21564 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.26892 | 1.4025 | 0.13975 | 0.19776 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.3123 | 1.2098 | 0.012558 | -0.32212 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0063265 | 1.3702 | -0.27903 | 0.20625 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.22358 | 1.2681 | 0.22222 | 0.19041 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.018116 | 1.4544 | -0.12826 | -0.56274 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.7577e-16 | 1.4996 | 0.19546 | -0.87122 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.016667 | 1.3892 | 0.28172 | -0.13334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.14844 | 1.0123 | 0.09397 | -0.47964 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15357 | 1.3018 | -0.11487 | -0.51942 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74375 | 1.2609 | -0.42017 | 0.012395 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16765 | 1.3594 | 0.26018 | -0.13904 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.29375 | 1.4065 | -0.28255 | -0.26242 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.080657 | 1.1802 | 0.13393 | -0.44114 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.041304 | 1.5773 | 0.33072 | -0.24887 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.14684 | 1.5697 | 0.81769 | 0.46294 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.026531 | 1.2628 | -0.45503 | 0.54924 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.085 | 1.3336 | -0.2324 | 0.56343 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10354 | 1.2452 | -0.15157 | 0.046372 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 195391 | 0.00047156 | 3.2967e-05 | 1.224 | 0.50814 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 195391 | 0.023702 | 0.0036077 | -0.086029 | -1.0712 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13835 | 0.92288 | -0.051066 | -0.1504 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.12385 | 1.6771 | -0.69408 | -0.21999 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.41957 | 1.8145 | 0.07273 | -1.3529 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.066667 | 0.76293 | 0.92477 | 0.85454 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5017 | 1.5156 | -0.085468 | -1.0179 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13571 | 1.3434 | 0.36231 | -0.12119 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.15 | 1.3879 | 0.49584 | 0.0052614 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21935 | 1.3721 | -0.56857 | 0.76916 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67174 | 1.4832 | -0.058377 | -0.13949 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14333 | 0.81932 | 0.1472 | -0.60394 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 195393 | 0.00051339 | 2.5292e-05 | -0.72402 | -0.5835 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 195393 | 0.029684 | 0.00015448 | -0.10083 | -0.79297 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20205 | 1.3525 | 0.36593 | 0.12277 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.042521 | 1.4994 | 0.14394 | -0.043641 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.056189 | 1.3939 | 0.04595 | 1.202 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.11981 | 1.4304 | 0.2992 | -0.12373 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27523 | 1.6655 | 0.22763 | 0.097513 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.03806 | 1.1712 | 0.013511 | -0.23053 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11792 | 1.3058 | 0.17174 | -0.63151 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.038462 | 1.6043 | 0.25204 | -0.14831 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.01 | 1.6066 | -0.3327 | -0.20678 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.2693 | 1.7190 | 0.065768 | 0.31218 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.11111 | 1.4253 | 0.69884 | 1.9919 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36667 | 1.4845 | -0.19951 | 0.78161 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.20833 | 1.7905 | -0.029422 | -0.41083 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2349 | 0.37803 | 0.35114 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.14664 | 1.3661 | -0.31527 | 0.089899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31364 | 1.2629 | -0.36159 | 0.2148 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.2637 | 1.5871 | 0.087329 | -0.48441 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.013014 | 1.2339 | -0.2356 | 0.33475 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28103 | 1.1897 | 0.056302 | 0.27976 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.010606 | 1.2742 | 0.48529 | 0.045969 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18385 | 1.5397 | -0.47382 | -0.11537 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.023874 | 1.2447 | 0.24918 | 0.35802 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0045455 | 1.1309 | 0.16329 | -0.94287 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0014563 | 1.7224 | -0.048944 | -0.2254 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17105 | 1.3196 | -0.072466 | 0.30073 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.093243 | 1.4330 | -0.55072 | 1.3788 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.074444 | 0.99402 | 0.65118 | 0.88702 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.027391 | 1.5409 | 0.10844 | 0.62333 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.25 | 1.2361 | 0.23373 | 0.71468 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.09878 | 1.4623 | 0.32497 | 1.0796 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.028333 | 1.3536 | -0.083373 | -0.5263 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19894 | 1.5174 | -0.39579 | -0.96604 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61 | 1.1473 | 0.74209 | -0.55037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.086782 | 1.2683 | -0.41865 | 0.2946 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.037952 | 1.3214 | 0.40104 | -0.031381 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.14815 | 1.2660 | 0.25293 | 1.1864 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.058247 | 1.4819 | 0.092558 | -0.36836 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21792 | 1.3412 | 0.39626 | 0.20979 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.01 | 1.5868 | -0.018956 | -0.50396 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25308 | 1.5931 | 0.028918 | -0.61793 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.20714 | 1.2610 | 0.048398 | -0.5136 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43333 | 1.3700 | 0.29621 | -0.85938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.39168 | 1.9068 | 0.24089 | 0.32745 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.017763 | 1.3524 | 0.052802 | 0.057283 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088961 | 1.1814 | 0.063416 | -0.44385 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.015445 | 1.4234 | -0.33155 | 0.48686 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.14153 | 1.3324 | 0.93904 | 1.718 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.14216 | 1.3998 | -0.11703 | -0.4019 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59857 | 1.1269 | 0.15378 | -0.22203 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13529 | 1.3580 | 0.25848 | -0.32116 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.014234 | 1.2693 | -0.053422 | -0.54499 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0063636 | 1.3241 | 0.16759 | -0.54721 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.055882 | 1.0079 | -0.0034036 | -1.0625 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21486 | 1.1454 | 0.87467 | 2.1396 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10535 | 1.4389 | 0.15443 | 0.402 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.036475 | 1.3831 | 0.10933 | 0.2284 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.034592 | 1.3412 | 0.028039 | 0.5311 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.015964 | 1.3580 | 0.077843 | 0.5465 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0090474 | 1.3692 | -0.074592 | 0.42392 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.027589 | 1.3763 | 0.03888 | 0.49182 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.025494 | 1.3396 | 0.084894 | 0.40868 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.057019 | 1.3359 | 0.10607 | 0.47422 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2975 | -0.016933 | 1.3480 | 0.16002 | 0.54412 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.044801 | 1.4565 | 0.086929 | 0.53314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3541 | 0.016585 | 1.3569 | 0.13088 | 0.63938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.032377 | 1.3723 | 0.1647 | 0.3855 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.070362 | 1.3426 | 0.059947 | 0.76444 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.0020726 | 1.4042 | 0.086725 | 0.46111 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.014014 | 1.3567 | 0.10455 | 0.33652 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.080485 | 1.3335 | 0.12942 | 0.20265 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.05679 | 1.3933 | 0.046992 | 0.45711 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.094418 | 1.4166 | 0.16273 | 0.26372 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.030557 | 1.4240 | 0.23275 | 0.36808 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1509 | 0.024305 | 1.3500 | 0.063002 | 0.2665 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1272 | -0.043632 | 1.3629 | 0.1365 | 0.41207 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.046321 | 1.2970 | 0.030037 | 0.026195 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.031244 | 1.4507 | 0.15607 | 0.34521 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.046962 | 1.4462 | 0.06189 | 0.55948 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.019571 | 1.3218 | 0.18387 | 0.1632 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1373 | 0.047998 | 1.3262 | 0.075608 | 0.16837 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.014539 | 1.4168 | -0.014641 | 0.13353 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.011382 | 1.3518 | 0.22844 | 0.18931 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 691 | 0.073203 | 1.3437 | 0.11481 | -0.13995 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 618 | 0.060485 | 1.4386 | 0.053485 | 0.81545 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.0017928 | 1.3976 | 0.12096 | 0.34926 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.11236 | 1.3438 | -0.029507 | 0.34753 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.10998 | 1.5639 | -0.059437 | 0.097268 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.047266 | 1.5464 | 0.013839 | 0.27641 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027279 | 1.5442 | 0.068099 | 0.74203 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.021865 | 1.4301 | 0.05337 | 0.45267 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04825 | 1.3887 | -0.095169 | 0.48354 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17917 | 1.4651 | 0.073398 | 1.1121 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.053537 | 1.3738 | 0.058017 | -0.058925 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.031921 | 1.2561 | 0.1169 | -0.37854 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11554 | 1.3669 | 0.30377 | 0.59149 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045613 | 1.2986 | 0.069631 | 0.17013 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3836 | 0.0071098 | 0.089119 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.074883 | 1.5795 | 0.026771 | 0.97978 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.031232 | 1.3372 | 0.069406 | -0.10578 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15859 | 1.2771 | -0.092534 | 0.63111 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.26165 | 1.2660 | 0.31285 | 0.021425 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.28091 | 1.4041 | 0.36188 | 0.095458 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.0089499 | 1.5129 | 0.32941 | 0.24157 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19688 | 1.4571 | 0.26025 | 0.29071 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15611 | 1.2685 | 0.023342 | -0.32336 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10623 | 1.2418 | 0.13371 | 0.34276 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.086254 | 1.3350 | 0.16763 | 1.0137 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12874 | 1.3256 | 0.11194 | 0.11656 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11253 | 1.2889 | 0.24439 | 0.016892 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.021396 | 1.2938 | -0.072601 | 0.10779 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.051905 | 1.4409 | -0.31094 | 0.49349 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039091 | 1.2181 | 0.21102 | -0.15673 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.1221 | 1.3210 | 0.28147 | 0.48256 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.10263 | 1.2796 | 0.071635 | 0.26015 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050714 | 1.2236 | -0.26439 | -0.22348 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035971 | 1.4131 | 0.17555 | -0.31591 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.25066 | 1.2306 | 0.33272 | 0.03129 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.024689 | 1.4935 | 0.074293 | -0.15173 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.13018 | 1.3435 | 0.13134 | 0.4674 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10857 | 1.1677 | 0.011236 | 0.20713 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.031935 | 1.2560 | -0.063219 | 0.38504 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.058392 | 1.5020 | -0.0051542 | 0.40271 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16684 | 1.4829 | 0.3909 | 0.42229 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 195393 | 0.00045367 | 8.9071e-06 | 0.47307 | -0.92702 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 195393 | 0.029507 | 0.00023674 | 0.1974 | -1.1187 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0115 | 0.21819 | 0.30456 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.085938 | 1.4079 | 0.058135 | -0.048441 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3401 | 1.1926 | 1.8734 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28696 | 1.1981 | 0.50588 | -0.025306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49286 | 1.3963 | 0.35045 | -0.15411 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.38529 | 1.4824 | 0.12517 | 0.14956 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.028125 | 1.3462 | 0.46977 | 0.06325 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.2537 | 1.3409 | -0.32969 | -0.293 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.17105 | 1.1496 | -0.31826 | -0.17285 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.0375 | 1.4715 | -0.21839 | -0.91115 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.12813 | 1.9108 | -0.41373 | -0.1732 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.09 | 0.91400 | -0.36305 | -0.46276 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32727 | 1.5556 | 0.35204 | -0.92548 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.26957 | 1.3024 | 0.64208 | 1.694 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.35 | 1.4968 | 0.019682 | -0.47202 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.095455 | 0.90958 | -0.7757 | 0.48492 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.32391 | 1.1983 | -0.51064 | -0.15802 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25314 | 1.4446 | 0.048112 | 0.18938 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.23 | 1.5833 | -0.49556 | -0.35038 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.87 | 1.7936 | -0.049495 | -0.44914 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32209 | 1.9550 | -0.053943 | -0.83379 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.25 | 1.3740 | -0.18005 | -0.9204 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15357 | 1.7691 | -0.59632 | -0.56382 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95 | 1.6811 | -0.078952 | -0.28025 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58429 | 1.2081 | -0.20615 | -0.97647 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46026 | 1.7650 | 0.040871 | -0.55529 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.46789 | 1.5522 | -0.3819 | -0.40504 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41818 | 1.1479 | 0.40371 | -0.98508 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.60333 | 1.4037 | -1.3986 | 2.0433 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.031081 | 1.5673 | 0.019245 | -0.39941 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16515 | 1.5578 | 0.19421 | -0.27751 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.35789 | 1.2970 | 0.12018 | -0.066865 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19691 | 1.3650 | 0.53361 | 0.069819 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0053 | 1.2296 | 0.024809 | -0.36402 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.014706 | 1.4296 | -0.40421 | -0.23914 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.055128 | 1.4578 | 0.34568 | 0.68906 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49894 | 1.3979 | 0.33595 | -0.38313 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11901 | 1.2339 | 0.50366 | 0.43954 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.16875 | 1.5068 | 0.031166 | -0.37222 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.0047619 | 2.1314 | -0.023749 | -0.3842 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.1775 | 1.9503 | 0.47931 | -0.86019 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.27083 | 1.3705 | 0.14245 | -0.0062807 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.25185 | 1.3313 | 0.42292 | -0.44177 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.135 | 1.1042 | 0.92148 | 0.47301 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21308 | 1.1380 | 0.14799 | -0.47242 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 72104 | 0.00049445 | 7.1238e-05 | 0.68829 | -1.2595 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 72104 | 0.021135 | 0.0057983 | -0.25797 | -1.2383 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.44167 | 1.5044 | 0.54003 | 0.98947 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.48077 | 1.3919 | 0.30395 | -0.30181 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 20 | 0.335 | 1.5749 | -0.3259 | 0.24139 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | 0.54286 | 1.6040 | 0.33435 | -0.058668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.55968 | 2.1191 | 0.0031544 | -0.85114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.08871 | 1.3727 | -0.58948 | 0.91708 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.375 | 1.2194 | 0.44242 | -0.67564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 23 | 0.2587 | 1.1538 | -0.14076 | -0.78589 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 28 | -0.78571 | 1.0968 | -0.45017 | 0.82893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.066667 | 1.1146 | 0.018996 | -1.1555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.43571 | 2.2160 | 0.017666 | -1.1384 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 245329 | 0.00046943 | 1.2732e-05 | 0.57258 | -0.66203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 245329 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | -0.052985 | 1.0931 | 0.097503 | -0.23203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.25263 | 1.6657 | 0.62383 | 1.2014 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.40185 | 1.3598 | 0.26612 | -0.35522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.1625 | 0.78412 | -0.017769 | -0.5366 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17807 | 1.2833 | -0.073166 | 0.46316 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.030952 | 1.4302 | -0.78301 | 0.66353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.08625 | 1.3081 | -0.18672 | 0.077709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.126 | 1.2612 | 0.080584 | -0.30056 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.2528 | 1.7344 | 0.3247 | -0.10122 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.13165 | 1.2747 | 0.081096 | 0.31941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | -0.006 | 1.3381 | -0.55716 | 0.03749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.041765 | 1.3898 | 0.19465 | -0.58571 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.122 | 0.98164 | -0.23296 | -0.33756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.18636 | 1.6729 | -0.15234 | -0.78213 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.17647 | 1.1897 | -0.72917 | 0.77253 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.083735 | 1.3271 | 0.1963 | -0.66454 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.18333 | 1.4554 | -0.23884 | -0.51873 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.32049 | 1.4815 | 0.77621 | 0.31124 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.62037 | 1.1251 | 0.55331 | 0.45655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.36091 | 1.4134 | 0.33009 | 0.22166 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.12917 | 1.4199 | 0.48702 | 0.20217 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.076923 | 1.0219 | 0.30933 | -0.72461 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.0029412 | 1.3859 | 1.1559 | 1.4598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.22742 | 0.98822 | 0.11987 | -0.79769 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.38333 | 1.3042 | 0.90062 | 0.21107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.42059 | 1.4600 | 0.98243 | -0.13317 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.01 | 1.6023 | -0.085991 | -0.55954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.034615 | 1.6014 | -0.22691 | -0.87703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.003125 | 1.5060 | 0.011794 | -1.0107 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.0016667 | 1.3566 | 0.36173 | -0.065992 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.29898 | 1.3914 | 0.60063 | -0.023285 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.07449 | 1.1941 | 0.07678 | 0.080183 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.022727 | 1.3381 | -0.23149 | -0.85584 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.05 | 0.90686 | 0.25487 | -0.20283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.07069 | 1.1565 | 0.80364 | 0.090864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.79231 | 1.0627 | 0.12145 | 0.3905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.21383 | 1.3259 | -0.2696 | -0.4522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.053571 | 1.2938 | 0.61678 | 0.59763 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.096154 | 1.3622 | 0.22083 | -0.14863 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.122 | 1.3061 | -0.98819 | 0.37958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.058 | 1.0692 | 0.75031 | 0.21041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.023077 | 1.4722 | 0.56547 | 0.58694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.25625 | 1.3631 | 0.1635 | -0.84371 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.475 | 1.7011 | 0.32922 | -1.2498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.063043 | 1.3601 | -0.029967 | -0.61069 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0875 | 1.0909 | -0.13055 | -0.18117 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.42391 | 1.5674 | -0.1645 | -0.94463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.87308 | 1.4020 | 0.016435 | -0.80681 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.037879 | 1.1491 | -0.35032 | 0.74753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.092857 | 1.1924 | 0.19419 | -0.10301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.50313 | 1.6144 | 0.24879 | -0.39262 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 233 | -0.14114 | 1.4921 | 0.14213 | -0.056156 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.037597 | 1.3715 | -0.031803 | -0.50896 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.10499 | 1.3735 | -0.082463 | -0.42766 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 319 | 0.040556 | 1.3783 | 0.23991 | -0.080329 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | -0.22523 | 1.3323 | 0.068402 | 1.071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | -0.0034188 | 1.3973 | 0.07179 | 0.26187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 248 | 0.028019 | 1.4258 | 0.16441 | -0.088722 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 358 | -0.22111 | 1.3417 | 0.043848 | 0.1525 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.070027 | 1.2724 | 0.24351 | 0.55346 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 250 | 0.23647 | 1.4565 | 0.10764 | -0.05639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 409 | 0.21617 | 1.3400 | -0.018863 | 0.37823 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 338 | 0.024956 | 1.4718 | -0.065498 | 0.21963 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 420 | -0.16306 | 1.2982 | 0.087397 | 0.1024 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 336 | -0.07654 | 1.4341 | 0.52349 | 0.52461 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.13425 | 1.3924 | 0.19251 | -0.12986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.08608 | 1.2579 | -0.031545 | 0.37343 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 438 | -0.0096154 | 1.3637 | 0.1927 | 0.18174 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 265 | -0.16277 | 1.4059 | 0.084932 | -0.2685 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.049051 | 1.3695 | 0.1176 | 0.47468 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 290 | -0.20115 | 1.2173 | 0.30556 | 0.5542 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 284 | -0.063068 | 1.3586 | 0.12747 | 0.56319 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 241 | 0.11754 | 1.3222 | 0.12161 | -0.15269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 215 | 0.15348 | 1.5330 | 0.14388 | 0.73094 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 184 | 0.020571 | 1.3832 | 0.18339 | -0.52331 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 457 | -0.10677 | 1.3675 | 0.24847 | 0.4535 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 365 | 0.047424 | 1.3419 | 0.10673 | 0.41269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | 0.13034 | 1.5083 | 0.23668 | -0.044949 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 301 | 0.086034 | 1.3971 | 0.090012 | -0.12869 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 293 | -0.30504 | 1.2145 | 0.14092 | -0.14852 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 235 | -0.058563 | 1.2706 | 0.49098 | 0.061625 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | -0.12761 | 1.4043 | -0.24764 | 0.63265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | 0.1875 | 1.4131 | 0.23484 | 0.17964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | 0.14908 | 1.3828 | 0.14692 | -0.049056 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 458 | 0.096279 | 1.2951 | 0.14722 | 0.1874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.065776 | 1.3081 | 0.14475 | 0.37723 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 307 | -0.015893 | 1.3135 | 0.13055 | -0.043187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | -0.032436 | 1.2848 | -0.023395 | 0.28081 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 120 | -0.083333 | 1.3060 | 0.38989 | 0.22567 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | 0.098241 | 1.3347 | 0.1597 | -0.2071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 281 | -0.022744 | 1.4550 | 0.20761 | 0.34566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.06358 | 1.4658 | 0.043504 | 0.50801 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 128 | -0.22323 | 1.3149 | -0.16015 | 0.35248 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 163 | -0.092236 | 1.2478 | 0.0002954 | -0.5066 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 125 | -0.11325 | 1.2466 | 0.39244 | 0.26335 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 202 | 0.044509 | 1.3563 | 0.34272 | 0.50074 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.23172 | 1.2810 | 0.32813 | 0.24992 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | -0.06746 | 1.4351 | -0.21096 | 0.16568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 162 | 0.18625 | 1.2518 | 0.398 | 0.39032 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.11517 | 1.8503 | 0.49969 | -0.29476 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.0875 | 1.3503 | 0.16207 | 0.29018 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035385 | 1.2380 | -0.033542 | 0.38928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.016842 | 1.2673 | 0.14159 | -0.10893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 167 | -0.18675 | 1.2769 | -0.12334 | 0.24958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | -0.20857 | 1.5487 | 0.016114 | -0.49987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.15351 | 1.4285 | 0.029925 | -0.40463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 122 |-0.00091743 | 1.1678 | 0.28149 | 0.67133 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.043548 | 1.0821 | 0.011878 | -0.16832 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 195 | -0.10158 | 1.3581 | 0.054712 | -0.23383 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.14942 | 1.4906 | 0.1045 | -0.58755 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 143 | -0.17183 | 1.4749 | 0.065269 | 0.19828 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | -0.078125 | 1.1739 | 0.50086 | 0.77716 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | -0.26078 | 1.3674 | -0.096422 | 0.35032 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.072917 | 1.4797 | 0.56347 | 0.57648 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.041566 | 1.3166 | -0.045842 | 0.27072 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.14661 | 1.4990 | -0.12252 | -0.069238 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 131 | 0.093671 | 1.1100 | 0.17826 | 0.074199 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 115 | -0.19461 | 1.3400 | 0.045546 | -0.020105 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.44518 | 1.5008 | 0.60964 | 0.29598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.25111 | 1.2553 | -0.1588 | 0.16391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 245327 | 0.00046316 | 2.9724e-05 | 1.6786 | 2.0468 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 245327 | 0.024744 | 0.0034464 | -0.5639 | -0.77952 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.068548 | 1.1004 | -0.30836 | 0.60885 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 15 | -1.45 | 2.1073e-08 | 2.1299e+08 | 4.1499e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.06 | 0.75690 | 1.009 | 0.95207 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.4741 | 1.4940 | -0.082315 | -1.0016 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.0050725 | 1.2618 | -0.13162 | 0.2448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.18478 | 1.2496 | 1.828 | 4.6243 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.25909 | 1.2240 | 0.71505 | 0.4028 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.9587 | 1.7042 | 0.29342 | -0.84966 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.094643 | 1.2784 | 0.032951 | 0.22175 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.26379 | 1.7965 | 0.66502 | -0.012852 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.2629 | 1.0933 | -0.065522 | -0.41692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.058333 | 1.0762 | -0.21469 | -0.38325 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.405 | 1.2515 | -0.3789 | -0.41719 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.45333 | 1.9493 | 0.64982 | -0.38796 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.055 | 1.7434 | 0.12873 | 0.86162 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.096667 | 0.80405 | -0.031441 | -0.77062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.84444 | 2.8938 | 0.046213 | -1.4761 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.018966 | 1.0967 | -0.04181 | -0.73884 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 245329 | 0.00050627 | 2.5376e-05 | -0.24475 | -1.1293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 245329 | 0.029729 | 0.00015509 | -0.4019 | -0.81517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 252 | -0.072979 | 1.4049 | 0.2082 | 0.52839 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 279 | 0.15019 | 1.5645 |-0.00019538 | 0.57284 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 319 | -0.015693 | 1.3586 | 0.23975 | 0.91699 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.067627 | 1.1882 | 0.32789 | 0.36746 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 219 | 0.081004 | 1.2282 | 0.43626 | 0.68355 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.055582 | 1.1979 | -0.025495 | 0.12503 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | -0.15157 | 1.7920 | 0.026654 | 0.44577 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 195 | 0.17639 | 1.2419 | -0.078079 | -0.18621 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.078049 | 1.3251 | -0.0059705 | -0.20244 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 97 | 0.17604 | 1.3755 | 0.1172 | 0.022111 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.15 | 1.3378 | 0.24802 | -0.037184 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 122 | -0.15661 | 1.8973 | 0.081907 | 0.22137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.36136 | 1.4682 | 0.32777 | 0.33287 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | -0.020847 | 1.4927 | 0.082705 | 0.5842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.26429 | 1.2737 | -0.051302 | -0.75942 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.11667 | 1.3421 | 0.37405 | 0.31309 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.32009 | 1.6485 | -0.34197 | -0.3694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 169 | -0.031419 | 1.3321 | 0.010679 | -0.085231 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.08381 | 1.3507 | 0.53875 | 0.89756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | -0.043056 | 1.7719 | 0.22245 | -0.2946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | -0.25361 | 1.4209 | -0.065965 | 0.055146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.043953 | 1.4844 | 0.16833 | -0.04155 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | -0.041971 | 1.3147 | 0.38915 | 0.052795 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 131 | -0.10892 | 1.3757 | 0.3376 | 1.1165 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.054511 | 1.3439 | -0.44466 | 0.11831 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 116 | -0.069797 | 1.3749 | -0.21922 | -0.24704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1 | -0.95 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.23571 | 1.1972 | -0.57015 | 0.51586 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 91 | 0.10934 | 1.2739 | 0.38546 | 0.062072 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.10034 | 1.3486 | -0.092192 | -0.52549 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.059237 | 1.3062 | 0.16697 | 0.31143 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.082394 | 1.3390 | -0.12217 | 0.42222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.3871 | 1.3857 | -0.33586 | -0.26963 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 49 | 0.23333 | 1.3287 | 0.20354 | -0.050522 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.35137 | 2.1487 | -0.21274 | -0.3359 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 204 | 0.10637 | 1.3679 | 0.10575 | -0.091656 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15 | -0.59 | 2.0774 | 0.20348 | -1.4233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.20345 | 1.4723 | -0.12291 | -0.45348 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.088 | 1.4271 | 0.36465 | 0.52618 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.13696 | 1.3069 | -0.30819 | 0.01875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.025 | 1.1784 | 0.45381 | -0.749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.13421 | 1.0384 | -0.27016 | -0.51272 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.19946 | 1.4550 | 0.50255 | 1.1898 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 151 | -0.12199 | 1.3878 | 0.11086 | 1.0554 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.11579 | 1.2280 | 0.36919 | 1.087 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.033636 | 1.3614 | 0.72211 | 1.0687 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 92 | -0.032609 | 1.3795 | 0.011931 | -0.26244 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.14333 | 1.1922 | 0.1203 | 0.33433 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.16636 | 1.3180 | -0.31313 | 0.11423 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.52273 | 1.5955 | -0.27825 | -1.1972 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.60667 | 1.1248 | 0.7211 | -0.61558 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.12722 | 1.6158 | 0.12989 | -0.032459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.045946 | 1.2437 | -0.1565 | 0.17187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.083333 | 1.3029 | 0.55573 | -0.77959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.22561 | 1.3889 | -0.14161 | -0.47335 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14063 | 1.1024 | 0.46227 | -0.96836 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.21563 | 1.4912 | -0.11585 | -0.4797 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.066667 | 1.2216 | -0.008196 | -0.8261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.518 | 1.3939 | 0.7488 | -0.04871 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.29364 | 1.4529 | 0.27948 | -0.31441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.13 | 1.4838 | 0.36159 | -0.52201 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 55 | -0.14818 | 1.1681 | -0.40845 | -0.12152 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.60185 | 1.2084 | -0.32585 | -0.21646 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.1229 | 1.3966 | -0.026339 | -0.17096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.21429 | 1.0737 | -0.11399 | -0.7672 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | 0.27821 | 1.1551 | 0.151 | 0.16022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 115 | 0.002381 | 1.2905 | 0.090558 | 0.0094326 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.56667 | 1.2181 | 0.59013 | 0.33208 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.2463 | 1.3988 | -0.7912 | 0.9243 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.033333 | 1.2715 | 0.30434 | -0.35195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.039655 | 1.6878 | 0.0010422 | -0.26689 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.22917 | 1.4500 | -0.16624 | -0.16885 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.22714 | 1.4059 | 0.82671 | 1.275 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.054444 | 1.4831 | 0.7698 | 0.97219 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | -0.09 | 1.2463 | -0.10686 | -0.1418 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.38387 | 1.2756 | -0.19809 | -0.37633 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.38636 | 1.3391 | 0.3206 | -0.76807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.023913 | 1.3594 | 0.30607 | -0.065206 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.056522 | 1.3321 | -0.13909 | -0.41495 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.031818 | 1.1813 | 1.4734 | 3.357 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.028947 | 1.5693 | 0.26163 | -0.78734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.52407 | 1.3265 | -0.46449 | -0.13015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.1537 | 1.1130 | -0.16973 | -0.16171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.26489 | 1.2583 | 0.044079 | -0.51476 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | 0.0029412 | 0.93816 | -0.51335 | -0.91392 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.32619 | 1.6195 | -0.69526 | 0.020216 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | -0.034375 | 1.2443 | 0.42873 | 1.1108 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.28125 | 1.3075 | 0.06587 | -1.1005 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 702 | 0.095838 | 1.5202 | 0.2731 | 0.58826 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1489 | 0.039897 | 1.3616 | 0.15206 | 0.38072 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4217 | 0.022776 | 1.3394 | 0.018841 | 0.4128 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3973 | 0.018568 | 1.3791 | 0.075065 | 0.49469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3323 | -0.011103 | 1.3495 | -0.037828 | 0.45674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3464 | 0.015987 | 1.3478 | 0.026971 | 0.57405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3671 | 0.034247 | 1.3576 | 0.020784 | 0.34198 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3432 | 0.039783 | 1.3130 | 0.13726 | 0.63583 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2554 | 0.017808 | 1.3468 | 0.15887 | 0.52459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2656 | 0.0055436 | 1.4325 | 0.12445 | 0.51906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3172 | 0.0088561 | 1.3397 | 0.14343 | 0.54502 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2450 | 0.056441 | 1.3931 | 0.16235 | 0.33958 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2508 | 0.033709 | 1.3675 | 0.040828 | 0.64861 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2537 | 0.028267 | 1.3763 | 0.098795 | 0.53384 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2735 | -0.019313 | 1.3516 | 0.15741 | 0.58036 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1930 | 0.05113 | 1.3806 | 0.071034 | 0.39626 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2410 | 0.035759 | 1.3895 | -0.022279 | 0.41323 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1988 | 0.06393 | 1.4094 | 0.1525 | 0.29492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1894 | 0.039898 | 1.4251 | 0.029423 | 0.19142 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2225 | -0.023614 | 1.3211 | 0.065001 | 0.33568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | -0.039492 | 1.3211 | 0.10189 | 0.44323 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1701 | 0.026281 | 1.3869 | 0.099306 | 0.29119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1461 | 0.056594 | 1.4399 | 0.13851 | 0.44715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1818 | 0.01462 | 1.3914 | 0.05394 | 0.21071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1425 | -0.0095908 | 1.3767 | 0.058964 | 0.51092 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2079 | 0.064774 | 1.3317 | 0.061563 | 0.1653 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1492 | -0.021966 | 1.3758 | 0.19954 | 0.44055 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1308 | 0.0015802 | 1.3731 | 0.19905 | 0.37025 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1286 | 0.019104 | 1.3186 | 0.18764 | 0.09489 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1519 | 0.0006299 | 1.3776 | 0.10446 | 0.50414 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1190 | 0.091655 | 1.5122 | 0.20984 | 0.48474 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1397 | -0.027754 | 1.4399 | 0.023998 | 0.61554 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 939 | 0.072289 | 1.4138 | 0.087102 | 0.4479 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1079 | 0.011746 | 1.4038 | 0.096982 | 0.16418 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | -0.063562 | 1.4002 | -0.042609 | 0.44825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1234 | 0.012648 | 1.4034 | 0.14182 | 0.67478 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1113 | -0.042867 | 1.3893 | -0.016437 | 0.54967 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 839 | -0.072208 | 1.4254 | 0.01298 | 0.55874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1071 | -0.01649 | 1.4246 | 0.040588 | 0.16093 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 703 | 0.033827 | 1.3452 | 0.21245 | 0.42842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 827 | 0.089183 | 1.3494 | -0.041511 | 0.40416 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 688 | 0.094428 | 1.3731 | 0.13508 | 0.056603 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 695 | 0.021586 | 1.3380 | 0.17206 | 0.18518 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 592 | 0.096303 | 1.4711 | -0.11228 | 0.40777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 527 | 0.086344 | 1.3745 | 0.12629 | 0.18684 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 575 | 0.066713 | 1.3893 | 0.15561 | 0.37617 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 682 | -0.0029689 | 1.3552 | 0.16339 | 0.26083 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 600 | -0.091449 | 1.4128 | 0.25957 | 0.084081 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 478 | 0.10589 | 1.4262 | 0.33247 | 0.31989 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 554 | 0.0029637 | 1.3901 | 0.17608 | 0.53089 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | -0.034607 | 1.2826 | 0.053873 | 0.010138 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 483 | -0.02606 | 1.2486 | 0.10295 | 0.18988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 251 | 0.1318 | 1.2894 | 0.023141 | 0.27611 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 671 | -0.014639 | 1.3586 | 0.0076735 | 0.045288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 599 | -0.009738 | 1.3087 | 0.042466 | 0.28903 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 462 | 0.11528 | 1.3314 | 0.24049 | 0.3315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 318 | -0.059265 | 1.3704 | -0.060216 | 0.4018 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | -0.12309 | 1.4045 | -0.099703 | 0.51679 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 181 | 0.034545 | 1.6946 | 0.2913 | 0.086859 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 405 | 0.026943 | 1.2886 | 0.3546 | 0.91647 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 417 | -0.0026316 | 1.2962 | -0.0045705 | 0.051282 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | 0.016628 | 1.4062 | 0.21105 | -0.02466 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 329 | 0.16511 | 1.3864 | 0.047817 | 0.013587 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 419 | 0.14865 | 1.6075 | -0.17018 | 0.45609 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 323 | 0.14751 | 1.2675 | 0.19895 | 0.55462 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.055882 | 1.3344 | 0.21013 | 0.05334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 289 | 0.11667 | 1.3999 | -0.039086 | 0.67241 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | -0.040439 | 1.3666 | 0.2913 | 0.2913 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.058739 | 1.3024 | 0.15499 | 0.29053 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 245329 | 0.00045102 | 8.5487e-06 | 0.86004 | -0.26376 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 245329 | 0.029572 | 0.00023128 | -0.2104 | -1.0297 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 99 | -0.16141 | 1.3682 | 0.35695 | -0.48519 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.25128 | 1.4959 | 0.88124 | 0.66328 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.36923 | 1.2475 | 0.32931 | 0.14507 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | 0.31757 | 1.4486 | 0.73696 | -0.10628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.928 | 1.1865 | 0.26429 | 0.040848 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.023611 | 1.2330 | 0.14708 | -0.15686 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.29286 | 1.5060 | 0.52731 | -0.60123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.10686 | 1.4352 | 0.016942 | -0.93326 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 67 | -0.096269 | 1.3057 | -0.16568 | -0.013019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.02037 | 1.1900 | 0.61524 | -0.2304 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | -0.35465 | 1.5169 | 0.34813 | 0.88205 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32558 | 1.2835 | -0.085769 | -0.84022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 3 | -0.58333 | 1.7913 | -0.54546 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 115 | -0.16842 | 1.4790 | 0.2179 | 0.47118 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 101 | -0.15843 | 1.5698 | 0.43134 | -0.08002 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.43 | 1.1639 | 0.60125 | 0.57879 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 62 | 0.18226 | 1.5266 | 0.29543 | -0.3566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | 0.13194 | 1.4016 | 0.36292 | 0.0010713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.78125 | 1.5755 | 0.94496 | 0.086866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.42059 | 1.4875 | 0.13121 | 0.26884 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 71 | 0.21761 | 1.1058 | -0.17039 | 0.014632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.04375 | 1.3367 | 0.46122 | 0.0079649 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 82 | -0.19815 | 1.4056 | 0.084947 | -0.24702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.8375 | 0.99176 | 0.54461 | -0.099221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.474 | 1.2176 | 0.30575 | -0.91293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.055263 | 0.92706 | 0.54346 | -0.45713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.3875 | 1.4679 | -0.20325 | -0.69123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.47917 | 1.3281 | -0.24332 | 0.79771 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.75714 | 1.3572 | 1.2193 | 0.92192 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 8 | -0.6375 | 1.8141 | -0.44461 | -1.3057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.8 | 1.1375 | -0.092012 | -1.2943 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.7587 | 2.4324 | -0.34573 | -1.0182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.44762 | 1.1977 | 0.081769 | 1.1261 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 0.90856 | -0.35171 | -0.64643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.22083 | 2.0003 | 0.11697 | -0.33781 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.095 | 1.7744 | -0.3291 | -0.68946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.30345 | 1.5921 | 0.24477 | -0.64731 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 12 | -0.23333 | 1.0574 | -0.07168 | -0.89195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | -0.12353 | 1.3546 | 0.3963 | -0.64726 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.24259 | 1.0565 | 0.29156 | -0.54127 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.060145 | 1.3639 | -0.29421 | 0.39906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.17432 | 1.5943 | -0.026687 | -0.55246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.27903 | 1.1303 | 0.53019 | 0.29037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | -0.15909 | 0.87986 | -0.43359 | -0.53243 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.21667 | 1.4059 | 0.82902 | 0.37047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.013158 | 1.8664 | 0.5025 | -0.29442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | -0.10962 | 1.3945 | -0.073777 | 0.51633 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.016667 | 1.3047 | 0.14097 | -0.16064 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.13571 | 1.3929 | -0.27999 | -0.86613 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | -0.294 | 1.5502 | 0.49772 | 1.2109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.265 | 1.1244 | 0.44821 | -0.96387 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | 0.3268 | 1.4740 | -0.05542 | -0.16061 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 6 | -0.97222 | 1.1123 | 0.23804 | -1.106 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 0.7125 | 1.5976 | 0.19762 | -0.79182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | 0.081667 | 2.0493 | 0.18707 | -0.87334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | -0.19156 | 1.3107 | -0.23062 | -0.23034 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.39712 | 1.6116 | 0.055558 | -0.50862 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 75 | 0.1973 | 1.5734 | 0.081072 | -0.68661 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | -0.74185 | 1.8154 | 0.72983 | 0.62451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | -0.4491 | 1.4936 | -0.019181 | -0.58349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 97 | -0.080481 | 1.4694 | 0.22992 | -0.62071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 0.23242 | 1.4505 | -0.34716 | -0.36354 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 133 | 0.056098 | 1.4457 | -0.39095 | -0.30467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 78 | -0.43958 | 1.5925 | -0.48356 | -0.020779 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.19775 | 1.7091 | 0.48602 | 0.33265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.056107 | 1.4848 | 0.27014 | 0.28556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 121 | -0.27149 | 1.6380 | 0.19212 | 0.22827 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 96 | 0.37917 | 1.4459 | 0.32609 | 0.077196 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.098571 | 1.4856 | 0.21257 | -0.70427 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.14314 | 1.2815 | 0.031185 | -0.58565 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 95 | -0.33615 | 1.2977 | 0.21878 | -0.22465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | -0.17248 | 1.3506 | -0.17733 | 0.56167 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.086486 | 1.4796 | 0.0056244 | 0.0208 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 132 | 0.16429 | 1.3079 | 0.057059 | -0.16631 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 92 | -0.089583 | 1.5705 | 0.45465 | 0.059744 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 143 | -0.040597 | 1.3975 | 0.092591 | 0.23749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | 0.49028 | 1.4147 | 0.29582 | -0.37137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | -0.20021 | 1.3520 | 0.27855 | -0.1101 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 135 | 0.27745 | 1.3989 | 0.23577 | -0.26221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 81 | -0.10973 | 1.5350 | 0.16321 | 0.56375 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.045 | 1.4055 | -0.0901 | -0.17993 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 124 | -0.20733 | 1.3183 | 0.29411 | -0.15971 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 119 | -0.033333 | 1.3459 | -0.22946 | -0.18661 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 126 | -0.0031746 | 1.3894 | 0.23384 | -0.036563 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | -0.22573 | 1.4928 | 0.47526 | -0.15552 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.071053 | 1.2643 | 1.1541 | 1.0209 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 131 | 0.54759 | 1.4444 | -0.12061 | 0.84485 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.082813 | 1.2269 | -0.04982 | -0.19862 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 127 | -0.11511 | 1.3700 | 0.025073 | -0.10702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.30692 | 1.8575 | 0.43962 | 0.16673 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.43421 | 1.4460 | 0.39308 | 0.20277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 118 | -0.21838 | 1.5919 | 0.4571 | -0.2042 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | -0.31854 | 1.3248 | 0.20473 | 0.7639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 91 | -0.091758 | 1.4550 | 0.60163 | 0.10982 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.013043 | 1.0322 | -0.11709 | -0.54856 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 58 | 0.12931 | 1.3568 | 0.31569 | -0.27031 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 148 | 0.20955 | 1.2970 | 0.41158 | -0.20988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.10366 | 1.2527 | -0.050517 | -0.21352 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | 0.57439 | 1.1380 | -0.058383 | -0.74146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | -0.23136 | 1.2450 | -0.17985 | 0.53624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 129111 | 0.00048948 | 6.7942e-05 | 0.84717 | -0.94904 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 129111 | 0.020577 | 0.0051496 | -0.2173 | -1.0297 | RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270062 |-0.00042731 | 0.83191 |-0.00062497 | -1.1857 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270062 |-0.00042731 | 0.83191 |-0.00062497 | -1.1857 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270062 | -0.022625 | 0.80953 | 0.040016 | -1.0687 | - | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270062 | -0.001102 | 0.83203 | 0.00064594 | -1.1887 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135288 | 0.70489 | 0.29998 | 0.30632 | -0.024485 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135288 | -0.66979 | 0.32136 | 0.024101 | 0.39978 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135288 | -0.046077 | 0.18520 | 0.053358 | 2.5423 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | -0.52138 | 17.579 | 0.019715 | 4.5281 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | -0.42816 | 18.117 | -0.021886 | 4.1596 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | 6.5863 | 332.02 | 0.1025 | -1.1576 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | -1.0207 | 77.543 | -0.044077 | 1.7692 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | 1.5992 | 79.687 | -0.11571 | 1.5835 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | 1502.5 | 331.86 | -0.099432 | -1.1613 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135288 | -0.001696 | 0.047468 | 0.0093741 | 0.27637 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135288 | -0.001696 | 0.047468 | 0.0093741 | 0.27637 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | -1.6203 | 78.473 | -0.050209 | 1.5622 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | 1.0345 | 81.407 | -0.13156 | 1.4941 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | 1509.4 | 13.248 | 10.872 | 184.53 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135288 | -0.0010154 | 0.047446 | 0.0056607 | 0.27799 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135288 | -0.0010154 | 0.047446 | 0.0056607 | 0.27799 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134774 | 0.62917 | 0.28046 | 0.70732 | 5.2216 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134774 | -0.57974 | 0.31894 | 0.74595 | 5.5258 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134774 | -0.047104 | 0.19010 | -0.48375 | 10.31 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | -0.54212 | 17.312 | 0.058516 | 4.5161 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | -0.43674 | 17.796 | -0.01023 | 4.0956 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | 7.2141 | 331.17 | 0.098215 | -1.1504 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 7.7066 | 76.452 | -0.11347 | 1.8567 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 1.1611 | 78.354 | -0.056882 | 1.5687 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 1502.1 | 330.97 | -0.096031 | -1.1536 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134774 | 0.0050224 | 0.046404 | -0.091742 | 0.2016 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134774 | 0.0050224 | 0.046404 | -0.091742 | 0.2016 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 7.2302 | 77.627 | -0.14776 | 1.7778 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 0.85376 | 79.868 | -0.018321 | 1.5054 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 1509.7 | 14.406 | 9.982 | 148.83 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134774 | 0.0055993 | 0.046404 | -0.092477 | 0.19782 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134774 | 0.0055993 | 0.046404 | -0.092477 | 0.19782 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.6529 | 10.482 | 0.20257 | -0.22531 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | 30.886 | 12.015 | 0.023622 | -0.19138 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1011 | 26.99 | 11.028 | -0.25867 | -0.37989 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 4.7958 | 12.156 | 0.31302 | 0.037004 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 21.838 | 10.825 | -0.13735 | -1.0127 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 8.5909 | 12.595 | 1.009 | 0.33883 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.196 | 11.479 | -0.065503 | -0.85017 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6064 | 51.36 | 11.553 | -0.17394 | -0.1302 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6064 | 5.3992 | 11.454 | 0.09848 | -0.15171 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6227 | 33.566 | 10.649 | 0.21886 | -0.24352 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6227 | 23.249 | 10.581 | -0.16582 | -0.31119 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 6.625 | 7.0256 | -0.53315 | -1.1496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 26.722 | 6.6630 | 0.34465 | -1.4965 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2825 | -43.678 | 24.216 | -0.90591 | -1.1724 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2825 | -56.387 | 1.2535 | 0.29557 | 0.10965 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2825 | 0.016018 | 1.1751 | -0.063185 | 0.037049 | - | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2825 | -0.019027 | 1.1473 | 0.011172 | -0.04651 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 964 | 0.28691 | 0.28123 | 5.6218 | 49.387 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 964 | 0.016747 | 0.28414 | -1.9506 | 23.096 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 964 | -0.075171 | 0.27676 | -3.9453 | 47.314 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | -1.6557 | 30.126 | -0.035206 | 0.087022 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | -0.34172 | 15.277 | -0.18715 | 3.8616 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | 27.941 | 539.84 | -0.024878 | -1.1931 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | -233.79 | 329.08 | 0.93032 | 2.095 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | 5.4143 | 300.07 | 0.14238 | 1.6301 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | 10413 | 539.52 | 0.037839 | -1.1727 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 964 | -0.044489 | 0.033723 | 0.77104 | 1.211 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 964 | -0.044489 | 0.033723 | 0.77104 | 1.211 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | -234.82 | 329.62 | 0.9628 | 2.0511 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | 4.8074 | 299.53 | 0.1243 | 1.4388 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | 10441 | 39.416 | 0.47871 | 0.67033 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 964 | -0.04456 | 0.033761 | 0.76981 | 1.1935 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 964 | -0.04456 | 0.033761 | 0.76981 | 1.1935 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1834 | 0.30882 | 0.30827 | 6.9352 | 69.596 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1834 | 0.037434 | 0.28119 | 2.4009 | 27.286 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1834 | -0.063699 | 0.32727 | 1.8692 | 63.007 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | -0.80789 | 33.441 | -0.018611 | -0.071723 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | 0.12486 | 14.290 | -0.21011 | 3.7102 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | -13.711 | 549.48 | 0.045469 | -1.1632 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | 347.31 | 242.50 | -0.090952 | 4.1824 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | -1.0094 | 281.65 | -0.1219 | 1.5924 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | 10460 | 550.68 | -0.028372 | -1.1489 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1834 | 0.055861 | 0.025340 | -0.11721 | 2.2254 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1834 | 0.055861 | 0.025340 | -0.11721 | 2.2254 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | 346.01 | 237.70 | -0.19327 | 4.2228 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | -0.58613 | 281.37 | -0.15077 | 1.5584 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | 10446 | 38.738 | 0.75532 | 1.055 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1834 | 0.055823 | 0.025263 | -0.11954 | 2.2465 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1834 | 0.055823 | 0.025263 | -0.11954 | 2.2465 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 9.08 | 11.878 | 1.0972 | 0.44213 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 1.4549 | 0.74796 | 2.2109 | 6.7987 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 244 | 35.057 | 4.3918 | -1.0221 | 2.2356 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.0436 | 6.2431 | -0.098921 | 0.18069 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 89 | 1.4831 | 0.87554 | 2.3115 | 6.8234 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 89 | 31.579 | 3.9781 | -0.26475 | 0.45691 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 7.0714 | 7.1950 | 0.48535 | 2.0594 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 34.1 | 5.8344 | -0.098126 | -0.76382 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3143 | 30.343 | 7.3059 | -0.41156 | 1.105 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3143 | 4.7937 | 6.6187 | 0.30104 | 1.0311 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1460 | 1.5411 | 0.84421 | 1.7868 | 3.3508 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1460 | 34.147 | 3.9322 | -0.9131 | 2.9353 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.3163 | 6.8888 | -0.17788 | -0.59643 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 25 | 1.16 | 0.46303 | 2.9513 | 7.8533 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 25 | 29.58 | 2.7118 | 0.36079 | 0.31047 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 273096 | -0.0004958 | 0.83252 | -0.0012619 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 273096 | -0.0004958 | 0.83252 | -0.0012619 | -1.1873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 273096 | -0.043144 | 0.80886 | 0.075028 | -1.0627 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 273096 |-0.00071989 | 0.83202 | 0.0016021 | -1.1885 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 136356 | 0.63289 | 0.38851 | 0.75273 | -0.1062 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 136356 | -0.57724 | 0.42593 | -0.46498 | -0.080833 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 136356 | -0.051582 | 0.18890 | 0.12855 | 2.4429 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136356 | -0.51947 | 17.377 | 0.033069 | 4.7012 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136356 | -0.40928 | 17.959 | -0.024629 | 4.2944 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 136356 | 9.1281 | 331.92 | 0.10605 | -1.1597 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136356 | 2.4513 | 76.619 | -0.12453 | 1.8804 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136356 | 3.2684 | 79.026 | -0.13934 | 1.6583 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 136356 | 1503.8 | 331.69 | -0.10305 | -1.1632 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 136356 | 0.00063274 | 0.046879 | -0.085004 | 0.36558 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 136356 | 0.00063274 | 0.046879 | -0.085004 | 0.36558 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136356 | 1.7169 | 78.098 | -0.14634 | 1.6971 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136356 | 2.5723 | 80.533 | -0.19273 | 1.5001 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 136356 | 1512.4 | 12.140 | 8.5966 | 134.13 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 136356 | 0.0012115 | 0.046724 | -0.084247 | 0.37985 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 136356 | 0.0012115 | 0.046724 | -0.084247 | 0.37985 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 136740 | 0.54704 | 0.35006 | 1.0713 | 2.2915 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 136740 | -0.46743 | 0.40567 | -0.20786 | 1.5135 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 136740 | -0.056302 | 0.19201 | -0.52328 | 8.5427 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136740 | -0.48063 | 17.149 | 0.08625 | 4.7528 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136740 | -0.35763 | 17.615 | 0.0070189 | 4.3371 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 136740 | 9.1403 | 330.51 | 0.10093 | -1.1495 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136740 | 11.434 | 75.390 | -0.20849 | 2.1115 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136740 | 3.8659 | 77.579 | -0.10613 | 1.7222 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 136740 | 1504 | 330.34 | -0.098778 | -1.153 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 136740 | 0.0075042 | 0.045503 | -0.19316 | 0.38058 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 136740 | 0.0075042 | 0.045503 | -0.19316 | 0.38058 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136740 | 11.084 | 77.055 | -0.22436 | 2.076 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136740 | 3.6222 | 79.219 | -0.070545 | 1.6463 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 136740 | 1512.6 | 14.019 | 8.7482 | 118.39 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 136740 | 0.0079589 | 0.045366 | -0.19359 | 0.39062 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 136740 | 0.0079589 | 0.045366 | -0.19359 | 0.39062 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.106 | 11.022 | 0.018389 | -0.37982 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.9824 | 10.677 | 0.086329 | -0.36868 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1010 | 30.847 | 11.972 | 0.069821 | -0.20021 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1010 | 27.46 | 10.840 | -0.21539 | -0.48494 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 151 | 48.047 | 11.629 | -0.16475 | 0.35632 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 151 | 8.0867 | 11.368 | -0.12058 | -0.38844 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 151 | 31.675 | 10.296 | 0.53309 | 0.21325 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 151 | 24.8 | 9.9825 | -0.4659 | -0.20647 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 12 | 48.583 | 13.307 | -1.1437 | 0.73781 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 11.833 | 13.394 | 1.0794 | 0.73156 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 50 | 34.42 | 11.795 | 0.23197 | -0.64997 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 24.94 | 11.216 | -0.13742 | -0.84889 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6055 | 51.267 | 11.592 | -0.18542 | -0.096537 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 6.0141 | 11.492 | 0.12024 | -0.18575 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6225 | 33.447 | 10.688 | 0.22827 | -0.26415 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 23.897 | 10.641 | -0.15721 | -0.36577 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 18 | 45.778 | 7.3527 | -0.24026 | -0.5922 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 10.056 | 8.3281 | -0.052305 | -1.194 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 19 | 26.895 | 6.7426 | 0.18969 | -1.0886 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 29.184 | 8.4732 | -0.067232 | -0.90304 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 3580 | -42.439 | 23.626 | -1.0335 | -0.92409 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 3580 | -56.389 | 1.2373 | 0.27055 | 0.075463 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 3580 | 0.016201 | 1.1601 | -0.036554 | -0.020713 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 3580 | -0.0039106 | 1.1289 | 0.006582 | -0.065766 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 1131 | 0.26889 | 0.26208 | 5.8828 | 57.586 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 1131 | 0.0054427 | 0.28069 | -0.57369 | 22.684 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 1131 | -0.064778 | 0.24495 | -2.4804 | 30.874 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1131 | -0.81193 | 27.073 | -0.0070149 | 0.42135 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1131 | 0.021125 | 15.349 | 0.069066 | 4.2305 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 1131 | 19.259 | 542.07 | -0.021659 | -1.2508 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1131 | -193.66 | 305.09 | 0.90614 | 2.2184 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1131 | 15.892 | 292.71 | 0.021255 | 1.3084 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 1131 | 10414 | 542.35 | 0.034441 | -1.2283 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 1131 | -0.038611 | 0.030959 | 0.65295 | 1.3718 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 1131 | -0.038611 | 0.030959 | 0.65295 | 1.3718 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1131 | -193.67 | 304.80 | 0.94307 | 2.2183 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1131 | 15.787 | 292.78 | 0.013524 | 1.138 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 1131 | 10433 | 36.817 | 0.68552 | 1.243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 1131 | -0.038705 | 0.030931 | 0.65254 | 1.378 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 1131 | -0.038705 | 0.030931 | 0.65254 | 1.378 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 2416 | 0.29532 | 0.29931 | 6.6059 | 64.351 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 2416 | 0.04355 | 0.26782 | 2.0921 | 26.084 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 2416 | -0.069664 | 0.31606 | 1.0092 | 57.649 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2416 | -0.69753 | 31.926 | -0.019451 | -0.033176 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2416 | 0.24019 | 13.356 | -0.23938 | 3.7216 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 2416 | -12.059 | 550.15 | 0.030078 | -1.1657 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2416 | 339.61 | 224.50 | -0.04311 | 4.8514 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2416 | 27.577 | 261.22 | -0.068454 | 1.7369 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 2416 | 10456 | 550.90 | -0.019511 | -1.1511 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 2416 | 0.053359 | 0.024376 | -0.023209 | 2.2491 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 2416 | 0.053359 | 0.024376 | -0.023209 | 2.2491 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2416 | 338.45 | 220.42 | -0.13898 | 4.8783 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2416 | 28.124 | 260.81 | -0.10181 | 1.719 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 2416 | 10444 | 37.043 | 0.70961 | 1.2596 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 2416 | 0.05332 | 0.024310 | -0.022772 | 2.2746 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 2416 | 0.05332 | 0.024310 | -0.022772 | 2.2746 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 64 | 26.609 | 11.326 | -0.7022 | -0.013488 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 64 | 9.5469 | 12.008 | 0.9761 | 0.134 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 298 | 1.4664 | 0.69554 | 1.4663 | 1.7659 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 298 | 34.977 | 4.2586 | -0.98189 | 2.2043 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 375 | 27.075 | 7.1042 | 0.30921 | 2.0921 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 375 | 4.4707 | 6.6874 | -0.28434 | 3.2487 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 157 | 1.4777 | 0.77036 | 1.4539 | 1.0844 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 157 | 30.748 | 3.7462 | -0.033119 | 0.53897 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 28 | 31.607 | 7.8619 | -0.41962 | 0.74912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 4.8929 | 6.7419 | 0.50108 | 2.5454 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 13 | 1.4615 | 0.74580 | 1.2443 | -0.070847 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 35.962 | 5.7728 | -0.67939 | -0.45369 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3833 | 30.265 | 7.3146 | -0.46186 | 1.1964 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3833 | 4.9991 | 6.7020 | 0.32493 | 1.2062 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1815 | 1.5229 | 0.83147 | 1.7993 | 3.4447 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1815 | 34.142 | 3.8327 | -0.88276 | 2.7741 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 68 | 24.735 | 7.0786 | -0.34824 | 0.55941 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 68 | 5.6029 | 7.1479 | 0.29315 | 0.051858 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 32 | 1.25 | 0.61237 | 3.0619 | 10.083 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 32 | 28.719 | 2.8694 | -0.19608 | 0.062353 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 457 | 35.83 | 25.594 | 0.13096 | -1.3607 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 61.412 | 12.317 | -0.2264 | -1.3816 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 50.388 | 18.949 | -0.24486 | -1.1129 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 60.429 | 12.146 | -0.22753 | -1.3605 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 59.706 | 12.007 | -0.2186 | -1.3246 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.143 | 21.808 | 0.098438 | -1.0386 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 435 | 25.042 | 13.921 | -0.13404 | -1.0572 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4849 | 54.76 | 2.5389 | 0.90627 | 1.7085 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4847 | 35.548 | 9.5072 | 0.087848 | -1.0293 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4849 | 53.876 | 2.3963 | 0.91096 | 2.0893 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4849 | 53.224 | 2.3482 | 0.81173 | 2.1307 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1772 | 24.83 | 16.066 | 0.073758 | -1.3374 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 899 | 35.471 | 22.396 | 0.082086 | -1.1025 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 9011 | 62.778 | 9.8006 | -0.21807 | -1.0022 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9011 | 49.946 | 18.938 | -0.19447 | -1.1242 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9011 | 61.912 | 9.5959 | -0.22411 | -0.97955 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9011 | 61.244 | 9.5431 | -0.22685 | -0.95969 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3605 | 40.72 | 24.093 | -0.10605 | -1.2219 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 19.4 | 13.450 | 0.33556 | -0.93127 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 5941 | 54.506 | 2.4008 | 0.97178 | 2.2098 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5939 | 38.19 | 9.2259 | -0.36104 | -0.94647 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5941 | 53.755 | 2.2507 | 0.93644 | 2.5104 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5941 | 53.203 | 2.1957 | 0.81787 | 2.5019 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 3078 | 24.438 | 14.069 | -0.0012807 | -1.0896 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 499 | 242.57 | 187.74 | 0.21451 | -1.3676 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 596.98 | 21.399 | -8.9282 | 110.84 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 361.92 | 134.95 | -0.22422 | -1.0795 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 586.2 | 21.541 | -8.254 | 99.235 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 578.2 | 22.741 | -6.6762 | 74.257 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.8 | 161.42 | 0.19489 | -0.96844 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 456 | 152.28 | 90.554 | -0.103 | -1.1201 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4876 | 344.83 | 16.615 | 1.0791 | 2.8943 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4876 | 225.01 | 59.296 | 0.091165 | -1.0184 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4876 | 339.43 | 15.760 | 1.0851 | 3.296 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4876 | 335.23 | 15.515 | 0.98664 | 3.3103 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1874 | 150.24 | 103.27 | 0.12173 | -1.3509 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 957 | 236.93 | 161.30 | 0.15709 | -1.0964 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 9011 | 601.68 | 19.356 | -8.2931 | 102.52 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9011 | 373.67 | 141.15 | -0.21817 | -1.1211 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9011 | 591.19 | 19.550 | -7.5263 | 89.294 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9011 | 583.39 | 21.037 | -5.7584 | 61.713 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3748 | 286.01 | 175.94 | -0.076923 | -1.2402 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 573 | 115.46 | 86.345 | 0.39522 | -0.93192 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 5966 | 343.18 | 15.683 | 1.1333 | 3.4713 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5966 | 241.39 | 57.547 | -0.35598 | -0.93544 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5966 | 338.51 | 14.802 | 1.1168 | 3.803 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5966 | 335 | 14.454 | 1.0036 | 3.8486 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 3189 | 150.7 | 90.380 | 0.0064478 | -1.1171 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2839 | 1905.9 | 94.220 | 0.55696 | 1.6639 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2116 | 1083.5 | 24.449 | 0.88125 | 1.1761 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 3219 | 1898 | 90.449 | 0.62813 | 2.0348 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 457 | 25.701 | 18.317 | 0.1607 | -1.2602 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 58.822 | 3.9953 | -1.2584 | 8.3483 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 35.247 | 13.825 | -0.13863 | -1.0206 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 57.751 | 3.9517 | -1.2251 | 8.0684 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 56.948 | 3.9815 | -1.1277 | 7.2347 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.737 | 15.767 | 0.22973 | -0.85693 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 435 | 16.948 | 9.5679 | -0.07231 | -1.0191 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4849 | 35.956 | 4.9278 | -1.3029 | 3.3306 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4847 | 23.581 | 6.9436 | 0.069325 | -0.71896 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4849 | 35.371 | 4.8338 | -1.3427 | 3.5016 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4849 | 34.953 | 4.7779 | -1.357 | 3.561 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1772 | 16.714 | 10.882 | 0.11025 | -1.2754 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 899 | 24.388 | 15.689 | 0.18727 | -0.92112 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 9011 | 59.322 | 3.8886 | -0.87399 | 5.9025 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 9011 | 36.486 | 14.495 | -0.1386 | -1.0655 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 9011 | 58.282 | 3.8554 | -0.84097 | 5.5326 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 9011 | 57.499 | 3.8920 | -0.7556 | 4.8466 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3605 | 28.857 | 17.250 | -0.035311 | -1.1353 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 531 | 13.156 | 9.2485 | 0.38104 | -0.85218 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 5941 | 35.917 | 4.6317 | -1.2944 | 3.6963 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 5939 | 25.357 | 6.7962 | -0.2668 | -0.64487 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 5941 | 35.423 | 4.5549 | -1.3509 | 3.9213 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 5941 | 35.064 | 4.5094 | -1.3703 | 4.0002 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 3078 | 16.408 | 9.5914 | 0.070085 | -1.0099 | RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | @@ -1424,22 +1532,22 @@ RichMCHits INFO 1D histograms in directory "RichMCHi | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27184 | -0.015391 | 0.22590 | 0.16786 | -0.27257 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 643536 | -0.010099 | 0.24035 | -0.50007 | 32.028 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 200376 | -0.012361 | 0.22870 | -2.7724 | 236.58 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 27384 | -0.0042729 | 7.5053 | 0.85997 | 0.3607 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 365952 | -0.058169 | 7.0054 | 0.71822 | 1.2886 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 108952 | 0.0022572 | 6.9113 | 0.9435 | 1.1712 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 53136 | -0.022302 | 0.20541 | 0.28285 | -1.2107 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 792968 | -0.013059 | 0.27247 | -0.72538 | 40.002 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 655584 | -0.013337 | 0.22604 | -0.50564 | 35.997 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 792968 | -0.013059 | 0.27247 | -0.72538 | 40.002 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 792968 | -0.013059 | 0.27247 | -0.72538 | 40.002 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 229752 | -0.018115 | 0.21513 | -2.4763 | 221.04 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29400 | -0.0020069 | 6.8830 | 0.92164 | 0.97957 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 524480 | -0.19131 | 7.8298 | 0.26026 | 1.4158 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 464512 | -0.027839 | 7.0814 | 0.72478 | 0.89123 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 524480 | -0.19131 | 7.8298 | 0.26026 | 1.4158 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 524480 | -0.19131 | 7.8298 | 0.26026 | 1.4158 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 190704 | 0.0023359 | 6.6776 | 0.92744 | 1.1843 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074994 | 0.057637 | 1.1675 | 1.3307 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062886 | 0.048315 | 1.8007 | 4.0176 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.073843 | 0.056624 | 1.1757 | 1.3912 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062151 | 0.048213 | 1.8177 | 4.1024 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | @@ -1469,480 +1577,480 @@ RichRecPixelQC INFO 1D histograms in directory "RichRecP | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3594935 | 0.051213 | 0.00051207 | -0.23812 | -1.0937 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3594935 | 0.052292 | 0.0066062 | 0.0022134 | -0.97891 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3594935 | 0.00011676 | 0.0029522 | -0.049655 | -0.95605 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 965507 | 0.00010683 | 0.0029537 | -0.038559 | -0.9639 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 899988 | 0.00013306 | 0.0029608 | -0.06591 | -0.97005 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 897501 | 0.00011132 | 0.0029447 | -0.043772 | -0.94241 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 831939 | 0.00011666 | 0.0029494 | -0.051385 | -0.94573 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1135479 | 0.029497 | 0.00023187 | 0.13784 | -1.0789 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1135479 | 0.028101 | 0.0040960 | -0.221 | -0.99832 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1135479 | 5.7508e-05 | 0.0018603 | -0.022234 | -0.91118 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 299733 | 4.9e-05 | 0.0018595 | -0.021211 | -0.91181 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 277696 | 5.8479e-05 | 0.0018592 | -0.021933 | -0.9093 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 275476 | 5.65e-05 | 0.0018628 | -0.019238 | -0.91977 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 282574 | 6.6597e-05 | 0.0018596 | -0.026546 | -0.90394 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3644900 | 0.051251 | 0.00053299 | -0.23587 | -1.1293 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3644900 | 0.052294 | 0.0065992 | 0.0017255 | -0.97542 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3644900 | 0.00011212 | 0.0029493 | -0.047787 | -0.94727 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1070786 | 0.00010346 | 0.0029477 | -0.040499 | -0.94012 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 883571 | 0.00012041 | 0.0029535 | -0.056507 | -0.95473 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 940543 | 0.00010425 | 0.0029455 | -0.041916 | -0.94327 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 750000 | 0.0001247 | 0.0029514 | -0.055369 | -0.95338 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1426686 | 0.029565 | 0.00022414 | -0.36499 | -1.0101 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1426686 | 0.028097 | 0.0041006 | -0.21935 | -1.0044 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1426686 | 5.0353e-05 | 0.0018678 | -0.018322 | -0.92769 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 422704 | 4.9793e-05 | 0.0018664 | -0.022297 | -0.92302 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 341438 | 4.7432e-05 | 0.0018648 | -0.013822 | -0.9224 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 358037 | 5.2167e-05 | 0.0018716 | -0.018554 | -0.9368 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 304507 | 5.2296e-05 | 0.0018688 | -0.017674 | -0.92938 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8922 | 974.9 | 33.292 | 12.936 | 177.93 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8922 | 2045.7 | 14.730 | 1.2483 | 3.2557 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8922 | 1075.2 | 38.649 | -8.8446 | 109.41 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4876 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4876 | 11382 | 86.512 | 0.90174 | 2.1415 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4876 | 1888.9 | 91.041 | 1.074 | 2.8242 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 9011 | 974.45 | 29.210 | 13.126 | 183.36 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 9011 | 2053.4 | 14.788 | 1.3498 | 3.179 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 9011 | 1083.8 | 35.316 | -8.0206 | 98.131 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 5966 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 5966 | 11373 | 81.873 | 0.95759 | 2.6123 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 5966 | 1879.8 | 86.170 | 1.1297 | 3.375 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.728 | 7.3149 | 0.4877 | -0.15593 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.215 | 8.6662 | 0.37382 | -0.34535 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 13.688 | 7.8295 | 0.50497 | -0.059091 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.887 | 9.0806 | 0.39661 | -0.24133 | RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245615 | 18434 | 10501. | 3.8604 | 22.853 | - | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8898 | 62683 | 22106. | 0.8867 | -0.20159 | - | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8898 | 18302 | 10721. | 4.034 | 24.011 | - | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8898 | 19894 | 11738. | 3.724 | 19.892 | - | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8898 | 18344 | 10754. | 4.023 | 23.86 | - | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8898 | 18377 | 10780. | 4.0147 | 23.745 | - | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8898 | 31021 | 15821. | 2.8522 | 9.3327 | - | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100502 | 33707 | 17842. | 2.4141 | 6.1032 | - | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4798 | 89997 | 15662. | 0.12162 | -1.0667 | - | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4798 | 33018 | 17297. | 2.5261 | 6.7835 | - | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4798 | 35014 | 18619. | 2.2467 | 5.0783 | - | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4798 | 33078 | 17344. | 2.5163 | 6.7196 | - | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4798 | 33124 | 17379. | 2.5089 | 6.6713 | - | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4798 | 56836 | 22554. | 1.0151 | 0.066434 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 248263 | 19570 | 12229. | 2.925 | 11.782 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8998 | 56906 | 17361. | 1.3027 | 1.3306 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8998 | 19902 | 12699. | 2.8539 | 10.975 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8998 | 21902 | 13765. | 2.5509 | 8.6581 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8998 | 19956 | 12735. | 2.8434 | 10.889 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8998 | 19997 | 12763. | 2.8354 | 10.824 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8998 | 34789 | 16311. | 1.8785 | 4.2356 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 126119 | 36824 | 16889. | 1.8247 | 3.9428 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 5916 | 84888 | 15188. | 0.56905 | -0.70342 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 5916 | 36017 | 16437. | 1.891 | 4.2815 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 5916 | 37838 | 17107. | 1.7475 | 3.5623 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 5916 | 36074 | 16463. | 1.8857 | 4.2534 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 5916 | 36118 | 16483. | 1.8817 | 4.2323 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 5916 | 52279 | 17830. | 1.4024 | 1.7775 | RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 22998 | 0.034062 | 0.011818 | -0.35856 | -1.0757 | - | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 24583 | 53230 | 19760. | 1.4879 | 1.5332 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16397 | 6938.5 | -0.3595 | -22.834 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 507233 | 0.051975 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 505933 | 18218 | 10481. | 3.9182 | 23.199 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6899.8 | -0.24849 | -22.108 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6899.8 | -0.24849 | -22.108 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17608 | 10147. | 3.0419 | 11.451 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10011. | 3.0824 | 11.827 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10011. | 3.0824 | 11.827 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28210 | 23860 | 13886. | 3.0952 | 14.016 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28210 | 0.044112 | 0.0062910 | -1.1938 | 1.2438 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 507233 | 0.036998 | 0.0095669 | -0.31782 | -1.1133 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 505933 | 17178 | 9931.7 | 4.1392 | 26.117 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28210 | 23034 | 13547. | 3.1547 | 14.73 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28210 | 23034 | 13547. | 3.1547 | 14.73 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28210 | 0.043372 | 0.0068871 | -1.1534 | 0.99484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28210 | 0.043372 | 0.0068871 | -1.1534 | 0.99484 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28210 | 22156 | 13390. | 3.2607 | 14.866 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28210 | 0.042729 | 0.0071750 | -1.0521 | 0.57395 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28210 | 21165 | 12925. | 3.3667 | 16.074 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28210 | 21165 | 12925. | 3.3667 | 16.074 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28210 | 0.041647 | 0.0079118 | -0.93217 | 0.10873 | - | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28210 | 0.041647 | 0.0079118 | -0.93217 | 0.10873 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17392 | 6621.9 | 0.94823 | 0.006479 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13952 | -1.5855 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 507233 | 0.051576 | 0.00029904 | -0.22335 | -1.0877 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 505933 | 18099 | 10439. | 3.9971 | 24.056 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.0 | 1.0035 | 0.13239 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.0 | 1.0035 | 0.13239 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.2064 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.2064 | -1.5632 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46684 | -1.4307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063341 | -1.8914 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.542 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.542 | -1.3551 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.1466 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.1466 | -1.8737 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205317 | 17560 | 9636.0 | 4.4308 | 30.535 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205317 | 0.051177 | 0.00051855 | -0.20345 | -0.87637 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 507233 | 0.051201 | 0.00051425 | -0.22351 | -1.1063 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 505933 | 18183 | 10472. | 3.9344 | 23.37 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205317 | 17384 | 9481.4 | 4.4729 | 31.322 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205317 | 17384 | 9481.4 | 4.4729 | 31.322 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205317 | 0.051163 | 0.00052029 | -0.17663 | -0.90014 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205317 | 0.051163 | 0.00052029 | -0.17663 | -0.90014 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205317 | 17571 | 9315.4 | 4.0849 | 26.845 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205317 | 0.051182 | 0.00051964 | -0.18632 | -0.85078 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205317 | 17397 | 9174.0 | 4.1216 | 27.486 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205317 | 17397 | 9174.0 | 4.1216 | 27.486 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205317 | 0.051168 | 0.00052132 | -0.1605 | -0.87301 | - | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205317 | 0.051168 | 0.00052132 | -0.1605 | -0.87301 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8886 | 35271 | 15365. | 2.3983 | 7.7833 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8886 | 0.041068 | 0.0081498 | -1.6128 | 2.8307 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 178336 | 0.030244 | 0.011038 | 0.032136 | -1.0494 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 190434 | 25034 | 11491. | 4.0017 | 20.681 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8886 | 33455 | 15090. | 2.4123 | 8.1682 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8886 | 33455 | 15090. | 2.4123 | 8.1682 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8886 | 0.039339 | 0.0097799 | -1.3297 | 1.0447 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8886 | 0.039339 | 0.0097799 | -1.3297 | 1.0447 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8886 | 33093 | 16194. | 2.6647 | 8.0163 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8886 | 0.039018 | 0.0081368 | -0.71663 | 0.25512 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 31657 | 15515. | 2.8227 | 9.2659 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 31657 | 15515. | 2.8227 | 9.2659 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 0.037649 | 0.0089342 | -0.6608 | -0.061434 | - | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 0.037649 | 0.0089342 | -0.6608 | -0.061434 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 48593 | 0.032602 | 0.010278 | -0.2842 | -0.86615 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 52133 | 50449 | 15228. | 1.7375 | 3.1658 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2803 | 17208 | 9875.8 | 2.8723 | 9.6692 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 514625 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 513877 | 19898 | 12530. | 2.7311 | 10.108 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2803 | 17034 | 9736.1 | 2.9208 | 10.053 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2803 | 17034 | 9736.1 | 2.9208 | 10.053 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2803 | 18272 | 10535. | 2.6278 | 8.3063 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2803 | 0.05209 | 6.5854e-10 |-1.5263e+08 | 9.7035e+15 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2803 | 18093 | 10407. | 2.6661 | 8.5932 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2803 | 18093 | 10407. | 2.6661 | 8.5932 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 29991 | 26146 | 14469. | 1.7442 | 3.0601 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 29991 | 0.044976 | 0.0061579 | -1.3828 | 1.8668 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 514625 | 0.037519 | 0.0098206 | -0.31343 | -1.125 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 513877 | 18623 | 11915. | 2.953 | 11.834 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 29991 | 25257 | 14272. | 1.8083 | 3.3852 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 29991 | 25257 | 14272. | 1.8083 | 3.3852 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 29991 | 0.04427 | 0.0067953 | -1.3333 | 1.5266 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 29991 | 0.04427 | 0.0067953 | -1.3333 | 1.5266 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 29991 | 24008 | 14682. | 2.2068 | 6.3402 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 29991 | 0.043134 | 0.0074038 | -1.0454 | 0.4918 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 29991 | 22826 | 14268. | 2.3164 | 7.0168 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 29991 | 22826 | 14268. | 2.3164 | 7.0168 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 29991 | 0.042 | 0.0081658 | -0.91602 | 0.025402 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 29991 | 0.042 | 0.0081658 | -0.91602 | 0.025402 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 430 | 17728 | 7762.6 | 0.89073 | -0.69356 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 430 | 0.051563 | 0.00038385 | 0.27652 | -1.5102 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 514625 | 0.051594 | 0.00030668 | -0.26086 | -1.1414 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 513877 | 19724 | 12447. | 2.7955 | 10.612 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17402 | 7662.5 | 0.96597 | -0.5339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 430 | 17402 | 7662.5 | 0.96597 | -0.5339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051546 | 0.00038179 | 0.35007 | -1.4623 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 430 | 0.051546 | 0.00038179 | 0.35007 | -1.4623 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 19507 | 8487.1 | 0.3829 | -1.5332 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 430 | 0.051631 | 0.00043384 | -0.0028489 | -1.8758 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19142 | 8446.0 | 0.45838 | -1.4703 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 430 | 19142 | 8446.0 | 0.45838 | -1.4703 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043359 | 0.080466 | -1.8697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 430 | 0.051611 | 0.00043359 | 0.080466 | -1.8697 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 204423 | 18529 | 11328. | 3.5051 | 17.55 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 204423 | 0.051195 | 0.00054233 | -0.10371 | -0.90728 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 514625 | 0.051238 | 0.00053459 | -0.22295 | -1.1504 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 513877 | 19849 | 12511. | 2.7463 | 10.222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204423 | 18312 | 11146. | 3.5565 | 18.136 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 204423 | 18312 | 11146. | 3.5565 | 18.136 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204423 | 0.051181 | 0.00054355 | -0.077247 | -0.92018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 204423 | 0.051181 | 0.00054355 | -0.077247 | -0.92018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204423 | 18443 | 11020. | 3.2884 | 15.494 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 204423 | 0.051192 | 0.00054451 | -0.096146 | -0.91399 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204423 | 18226 | 10848. | 3.3379 | 16.014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 204423 | 18226 | 10848. | 3.3379 | 16.014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204423 | 0.051178 | 0.00054567 | -0.069315 | -0.92617 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 204423 | 0.051178 | 0.00054567 | -0.069315 | -0.92617 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10616 | 41092 | 18092. | 1.4922 | 2.5294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 10616 | 0.043373 | 0.0076517 | -1.9754 | 4.4719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 196667 | 0.032697 | 0.011917 | -0.19247 | -1.2185 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 207901 | 27802 | 13379. | 2.5044 | 8.0215 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10616 | 39144 | 18143. | 1.5028 | 2.6329 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 10616 | 39144 | 18143. | 1.5028 | 2.6329 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10616 | 0.041938 | 0.0093248 | -1.6984 | 2.3634 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 10616 | 0.041938 | 0.0093248 | -1.6984 | 2.3634 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10616 | 37267 | 16978. | 1.6452 | 3.1043 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 10616 | 0.04098 | 0.0084345 | -1.0434 | 0.59434 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10616 | 35560 | 16686. | 1.7352 | 3.5008 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10616 | 35560 | 16686. | 1.7352 | 3.5008 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10616 | 0.039523 | 0.0094587 | -0.91194 | 0.075496 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 10616 | 0.039523 | 0.0094587 | -0.91194 | 0.075496 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 15370 | 0.020995 | 0.0049504 | -0.40894 | -0.84265 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 14221 | 84512 | 16036. | 0.46898 | -0.89422 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 17155 | 0.01908 | 0.0049749 | 0.051751 | -1.0214 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 19131 | 78981 | 14421. | 0.98214 | 0.11144 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 | -1.289e+08 | 3.8725e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 | -1.289e+08 | 3.8725e+16 | | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35357 | 17800. | 0.9814 | -0.46936 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 195393 | 0.029952 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 192371 | 32959 | 17143. | 2.4962 | 6.6674 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34828 | 17592. | 1.0451 | -0.33499 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33511 | 15021. | 1.4558 | 1.19 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 56647 | 34552. | -1.3457 | -1.211 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30754 | 12357. | 1.4339 | 1.286 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30444 | 12211. | 1.4841 | 1.4573 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30894 | 12195. | 1.4223 | 1.2575 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28363 | 12068. | 1.8538 | 2.7955 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 3.2927e-10 |-1.2968e+08 | 1.9959e+16 | - | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12055 | 32958 | 32390. | 2.0575 | 1.8572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12055 | 0.019797 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 195391 | 0.023473 | 0.0036536 | -0.021701 | -1.1033 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 192369 | 32675 | 17095. | 2.5271 | 6.834 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12055 | 31985 | 31011. | 2.2139 | 2.5044 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10109 | 31054 | 27353. | 2.341 | 3.286 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1946 | 19825 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12055 | 0.019822 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10109 | 0.019938 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1946 | 0.021536 | 0.0044875 | 0.048179 | -3.5677 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12055 | 39951 | 22190. | 1.7514 | 2.5434 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12055 | 0.025151 | 0.0033875 | -0.45762 | -0.77375 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12055 | 39289 | 21971. | 1.7996 | 2.7446 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10109 | 40232 | 22712. | 1.6969 | 2.3191 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1946 | 34918 | 17492. | 2.3789 | 5.6458 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12055 | 0.024981 | 0.0034582 | -0.41397 | -0.84246 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10109 | 0.025084 | 0.0035317 | -0.45108 | -0.8835 | - | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1946 | 0.024491 | 0.0030358 | -0.31008 | -0.47306 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 492 | 18845 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 492 | 0.029398 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 195393 | 0.029682 | 0.00013598 | 0.24343 | -0.85572 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 192371 | 32598 | 16780. | 2.5738 | 7.1943 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 492 | 19104 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 416 | 16810 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21074 | 1353.2 | 20.331 | 228.88 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 492 | 0.029403 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 416 | 0.029407 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 26726 | 7454.3 | 1.462 | 1.2501 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 0.029595 | 0.00015332 | 0.43664 | -0.77606 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 492 | 26444 | 7250.9 | 1.5361 | 1.5501 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 416 | 27799 | 7882.3 | 1.1971 | 0.43587 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3161.8 | 2.0878 | 3.4767 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 492 | 0.02959 | 0.00015152 | 0.46635 | -0.73911 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 416 | 0.029627 | 0.00015147 | 0.19025 | -0.74029 | - | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9692e-05 | 1.1501 | -0.67722 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83580 | 35445 | 20915. | 2.3696 | 5.3007 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83580 | 0.029557 | 0.00023077 | 0.19011 | -1.0983 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 195393 | 0.029498 | 0.00023427 | 0.16218 | -1.03 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 192371 | 33140 | 17343. | 2.468 | 6.4621 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83580 | 35236 | 20794. | 2.3966 | 5.449 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 71033 | 41557 | 24878. | 1.6269 | 1.9061 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12547 | 28864 | 12787. | 4.4568 | 22.594 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83580 | 0.029554 | 0.00023096 | 0.20509 | -1.088 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 71033 | 0.029639 | 0.00023686 | -0.28123 | -1.2511 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12547 | 0.029462 | 0.00018507 | 0.53438 | 0.0016034 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83580 | 32064 | 15856. | 2.6908 | 8.1158 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83580 | 0.029494 | 0.00022802 | 0.25358 | -1.0009 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83580 | 31879 | 15757. | 2.7202 | 8.3109 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 71033 | 32444 | 16251. | 2.6199 | 7.5858 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12547 | 28925 | 12451. | 3.3883 | 14.278 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83580 | 0.02949 | 0.00022806 | 0.27416 | -0.9934 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 71033 | 0.029499 | 0.00022953 | 0.2285 | -1.0274 | - | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12547 | 0.029443 | 0.00021402 | 0.50539 | -0.69217 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 84175 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 0.03008 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 60883 | 0.020524 | 0.0059738 | -0.12025 | -1.3442 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 69082 | 47534 | 20022. | 1.6609 | 2.0611 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3215 | 82980 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2805 | 67674 | 17894. | -0.49397 | -2.3977 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38451 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3215 | 0.03012 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2805 | 0.026425 | 0.0034618 | -3.2475 | 13.341 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014063 | 0.0000 | 0 | 0 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 61465 | 22657. | 0.775 | -0.47639 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 0.024034 | 0.0048281 | -0.98613 | 0.086668 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 60378 | 22833. | 0.80928 | -0.43159 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 61739 | 23059. | 0.74597 | -0.52836 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52378 | 19634. | 1.2529 | 0.4845 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 0.0237 | 0.0050976 | -0.90335 | -0.2101 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 0.024048 | 0.0049639 | -1.0553 | 0.1883 | - | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021618 | 0.0053817 | -0.17689 | -1.1655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 | -1.289e+08 | 3.8725e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 | -1.289e+08 | 3.8725e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1364 | 1.3963e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1364 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 245329 | 0.029952 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 243432 | 35969 | 16243. | 1.868 | 4.1874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1364 | 1.7752e+05 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1198 | -72827 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 166 | 24036 | 19011. | 2.8855 | 4.3673 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1364 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1198 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 166 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1364 | 32471 | 11695. | 1.2663 | 1.0597 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1364 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1364 | 32208 | 11617. | 1.2967 | 1.1575 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1198 | 32515 | 11426. | 1.2843 | 1.1109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 166 | 29869 | 12740. | 1.5289 | 1.7267 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1364 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1198 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 166 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 16748 | 57667 | 30352. | 0.56604 | -0.72238 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 16748 | 0.026641 | 0.0034016 | -1.6045 | 2.056 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 245327 | 0.024542 | 0.0035337 | -0.49582 | -0.90483 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 243430 | 35715 | 16277. | 1.8828 | 4.234 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 16748 | 56792 | 30462. | 0.58782 | -0.70337 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 14294 | 50906 | 27224. | 0.91952 | 0.10093 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 2454 | 26713 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 16748 | 0.026435 | 0.0036276 | -1.4958 | 1.4162 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 14294 | 0.026124 | 0.0034626 | -1.2799 | 0.74529 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 2454 | 0.024832 | 0.0022480 | -0.58044 | -8.9762 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16748 | 40980 | 17974. | 1.5838 | 2.9845 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 16748 | 0.02591 | 0.0029527 | -0.94865 | 0.16314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 16748 | 40521 | 17942. | 1.598 | 3.0339 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 14294 | 40965 | 18100. | 1.5739 | 2.9899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 2454 | 38153 | 16878. | 1.7443 | 3.2939 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 16748 | 0.025784 | 0.0030391 | -0.90847 | 0.022553 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 14294 | 0.025857 | 0.0030583 | -0.96646 | 0.11358 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 2454 | 0.025388 | 0.0029016 | -0.61268 | -0.3212 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 760 | 20979 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 760 | 0.029429 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 245329 | 0.029719 | 0.00013149 | -0.24601 | -0.89964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 243432 | 35590 | 15990. | 1.9192 | 4.4773 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 760 | 21034 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 650 | 24511 | 7628.2 | 2.5597 | 5.6446 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 110 | 16609 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 760 | 0.029431 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 650 | 0.029506 | 0.00012067 | 1.4709 | 1.2257 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 110 | 0.029336 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 760 | 30837 | 10611. | 1.1861 | 0.36866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 760 | 0.02964 | 0.00014964 | 0.10986 | -0.66492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 760 | 30359 | 10356. | 1.2653 | 0.64151 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 650 | 31926 | 10767. | 1.0457 | 0.039398 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 110 | 24948 | 6286.0 | 2.6371 | 8.3163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 760 | 0.029634 | 0.00014839 | 0.13465 | -0.64494 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 650 | 0.029663 | 0.00014121 | 0.0047368 | -0.3473 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 110 | 0.029533 | 0.00012681 | 0.82667 | -0.37978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 101130 | 39610 | 20399. | 1.709 | 2.6145 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 101130 | 0.029615 | 0.00021542 | -0.14759 | -0.99537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 245329 | 0.029564 | 0.00022550 | -0.33893 | -0.99724 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 243432 | 36132 | 16375. | 1.8569 | 4.1088 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 101130 | 39443 | 20363. | 1.7209 | 2.6585 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 87164 | 44450 | 23277. | 1.2884 | 0.87662 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 13966 | 33976 | 14784. | 2.2838 | 6.8161 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 101130 | 0.029612 | 0.00021612 | -0.13713 | -1.001 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 87164 | 0.02968 | 0.00020465 | -0.45123 | -0.90393 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 13966 | 0.029535 | 0.00020264 | 0.15925 | -0.68153 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101130 | 35343 | 15833. | 1.9834 | 4.8359 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 101130 | 0.029558 | 0.00022942 | -0.13407 | -1.0406 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 101130 | 35159 | 15795. | 1.9995 | 4.9104 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 87164 | 35700 | 16011. | 1.9532 | 4.6698 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 13966 | 31978 | 14038. | 2.3601 | 7.0275 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 101130 | 0.029555 | 0.00023026 | -0.11487 | -1.0578 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 87164 | 0.029564 | 0.00022883 | -0.1667 | -1.0206 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 13966 | 0.029499 | 0.00023091 | 0.19838 | -1.0716 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6078 | 60174 | 56005. | 0.78191 | -2.0756 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 6078 | -0.014684 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 112018 | 0.02006 | 0.0053023 | -0.10615 | -1.1295 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 127214 | 45529 | 15969. | 1.8597 | 3.6642 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 6078 | 59874 | 54513. | 0.85203 | -1.9989 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 5425 | 1.1928e+05 | 28288. | -4.1734 | 8.0088 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 653 | -36943 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 6078 | -0.0046122 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 5425 | 0.013854 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 653 | 0.18988 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6078 | 57198 | 18889. | 1.2031 | 0.99956 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 6078 | 0.023293 | 0.0042046 | -0.84924 | 0.21293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6078 | 56485 | 18992. | 1.2176 | 1.0334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5425 | 56771 | 19096. | 1.2186 | 1.0494 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 653 | 54186 | 17969. | 1.1886 | 0.72234 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 6078 | 0.023038 | 0.0044084 | -0.81419 | 0.03289 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 5425 | 0.023115 | 0.0043756 | -0.85974 | 0.15582 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 653 | 0.022428 | 0.0046141 | -0.48483 | -0.6575 | RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | 16948 | 7034.7 | 2.2407 | 8.6611 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | -1.7546 | 79.003 | -0.018294 | 1.6928 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | 1.9879 | 81.697 | -0.11226 | 1.4566 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | 17033 | 7012.6 | 2.1639 | 8.0908 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | -5.0118 | 76.549 | 0.26982 | 1.679 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | -0.97453 | 88.167 | 0.18933 | 1.6242 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | 15034 | 7552.9 | 4.4959 | 26.711 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | -5.0118 | 76.549 | 0.26982 | 1.679 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | -0.97453 | 88.167 | 0.18933 | 1.6242 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 132.57 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 26.21 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 1167.9 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 26.435 | 93.687 | 2.4563 | -4.3868 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 248.78 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 1684 | 270.62 | -0.54609 | -0.17308 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 20.588 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | -16.069 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | -15189 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135288 | -2099.5 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135288 | -7.9623 | 123.55 | 0.71519 | 1.6756 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135288 | -3276.5 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135288 | -12.859 | 139.25 | 0.82258 | 1.162 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 17379 | 7488.2 | 2.1511 | 7.5772 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 7.2296 | 69.425 | -0.1465 | 2.1071 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 1.2216 | 71.996 | -0.053503 | 1.7986 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | 17601 | 7502.3 | 2.0696 | 7.1086 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | 1.8542 | 74.007 | -0.59634 | 1.4905 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | -3.5114 | 84.397 | -0.35341 | 1.2545 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | 15175 | 7374.4 | 3.4748 | 16.756 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | 1.8542 | 74.007 | -0.59634 | 1.4905 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | -3.5114 | 84.397 | -0.35341 | 1.2545 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 138.41 | 118.16 | 3.5078 | -17.885 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 12.117 | 102.53 | 0.80622 | -0.070725 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 2297.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 3.7518 | 90.055 | 0.32023 | 4.1183 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 191.53 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 1741.6 | 75.725 | 110.37 | -1536.2 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | -68.642 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 1.3734 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | -13611 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134774 | 793.04 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134774 | -2.8073 | 52.860 | -5.442 | -4.5809 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134774 | 708.68 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134774 | -2.2788 | 55.155 | -4.2347 | -2.5366 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 17636 | 7963.4 | 2.5746 | 12.505 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1011 | 18546 | 8738.9 | 2.2136 | 7.5839 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | 18453 | 8998.7 | 2.4798 | 8.9545 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | -1.6109 | 50.485 | -0.48345 | 3.792 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | -1.6947 | 52.807 | -0.48533 | 2.4552 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49833 | 7762.2 | 0.63589 | 0.42375 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47184 | 10930. | 0.96431 | 0.0012975 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 17730 | 3991.1 | 0.51028 | -1.7773 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16553 | 5986.9 | 0.90033 | -0.10712 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6064 | 19127 | 9536.5 | 2.4661 | 8.0908 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6064 | 17337 | 8126.8 | 2.7594 | 11.446 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6064 | 1.512 | 48.939 | -0.19658 | 2.9746 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6064 | 0.88652 | 49.564 | -0.12805 | 1.6866 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6227 | 17875 | 8550.7 | 2.6612 | 10.283 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 17280 | 8027.6 | 2.7438 | 11.482 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 1.496 | 51.814 | -0.22628 | 2.9615 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 0.66149 | 51.814 | -0.12352 | 1.7516 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 73240 | 3829.3 | -0.4713 | -1.5697 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72657 | 3740.5 | -0.0096908 | -1.5867 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | - | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | 31628 | 16066. | 2.5742 | 7.1384 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | -252.2 | 312.02 | 0.74345 | 1.9019 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | 0.27666 | 287.56 | 0.20392 | 2.075 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -15452 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -264.23 | 299.18 | 0.47703 | 0.49798 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -54.121 | 294.16 | 0.27526 | 2.1575 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | 30147 | 11714. | 0.41498 | -9.8106 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | -264.23 | 299.18 | 0.47703 | 0.49798 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | -54.121 | 294.16 | 0.27526 | 2.1575 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -72.74 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 21.428 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 2887.5 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 400.7 | 607.12 | -0.69179 | -0.98527 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 1133.4 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 9015.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 68.672 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -128.12 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -30.872 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 964 | -476.96 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 964 | 8.1423 | 246.81 | 0.6626 | 2.9528 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 964 | -476.93 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 964 | 8.1639 | 246.72 | 0.66356 | 2.9443 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 29972 | 13789. | 3.3003 | 13.639 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 357.31 | 232.51 | -0.088118 | 4.2848 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 13.258 | 269.78 | -0.097059 | 1.3226 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 22286 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 314.15 | 133.38 | -3.1119 | 17.171 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 8.2119 | 236.52 | -0.66002 | 6.1808 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 30629 | 11774. | 1.897 | 0.72965 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 314.15 | 133.38 | -3.1119 | 17.171 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 8.2119 | 236.52 | -0.66002 | 6.1808 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 2257.3 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 92.7 | 527.19 | 0.94621 | -2.1421 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 35682 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -719.78 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -851.12 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 9034.7 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 1466.7 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -5.4692 | 499.96 | 1.1839 | -0.10917 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 32425 | 0.0000 | 0 | 0 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1834 | 451.43 | 212.62 | 2.5952 | -4.9424 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1834 | -6.2572 | 290.68 | -0.34044 | 1.8715 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1834 | 451.53 | 212.51 | 2.5992 | -4.9727 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1834 | -6.3527 | 290.54 | -0.34064 | 1.8749 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27904 | 9632.1 | 2.7909 | 7.6177 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 243 | 32408 | 15319. | 2.2916 | 5.0218 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 32861 | 16044. | 2.3737 | 5.3854 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 106.45 | 318.06 | -0.33263 | -0.61089 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 1.5014 | 277.48 | -0.41501 | 1.5076 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55462 | 16674. | 0.78999 | -0.34657 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 83 | 56620 | 19114. | 0.72237 | -0.77267 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 60137 | 23777. | 0.90664 | -0.20996 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 207.8 | 330.48 | 0.55039 | 0.84658 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 19.106 | 256.25 | -1.5006 | 5.476 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26728 | 6831.8 | 1.4543 | 1.4694 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27346 | 8208.2 | 1.5211 | 1.1821 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3100 | 32194 | 15465. | 2.2854 | 5.0593 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3143 | 32017 | 15923. | 2.7068 | 8.1804 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 6.8629 | 357.77 | 0.012442 | -0.30945 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 5.2593 | 254.30 | 0.049272 | 1.4062 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1444 | 31002 | 13703. | 2.5087 | 6.9782 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 31630 | 15802. | 2.7885 | 8.616 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 126.38 | 334.73 | -0.39252 | -0.01247 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 1.4676 | 255.15 | -0.026631 | 1.5354 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 85172 | 11720. | -0.47264 | -1.3887 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 17 | 81083 | 10105. | 0.43689 | -1.0014 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | 88567 | 14654. | 0.10968 | -1.2961 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | 30.034 | 171.69 | 0.31512 | 0.75682 | - | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | -3.1379 | 221.61 | -0.0053464 | -1.3473 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136356 | 16944 | 8501.7 | 2.8218 | 10.541 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136356 | -13.806 | 79.916 | -0.027084 | 1.6455 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 136356 | -5.3915 | 82.721 | -0.18015 | 1.3989 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136356 | 17065 | 8603.6 | 2.797 | 10.286 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136356 | 34.08 | 61.854 | 0.42598 | 2.3529 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 136356 | 18.894 | 80.787 | 0.1013 | 1.5315 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136356 | 18060 | 10426. | 2.5079 | 7.6398 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136356 | 34.08 | 61.854 | 0.42598 | 2.3529 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 136356 | 18.894 | 80.787 | 0.1013 | 1.5315 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 90.644 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 6.2998 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 1694.8 | 200.87 | 2.0019 | -12.049 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 27.739 | 88.275 | 3.7147 | -7.8252 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 220.93 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | 1966 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | -6.8063 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | -21.464 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 136356 | -10559 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 136356 | 7745.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 136356 | 9.5212 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 136356 | 3556.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 136356 | -0.47452 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136740 | 17367 | 9070.9 | 2.8491 | 10.621 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136740 | -4.588 | 71.596 | -0.17619 | 2.0067 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 136740 | -5.4963 | 74.524 | -0.18792 | 1.664 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136740 | 17739 | 9340.5 | 2.779 | 10.006 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136740 | 37.893 | 62.603 | -0.83451 | 5.2317 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 136740 | 15.652 | 78.367 | -0.5074 | 2.2652 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136740 | 17636 | 10052. | 2.3359 | 6.3038 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136740 | 37.893 | 62.603 | -0.83451 | 5.2317 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 136740 | 15.652 | 78.367 | -0.5074 | 2.2652 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 106.03 | 160.12 | 1.2075 | -5.302 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 2.6035 | 114.54 | 0.74465 | -0.38669 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 2919.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 12.664 | 105.80 | 0.30476 | 2.356 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 190.83 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | 2419.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | -77.132 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | -9.1635 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 136740 | -10372 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 136740 | 514.39 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 136740 | -3.0385 | 52.496 | -3.2611 | -1.5084 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 136740 | 482.81 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 136740 | -3.3764 | 53.877 | -2.8909 | -0.88304 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 20022 | 10520. | 1.766 | 3.7793 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 18384 | 10223. | 2.4817 | 7.6986 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 5.183 | 36.717 | 0.17014 | -0.22024 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 1.6 | 36.872 | -0.44514 | 0.2722 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1010 | 20248 | 11329. | 1.9428 | 4.1076 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1010 | 19835 | 11141. | 2.1202 | 4.9609 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1010 | 1.9297 | 50.259 | -0.64886 | 4.0537 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1010 | 0.078077 | 52.417 | -0.53162 | 2.5715 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 151 | 49162 | 10011. | 0.84182 | 0.064665 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 151 | 47965 | 10848. | 1.0419 | 0.42726 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 151 | 7.2707 | 36.942 | -0.35016 | 1.5885 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 151 | 0.21215 | 34.503 | -0.12037 | -0.4101 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 151 | 47778 | 10379. | 1.0432 | 0.55372 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 151 | 48420 | 11000. | 0.96775 | 0.2088 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 151 | 6.992 | 37.795 | -0.35789 | 1.7001 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 151 | 0.28026 | 35.340 | -0.0944 | -0.43632 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 12 | 19278 | 6184.5 | 0.50448 | -1.1213 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 12 | 19073 | 8620.5 | 0.43597 | -1.4854 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | -36.975 | 105.06 | -0.77759 | -1.1583 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 12 | 26.757 | 59.779 | -0.85686 | 0.17629 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 50 | 18535 | 8849.6 | 1.4599 | 2.5334 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 19093 | 9185.5 | 1.2854 | 1.7655 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | -9.0805 | 69.642 | -1.1869 | 2.5521 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 50 | 0.52266 | 61.164 | -1.1004 | 1.4363 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6055 | 21750 | 12640. | 1.7318 | 2.7979 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6055 | 18523 | 10183. | 2.4095 | 6.9982 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 3.85 | 48.837 | -0.26084 | 3.0431 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6055 | 2.3507 | 49.331 | -0.17579 | 1.7977 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6225 | 19560 | 11084. | 2.1543 | 5.1881 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 18436 | 10035. | 2.4069 | 7.0708 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 3.9568 | 51.762 | -0.29187 | 3.0083 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6225 | 2.0759 | 51.614 | -0.16748 | 1.8582 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 18 | 73011 | 3600.4 | -0.1962 | -1.363 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | 72870 | 3874.3 | 0.20761 | -1.2004 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -3.1432 | 26.800 | 0.38164 | -0.71397 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 18 | -4.7318 | 28.473 | 0.2784 | -1.468 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 19 | 72599 | 3744.5 | 0.2829 | -1.2429 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | 72881 | 3868.3 | 0.20945 | -1.1996 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -3.3493 | 26.142 | 0.44053 | -0.62823 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 19 | -5.8836 | 28.675 | 0.37652 | -1.4469 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1131 | 34672 | 16154. | 2.0384 | 4.7275 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1131 | -203.87 | 297.73 | 0.54493 | 1.6494 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 1131 | 9.5669 | 286.42 | 0.035123 | 1.5338 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1131 | -1792.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1131 | -182.86 | 303.01 | -0.078292 | 1.0887 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 1131 | -56.173 | 328.96 | 0.62044 | 1.9228 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1131 | 36734 | 16473. | 1.5605 | 2.6803 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1131 | -182.86 | 303.01 | -0.078292 | 1.0887 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 1131 | -56.173 | 328.96 | 0.62044 | 1.9228 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | 1076 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | 248.69 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | -18717 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | -6279.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | -7007.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | 15098 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | 434.98 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | -49.538 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 1131 | -5046.7 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 1131 | -430.06 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 1131 | 20.07 | 241.45 | 0.18245 | 1.5529 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 1131 | -430.04 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 1131 | 20.312 | 241.34 | 0.18168 | 1.5383 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2416 | 33169 | 14605. | 2.0632 | 5.1581 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2416 | 350.49 | 215.99 | -0.034146 | 5.0129 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 2416 | 40.414 | 252.32 | 0.10354 | 1.4995 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2416 | 42707 | 20330. | 1.1055 | 0.47636 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2416 | 304.28 | 142.53 | -2.6942 | 14.385 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 2416 | 28.075 | 187.46 | 0.1195 | 7.1036 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2416 | 37429 | 15295. | 1.1997 | 0.91365 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2416 | 304.28 | 142.53 | -2.6942 | 14.385 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 2416 | 28.075 | 187.46 | 0.1195 | 7.1036 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | 2353.4 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | -313.22 | 386.64 | 2.9771 | 5.6403 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | 18928 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | -133.01 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | -427.19 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | 8071.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | 1612.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | -5.2021 | 494.81 | 1.554 | -0.41946 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 2416 | 35632 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 2416 | 436.77 | 199.85 | 2.8015 | -4.3337 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 2416 | 20.041 | 272.50 | -0.26428 | 2.1857 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 2416 | 436.87 | 199.81 | 2.8029 | -4.3575 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 2416 | 19.802 | 272.49 | -0.26421 | 2.1833 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 63 | 30650 | 10078. | 1.6644 | 2.7639 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 64 | 32179 | 12803. | 2.4339 | 9.6865 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 64 | 35.641 | 329.02 | 0.25025 | -1.1344 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 64 | 12.588 | 218.46 | 0.043804 | -0.53733 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 297 | 34919 | 15333. | 1.7607 | 3.0091 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 298 | 35023 | 15313. | 1.8102 | 3.4564 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 298 | 145.92 | 286.82 | -0.43999 | -0.31443 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 298 | 20.735 | 256.79 | -0.46368 | 1.7913 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 369 | 52242 | 15165. | 1.1819 | 0.73952 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 375 | 52796 | 17007. | 1.5852 | 2.5577 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 375 | 34.355 | 280.17 | 0.39128 | 0.74407 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 375 | 15.814 | 229.90 | -0.025965 | 0.84461 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 154 | 51801 | 16154. | 1.2586 | 0.73164 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 51961 | 17546. | 1.5927 | 2.1842 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 124.4 | 298.47 | 0.71824 | 1.4717 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 157 | 23.983 | 245.63 | -0.8576 | 3.5343 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 28 | 32128 | 12765. | 0.92513 | -0.6755 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 28 | 30978 | 9845.9 | 1.4405 | 1.3182 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | -12.559 | 351.06 | -0.062359 | -1.2045 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 28 | 71.375 | 212.06 | -0.96644 | 0.70164 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 13 | 28861 | 7446.1 | 0.95491 | 0.50533 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 28015 | 6650.5 | 0.93559 | 0.77444 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 78.684 | 395.69 | -0.61204 | -1.1052 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 13 | 67.737 | 205.05 | -0.94752 | 0.43607 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3796 | 35388 | 15079. | 1.6026 | 2.4226 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3833 | 35165 | 15844. | 2.0241 | 5.0113 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3833 | 44.953 | 332.20 | -0.083557 | -0.1464 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3833 | 22.244 | 239.82 | 0.06429 | 1.5362 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1803 | 33954 | 14214. | 1.8354 | 3.7437 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1815 | 34277 | 15373. | 2.0714 | 5.082 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1815 | 150.32 | 306.67 | -0.47743 | 0.33144 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1815 | 24.702 | 241.65 | -0.014321 | 1.6494 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 56 | 77949 | 9843.3 | 0.69866 | -0.70502 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 84605 | 14943. | 0.61108 | -0.89897 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 14.036 | 204.19 | -0.27017 | -0.46031 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 68 | 9.4138 | 200.10 | 0.094346 | -0.82414 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 26 | 78516 | 9881.2 | 0.69383 | -0.73558 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 32 | 82924 | 14501. | 0.67653 | -0.77625 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 32 | 21.45 | 155.83 | -0.50694 | -0.76987 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 32 | -7.15 | 201.35 | -0.10123 | -1.2776 | RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | - | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1114 | 22005 | 13480. | 2.111 | 4.6145 | - | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1114 | 25967 | 20560. | 2.665 | 7.3674 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1331 | 26754 | 21023. | 2.4358 | 6.1983 | - | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1331 | 14925 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | - | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6277 | 23219 | 16856. | 2.8817 | 9.6389 | - | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6277 | 20424 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28083 | 21897. | 2.2971 | 4.9871 | - | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16773 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | - | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 625 | 33795 | 14116. | 1.1405 | 0.37808 | - | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 625 | 43117 | 25097. | 1.3443 | 0.76921 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 702 | 46341 | 27167. | 1.1851 | 0.34205 | - | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 702 | 16477 | 0.0000 | 0 | 0 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | - | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3387 | 40553 | 23737. | 1.5848 | 1.6158 | - | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3387 | 42310 | 22382. | 1.3771 | 0.13748 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 718 | 45453 | 26972. | 1.1734 | 0.15441 | - | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 718 | 40276 | 25180. | 1.1667 | -0.34064 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 26 | 18760 | 6763.0 | 1.3405 | 1.6424 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 26 | 20917 | 7890.1 | 0.93293 | -0.015381 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1108 | 23693 | 13892. | 1.6937 | 2.8662 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1108 | 28275 | 19908. | 1.8908 | 3.9879 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1380 | 29846 | 20176. | 1.5671 | 2.4863 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1380 | 56361 | 32660. | -0.11804 | -1.376 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 50 | 23673 | 10479. | 0.82994 | 0.77987 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 50 | 20714 | 10559. | 1.954 | 3.693 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6280 | 26748 | 19085. | 1.9955 | 4.3332 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6280 | 30164 | 9120.5 | -9.5647 | -110.46 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1430 | 32110 | 22031. | 1.4906 | 1.9099 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1430 | 14567 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 23 | 31505 | 7828.6 | 0.30339 | 0.084104 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 23 | 33777 | 8286.9 | 0.56523 | 0.84402 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 754 | 36674 | 14574. | 0.99672 | 0.23515 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 754 | 44916 | 21972. | 1.1584 | 0.80798 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 924 | 44857 | 20943. | 1.258 | 1.4209 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 924 | 44471 | 27855. | 1.7027 | 1.3958 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 30 | 36033 | 12831. | 0.62106 | -1.1291 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 30 | 27909 | 10147. | 1.6989 | 1.7925 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 4138 | 42477 | 20820. | 1.4211 | 1.689 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 4138 | 38915 | 11677. | 0.57202 | -1.4853 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 910 | 47881 | 22815. | 1.0777 | 0.62783 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 910 | 38396 | 19935. | 1.2687 | 0.6484 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 408 | 60859 | 16752. | 0.57635 | -0.60836 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18011 | 9552.2 | 3.3233 | 16.609 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20734 | 10967. | 2.9153 | 12.211 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18087 | 9605.1 | 3.3066 | 16.418 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18145 | 9645.1 | 3.2939 | 16.274 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32085 | 14282. | 2.2156 | 5.3117 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 284 | 83830 | 10372. | -0.17318 | -1.1672 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4698 | 31668 | 14395. | 2.3257 | 5.7278 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4696 | 34930 | 16271. | 1.8741 | 3.2634 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4698 | 31765 | 14465. | 2.309 | 5.6249 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4698 | 31839 | 14518. | 2.2963 | 5.5476 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1621 | 56226 | 18259. | 0.68878 | -0.51511 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 865 | 57384 | 14625. | 0.85651 | 0.086274 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8977 | 19643 | 11936. | 2.5438 | 8.1425 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8977 | 23151 | 13550. | 2.063 | 5.1274 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8977 | 19744 | 12000. | 2.5246 | 8.008 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8977 | 19821 | 12048. | 2.5101 | 7.9072 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3571 | 36437 | 15357. | 1.4037 | 1.915 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80946 | 10071. | 0.17035 | -0.97608 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 5836 | 35134 | 14777. | 1.5944 | 2.6191 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5834 | 38285 | 15694. | 1.3442 | 1.6574 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5836 | 35235 | 14818. | 1.5846 | 2.577 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5836 | 35313 | 14849. | 1.5771 | 2.5454 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2973 | 53150 | 15474. | 0.92134 | 0.24059 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 450 | 60445 | 16851. | 0.5828 | -0.59625 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18011 | 9552.2 | 3.3233 | 16.609 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20668 | 10944. | 2.9209 | 12.273 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18085 | 9604.3 | 3.3068 | 16.42 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18143 | 9643.8 | 3.2943 | 16.279 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31885 | 14227. | 2.229 | 5.4078 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 305 | 83567 | 10503. | -0.16489 | -1.1645 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4725 | 31650 | 14377. | 2.3274 | 5.7405 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4725 | 34856 | 16230. | 1.8813 | 3.2997 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4725 | 31745 | 14446. | 2.3108 | 5.6384 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4725 | 31819 | 14499. | 2.2983 | 5.5618 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1723 | 55951 | 18279. | 0.69727 | -0.49903 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 923 | 57085 | 14672. | 0.85879 | 0.10102 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8977 | 19643 | 11936. | 2.5438 | 8.1425 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8977 | 23068 | 13525. | 2.0705 | 5.1697 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8977 | 19742 | 11999. | 2.5249 | 8.0099 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8977 | 19818 | 12046. | 2.5106 | 7.9107 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3714 | 36234 | 15352. | 1.4093 | 1.9395 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 468 | 80647 | 10191. | 0.17136 | -0.9636 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 5861 | 35104 | 14768. | 1.5967 | 2.6266 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5861 | 38210 | 15682. | 1.3484 | 1.6699 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5861 | 35205 | 14809. | 1.5869 | 2.5847 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5861 | 35282 | 14840. | 1.5795 | 2.5533 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 3084 | 52970 | 15490. | 0.92367 | 0.2498 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 408 | 60742 | 16743. | 0.58999 | -0.59293 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18010 | 9547.4 | 3.3196 | 16.575 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20747 | 10970. | 2.9084 | 12.158 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18086 | 9600.1 | 3.3028 | 16.385 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18144 | 9640.2 | 3.2902 | 16.241 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32079 | 14282. | 2.2144 | 5.3013 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 284 | 83734 | 10325. | -0.16802 | -1.1596 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4698 | 31767 | 14474. | 2.3094 | 5.6217 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4696 | 34970 | 16301. | 1.8712 | 3.2434 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4698 | 31865 | 14544. | 2.2927 | 5.5202 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4698 | 31940 | 14597. | 2.2801 | 5.444 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1621 | 56187 | 18226. | 0.68739 | -0.5119 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 865 | 57345 | 14608. | 0.85925 | 0.089084 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8977 | 19660 | 11967. | 2.541 | 8.1063 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8977 | 23192 | 13589. | 2.057 | 5.0836 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8977 | 19761 | 12030. | 2.5218 | 7.9719 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8977 | 19838 | 12079. | 2.5073 | 7.8712 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3571 | 36502 | 15410. | 1.3944 | 1.8691 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 426 | 80917 | 9979.4 | 0.17167 | -0.96014 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 5836 | 35227 | 14812. | 1.5853 | 2.5757 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 5834 | 38312 | 15705. | 1.3426 | 1.6442 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 5836 | 35329 | 14852. | 1.5756 | 2.5341 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 5836 | 35407 | 14883. | 1.5682 | 2.503 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 2973 | 53155 | 15447. | 0.91467 | 0.2296 | RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27184 |-2.3752e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 643536 | 2.2184e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 200376 |-1.4983e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39501 | 1.0727 | 0.90075 | 0.34616 | -0.41123 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39052 | 0.048658 | 0.0067279 | -2.5636 | 6.3494 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 27384 | 1.0004e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 365952 |-1.4326e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 108952 |-3.3233e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21721 | 1.2018 | 1.0255 | 0.54533 | -0.09223 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21208 | 0.028147 | 0.0033293 | -2.3476 | 5.1966 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 53136 |-3.6659e+12 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 792968 |-7.6814e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 655584 |-1.4872e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 792968 |-7.6814e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 792968 |-7.6814e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 229752 | 1.8362e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 40548 | 1.1116 | 0.93346 | 0.36733 | -0.49184 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 40092 | 0.048719 | 0.0066549 | -2.6061 | 6.6347 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29400 |-2.7988e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 524480 |-1.8845e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 464512 | 2.7473e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 524480 |-1.8845e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 524480 |-1.8845e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 190704 | 1.5925e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 27482 | 1.2473 | 1.0395 | 0.41589 | -0.53358 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 26779 | 0.028142 | 0.0033404 | -2.4322 | 5.8062 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | @@ -1955,8 +2063,8 @@ RichRecPixelQC INFO 1D profile histograms in directory " | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14480 | 1.6812 | 0.51035 | 0.19133 | -0.6459 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14480 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12947 | 0.10503 | 0.10308 | 1.0461 | 0.1068 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14329 | 21430 | 13165. | 2.5908 | 8.7614 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14412 | 957.18 | 745.14 | 2.7871 | 12.03 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 15080 | 1.5897 | 0.51495 | 0.30552 | -0.55274 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 15080 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 13345 | 0.093828 | 0.10282 | 1.1943 | 0.41129 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14975 | 24204 | 15079. | 1.7632 | 3.5466 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 15020 | 977.45 | 731.13 | 2.7001 | 11.887 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref new file mode 100644 index 0000000000000000000000000000000000000000..4755903d7fec8da7eea2b5ca8ed37e30f63b6964 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref @@ -0,0 +1,1962 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 893 | 18734 | 20.979 | + | "nTracksSelected" | 893 | 18734 | 20.979 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 1000 | + | "Nb events removed" | 107 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 1000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 892 | 93999 | 105.38 | + | "Created long tracks" | 892 | 1006 | 1.1278 | + | "Empty input tracks" | 1 | + | "Input tracks" | 892 | 99463 | 111.51 | + | "Number of candidate bins per track" | 93999 | 49035 | 0.52165 | 1.1843 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 25485 | 769 | 0.030175 | 0.17244 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 24929 | 252 | 0.010109 | 0.10043 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 25485 | 5689 | 0.22323 | 0.48719 | + | "Number of x candidates per track 2nd Loop" | 24929 | 19437 | 0.77969 | 1.0419 | + | "Percentage second loop execution" | 25485 | 24929 | 0.97818 | + | "Removed duplicates" | 892 | 12 | 0.013453 | +PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 609 | 2440 | 4.0066 | + | "#tracks with hits added" | 609 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 449086 | 251724 | 0.56053 | 0.54375 | 0.0000 | 3.0000 | + | "Created T2x1 three-hit combinations in case 1" | 211636 | 117002 | 0.55285 | 0.54899 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 191512 | 102460 | 0.53501 | 0.56102 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 2679 | 32218 | 12.026 | 12.271 | 0.0000 | 99.000 | + | "Created XZ tracks (part 1)" | 2679 | 31216 | 11.652 | 12.221 | 0.0000 | 89.000 | + | "Created XZ tracks in case 0" | 1786 | 36342 | 20.348 | 14.965 | 0.0000 | 99.000 | + | "Created XZ tracks in case 1" | 1786 | 18571 | 10.398 | 8.5913 | 0.0000 | 59.000 | + | "Created XZ tracks in case 2" | 1786 | 8521 | 4.7710 | 5.2740 | 0.0000 | 40.000 | + | "Created full hit combinations in case 0" | 50085 | 50085 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 20174 | 20174 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 10814 | 10814 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 1786 | 35405 | 19.824 | 10.647 | 0.0000 | 65.000 | + | "Created seed tracks (part 0)" | 893 | 19831 | 22.207 | 11.956 | 0.0000 | 60.000 | + | "Created seed tracks (part 1)" | 893 | 18908 | 21.174 | 11.842 | 0.0000 | 74.000 | + | "Created seed tracks in case 0" | 1786 | 23630 | 13.231 | 7.4624 | 0.0000 | 47.000 | + | "Created seed tracks in case 1" | 1786 | 34315 | 19.213 | 10.350 | 0.0000 | 60.000 | + | "Created seed tracks in case 2" | 1786 | 37880 | 21.209 | 11.549 | 0.0000 | 70.000 | + | "Created seed tracks in recovery step" | 893 | 859 | 0.96193 | 1.3305 | 0.0000 | 9.0000 | + | "Created two-hit combinations in case 0" | 271633 | 2636455 | 9.7059 | 7.4519 | 0.0000 | 97.000 | + | "Created two-hit combinations in case 1" | 258894 | 1453666 | 5.6149 | 4.2931 | 0.0000 | 82.000 | + | "Created two-hit combinations in case 2" | 243181 | 1454820 | 5.9825 | 4.6459 | 0.0000 | 83.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 137 | + | "chi2 cut" | 343 | + | "nIterations" | 1006 | 2336 | 2.3221 | + | "nOutlierIterations" | 869 | 912 | 1.0495 | + | "nTracksInput" | 893 | 1006 | 1.1265 | + | "nTracksOutput" | 893 | 526 | 0.58903 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 216 | + | "chi2 cut" | 4072 | + | "nIterations" | 18734 | 37786 | 2.0170 | + | "nOutlierIterations" | 18518 | 17156 | 0.92645 | + | "nTracksInput" | 893 | 18734 | 20.979 | + | "nTracksOutput" | 893 | 14446 | 16.177 | +PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 888 | 227202.3 | 255.86 | + | "#MatchingMLP" | 26109 | 23292.25 | 0.89212 | + | "#MatchingTracks" | 888 | 18734 | 21.097 | +PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 14812 | 59997 | 4.0506 | + | "#tracks with hits added" | 14812 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 10 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 274382 | -8571736 | -31.240 | 1234.1 | -2656.2 | 2656.4 | + | "Average X in T1V" | 275897 | -7056664 | -25.577 | 1218.9 | -2656.3 | 2656.4 | + | "Average X in T1X1" | 271633 |-1.243158e+07 | -45.766 | 1250.5 | -2646.1 | 2646.2 | + | "Average X in T1X2" | 279246 | -4452248 | -15.944 | 1209.1 | -2646.2 | 2646.1 | + | "Average X in T2U" | 265423 | -5165696 | -19.462 | 1223.3 | -2656.3 | 2656.2 | + | "Average X in T2V" | 272034 | -4357348 | -16.018 | 1218.0 | -2656.3 | 2656.4 | + | "Average X in T2X1" | 256665 | -4753668 | -18.521 | 1229.9 | -2646.2 | 2646.2 | + | "Average X in T2X2" | 279569 | -3914927 | -14.003 | 1210.8 | -2646.2 | 2646.2 | + | "Average X in T3U" | 293751 | 889011.2 | 3.0264 | 1460.1 | -3188.2 | 3188.4 | + | "Average X in T3V" | 301199 | -1827591 | -6.0677 | 1451.9 | -3188.4 | 3188.4 | + | "Average X in T3X1" | 283940 | -541994 | -1.9088 | 1462.7 | -3176.2 | 3176.2 | + | "Average X in T3X2" | 311558 | -3325860 | -10.675 | 1443.9 | -3176.2 | 3176.2 | + | "Hits in T1U" | 3572 | 274382 | 76.815 | 28.250 | 11.000 | 288.00 | + | "Hits in T1V" | 3572 | 275897 | 77.239 | 28.670 | 10.000 | 243.00 | + | "Hits in T1X1" | 3572 | 271633 | 76.045 | 28.322 | 12.000 | 319.00 | + | "Hits in T1X2" | 3572 | 279246 | 78.176 | 28.523 | 14.000 | 190.00 | + | "Hits in T2U" | 3572 | 265423 | 74.307 | 27.286 | 10.000 | 209.00 | + | "Hits in T2V" | 3572 | 272034 | 76.157 | 27.929 | 13.000 | 197.00 | + | "Hits in T2X1" | 3572 | 256665 | 71.855 | 26.544 | 12.000 | 232.00 | + | "Hits in T2X2" | 3572 | 279569 | 78.267 | 28.560 | 12.000 | 185.00 | + | "Hits in T3U" | 3572 | 293751 | 82.237 | 28.795 | 16.000 | 289.00 | + | "Hits in T3V" | 3572 | 301199 | 84.322 | 29.598 | 17.000 | 247.00 | + | "Hits in T3X1" | 3572 | 283940 | 79.490 | 27.334 | 18.000 | 181.00 | + | "Hits in T3X2" | 3572 | 311558 | 87.222 | 30.652 | 16.000 | 215.00 | + | "Total number of hits" | 893 | 3365297 | 3768.5 | 1185.8 | 1170.0 | 6478.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 893 | 192888 | 216.00 | + | "# RawBank::UTError banks" | 893 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | +PrTrackAssociator_825c239a INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Efficiency" | 14483 | 13893 |( 95.92626 +- 0.1642617)% | + | "MC particles per track" | 13893 | 16252 | 1.1698 | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | +RiMCOpticalPhotonsLong INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Charge mis-match between reco track and matched MCParticle"| 272938 | 2 |(0.0007327671 +- 0.0005181427)% | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 893 | 4037155 | 4520.9 | 4087.3 | 0.0000 | 22184. | + | "# Rich1Gas Segments" | 893 | 8921 | 9.9899 | 6.1403 | 0.0000 | 35.000 | + | "# Rich2Gas Photons" | 893 | 1170955 | 1311.3 | 1200.3 | 0.0000 | 7025.0 | + | "# Rich2Gas Segments" | 893 | 4851 | 5.4323 | 3.6598 | 0.0000 | 20.000 | + | "# Selected Tracks" | 893 | 11367 | 12.729 | 7.3209 | 0.0000 | 36.000 | + |*"RICH selection efficiency" | 14483 | 11367 |( 78.48512 +- 0.3414553)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 13963 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 13963 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 13963 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 520 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 520 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 520 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +UTHitClustersToUTHitHandlerConve... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +Unpack__Event_MC_Rich_DigitSumma... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 5711615 | 6396.0 | 2827.6 | 560.00 | 14534. | +Unpack__Event_MC_Rich_Hits INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6185524 | 6926.7 | 3312.3 | 0.0000 | 16143. | +Unpack__Event_MC_Rich_OpticalPho... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6169536 | 6908.8 | 3303.4 | 0.0000 | 16106. | +Unpack__Event_MC_Rich_Segments INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 312457 | 349.90 | 164.04 | 0.0000 | 803.00 | +Unpack__Event_MC_Rich_Tracks INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 259112 | 290.16 | 135.00 | 0.0000 | 641.00 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 1708879 | 1913.6 | +VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of banks" | 893 | 92872 | 104.00 | + | "Number of clusters" | 893 | 1708879 | 1913.6 | + | "Number of clusters - Mod14" | 893 | 35071 | 39.273 | + | "Number of clusters - Mod15" | 893 | 35186 | 39.402 | + | "Number of clusters - Mod16" | 893 | 34883 | 39.063 | + | "Number of clusters at matrix edge" | 893 | 173379 | 194.15 | + | "Number of clusters from SPs w/ neighbors" | 893 | 363392 | 406.93 | + | "Number of clusters from isolated SPs" | 893 | 1343257 | 1504.2 | + | "Number of clusters from overflowing SPs" | 893 | 2230 | 2.4972 | + | "Number of clusters from overflowing SPs - Mod 14"| 893 | 122 | 0.13662 | + | "Number of clusters from overflowing SPs - Mod 15"| 893 | 137 | 0.15342 | + | "Number of clusters from overflowing SPs - Mod 16"| 893 | 180 | 0.20157 | + | "Number of clusters not self contained" | 893 | 61517 | 68.888 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | + | "Nb of Produced Tracks" | 893 | 187333 | 209.78 | +RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3934989 | 5.9218e-05 | 0.0013711 | -0.046583 | -0.97253 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 2998562 | 5.7886e-05 | 0.0013669 | -0.046252 | -0.96486 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3383354 | 5.5594e-05 | 0.0013931 | -0.047969 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3383354 | 5.5594e-05 | 0.0013931 | -0.047969 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3689306 | 8.6575e-06 | 0.0015275 |-0.00046091 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2786587 | 1.2104e-06 | 0.0015270 | 0.0065575 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3137675 | 2.118e-05 | 0.0015280 | -0.014545 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3137675 | 2.118e-05 | 0.0015280 | -0.014545 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245683 | 0.00014929 | 0.0010292 | 0.011709 | -0.50996 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211975 | 0.00015705 | 0.0010209 | 0.016262 | -0.50474 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245683 | 0.00014929 | 0.0010292 | 0.011709 | -0.50996 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245679 | 0.00012861 | 0.0010475 | -0.020908 | -0.48903 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245679 | 0.00012861 | 0.0010475 | -0.020908 | -0.48903 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3689306 | 3.1325 | 1.8198 | 0.010199 | -1.195 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245683 | 3.1259 | 1.8119 | 0.013544 | -1.1892 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3689306 | 0.040422 | 0.010707 | -0.58816 | -0.41138 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245683 | 0.049951 | 0.0047073 | -3.5134 | 14.344 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1310098 | 1.6681e-05 | 0.0010193 | -0.001311 | -0.82421 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1081122 | 1.4737e-05 | 0.0010172 | 0.0011424 | -0.8164 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1121184 | 1.3624e-05 | 0.0010422 | -0.0040716 | -0.89357 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1121184 | 1.3624e-05 | 0.0010422 | -0.0040716 | -0.89357 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1209596 | 2.02e-05 | 0.0011532 | -0.012328 | -1.1997 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 989336 | 1.7142e-05 | 0.0011528 | -0.0076166 | -1.1993 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1020682 | 2.8877e-05 | 0.0011582 | -0.026615 | -1.211 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1020682 | 2.8877e-05 | 0.0011582 | -0.026615 | -1.211 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | 8.7241e-06 | 0.00061755 | 0.066148 | 0.17414 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91786 | 9.3483e-06 | 0.00061285 | 0.063534 | 0.20059 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85328 | 4.5584e-06 | 0.00060839 | 0.072549 | 0.25036 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15174 | 3.1854e-05 | 0.00066563 | 0.021341 | -0.18991 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | -2.59e-05 | 0.00065021 | -0.066488 | 0.23776 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | -2.59e-05 | 0.00065021 | -0.066488 | 0.23776 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1209596 | 3.1511 | 1.8136 | -0.0087359 | -1.1873 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100502 | 3.1465 | 1.8161 | -0.0026331 | -1.2019 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1209596 | 0.024678 | 0.0054893 | -0.44562 | -0.66454 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100502 | 0.028818 | 0.0022808 | -3.1777 | 12.133 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1625712 | 0.00010841 | 0.0029468 | -0.043308 | -0.94465 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 107329 | 0.00047518 | 0.0028637 | -0.22781 | -0.81612 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00022406 | 0.0020902 | 0.20779 | 0.36336 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 |-0.00012492 | 0.0023201 | 0.19826 | 0.017093 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8738 | 6.8824e-05 | 0.0025528 | 0.024537 | -0.37448 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29856 | 0.0003011 | 0.0026996 | -0.10223 | -0.58724 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142267 | 0.00040858 | 0.0028909 | -0.12598 | -0.85785 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 456881 | 7.6255e-05 | 0.0029829 | -0.021627 | -0.98999 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 512505 |-2.2285e-05 | 0.0029763 | 0.016652 | -0.98061 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 364155 | 1.1267e-05 | 0.0029414 | -0.027196 | -0.93854 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 253 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 107329 | 0.00047518 | 0.0028637 | -0.22781 | -0.81612 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 950 |-0.00022406 | 0.0020902 | 0.20779 | 0.36336 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2712 |-0.00012492 | 0.0023201 | 0.19826 | 0.017093 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8738 | 6.8824e-05 | 0.0025528 | 0.024537 | -0.37448 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 29856 | 0.0003011 | 0.0026996 | -0.10223 | -0.58724 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 142267 | 0.00040858 | 0.0028909 | -0.12598 | -0.85785 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 456881 | 7.6255e-05 | 0.0029829 | -0.021627 | -0.98999 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 512505 |-2.2285e-05 | 0.0029763 | 0.016652 | -0.98061 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 364155 | 1.1267e-05 | 0.0029414 | -0.027196 | -0.93854 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3383354 | 0.00011677 | 0.0029522 | -0.049602 | -0.95631 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3383354 | 3.132 | 1.8193 | 0.010429 | -1.1946 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3383354 | 0.041239 | 0.010669 | -0.69368 | -0.32387 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1757642 | 0.00012448 | 0.0029571 | -0.055408 | -0.96687 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126966 | 0.00024309 | 0.0028941 | -0.049143 | -0.87948 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1078 | 0.00038721 | 0.0021951 | -0.41598 | 0.66553 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2702 | 0.00032223 | 0.0024640 | -0.22531 | -0.17415 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6921 | 0.00034162 | 0.0025744 | -0.12193 | -0.43364 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 26101 | 0.00048206 | 0.0026830 | -0.3057 | -0.53826 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142020 | 0.00058742 | 0.0028807 | -0.27017 | -0.81093 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487764 | 0.00017928 | 0.0029847 | -0.096693 | -1.0004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 552849 | 6.9477e-06 | 0.0029861 | -0.0095319 | -1.0034 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 410915 | -9.344e-05 | 0.0029498 | 0.063684 | -0.94991 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 307 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 126966 | 0.00024309 | 0.0028941 | -0.049143 | -0.87948 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1078 | 0.00038721 | 0.0021951 | -0.41598 | 0.66553 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2702 | 0.00032223 | 0.0024640 | -0.22531 | -0.17415 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6921 | 0.00034162 | 0.0025744 | -0.12193 | -0.43364 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 26101 | 0.00048206 | 0.0026830 | -0.3057 | -0.53826 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142020 | 0.00058742 | 0.0028807 | -0.27017 | -0.81093 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 487764 | 0.00017928 | 0.0029847 | -0.096693 | -1.0004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 552849 | 6.9477e-06 | 0.0029861 | -0.0095319 | -1.0034 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 410915 | -9.344e-05 | 0.0029498 | 0.063684 | -0.94991 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 568180 | 5.1492e-05 | 0.0018627 | -0.019762 | -0.91847 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 568180 | 5.1492e-05 | 0.0018627 | -0.019762 | -0.91847 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 533781 | 4.2992e-05 | 0.0018751 | -0.014696 | -0.94324 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34399 | 0.00015677 | 0.0016981 | -0.063528 | -0.54868 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5955 | 1.7095e-05 | 0.0017884 | 0.0041819 | -0.77845 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15195 | 0.00036399 | 0.0018198 | -0.17497 | -0.85412 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4346 | 0.00026886 | 0.0018471 | -0.14153 | -0.84935 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1910 | 8.007e-05 | 0.0017410 | -0.0085557 | -0.62921 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12995 | 6.6571e-05 | 0.0018212 | 0.033493 | -0.87406 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32154 | 0.00010028 | 0.0018672 | -0.021103 | -0.93455 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57682 | 8.7216e-05 | 0.0018671 | -0.035288 | -0.92661 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 87578 | -1.219e-05 | 0.0018629 | 0.01771 | -0.90525 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 97504 |-4.2443e-05 | 0.0018856 | 0.031118 | -0.94745 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101407 |-5.3498e-05 | 0.0018998 | 0.029768 | -0.98941 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 77974 | 8.3453e-05 | 0.0018837 | -0.05404 | -0.97431 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39081 | 0.00016348 | 0.0018608 | -0.072889 | -0.92606 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 894 | 0.00011823 | 0.0016748 | -0.007199 | -0.51688 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1326 | 9.9142e-05 | 0.0017407 | -0.076359 | -0.64476 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 709 | 5.6399e-05 | 0.0017856 | -0.045142 | -0.67289 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 393 | 0.00011408 | 0.0015566 | 0.038851 | -0.073996 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1443 | 5.842e-05 | 0.0016852 | 0.003769 | -0.49845 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2676 | 0.00018232 | 0.0017168 | -0.084423 | -0.57559 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3626 | 0.00018336 | 0.0017293 | -0.1296 | -0.6051 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4920 | 0.00015728 | 0.0016971 | -0.057315 | -0.53693 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5996 | 0.00017559 | 0.0016766 | -0.032998 | -0.50206 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5918 | 0.00014242 | 0.0017159 | -0.078646 | -0.56012 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4031 | 0.00021739 | 0.0016976 | -0.10391 | -0.58456 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2467 | 0.0001136 | 0.0016177 | 0.03174 | -0.47507 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6849 | 3.2988e-05 | 0.0017714 |-0.00015767 | -0.74084 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16521 | 0.00034206 | 0.0018149 | -0.16473 | -0.84101 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5055 | 0.00023463 | 0.0018390 | -0.12401 | -0.82661 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2303 | 8.6993e-05 | 0.0017051 | -0.0032632 | -0.53337 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14438 | 6.5642e-05 | 0.0018062 | 0.03097 | -0.83699 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34830 | 0.00010796 | 0.0018538 | -0.027583 | -0.90603 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61308 | 9.3882e-05 | 0.0018581 | -0.041999 | -0.90786 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92498 |-6.2739e-07 | 0.0018525 | 0.010815 | -0.88457 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103500 |-2.5229e-05 | 0.0018708 | 0.022158 | -0.91909 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 107325 | -3.968e-05 | 0.0018881 | 0.02028 | -0.96588 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 82005 | 9.1158e-05 | 0.0018737 | -0.058382 | -0.95533 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41548 | 0.00016029 | 0.0018462 | -0.06728 | -0.902 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 553004 | 6.3556e-05 | 0.0018577 | -0.024801 | -0.90391 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 553004 | 6.3556e-05 | 0.0018577 | -0.024801 | -0.90391 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 521989 | 5.4994e-05 | 0.0018692 | -0.020798 | -0.92669 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31015 | 0.0001791 | 0.0016910 | -0.052398 | -0.53965 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1393 | 0.00011954 | 0.0018233 | 0.029771 | -0.7526 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30321 | 9.4002e-05 | 0.0018699 | -0.021434 | -0.90613 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11682 | 0.00013837 | 0.0017865 | -0.036857 | -0.76438 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5143 | -2.148e-05 | 0.0018231 | -0.0093256 | -0.82114 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3553 | 0.00024471 | 0.0018059 | -0.094505 | -0.86292 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14642 | 0.00038245 | 0.0018323 | -0.17156 | -0.87007 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41223 | 0.00015549 | 0.0018775 | -0.065651 | -0.94583 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78361 | 8.2378e-05 | 0.0018882 | -0.035129 | -0.97301 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 99916 |-3.4575e-05 | 0.0018808 | 0.01704 | -0.95994 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 96383 |-3.4213e-05 | 0.0018825 | 0.0226 | -0.93828 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86021 | 3.4807e-06 | 0.0018534 | -0.0068685 | -0.89637 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53351 | 0.00012866 | 0.0018395 | -0.046181 | -0.87057 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 336 |-5.4946e-05 | 0.0014953 | 0.014414 | -0.27254 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2439 | 0.00026405 | 0.0017462 | -0.11672 | -0.59663 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1334 | 5.2329e-05 | 0.0017139 | 0.072638 | -0.61489 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 958 | 4.1025e-05 | 0.0016202 | 0.014639 | -0.31412 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 556 | 0.00028353 | 0.0015553 | 0.0082304 | -0.51383 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1339 | 4.6253e-05 | 0.0016937 | 0.081186 | -0.53178 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2186 | 0.00016316 | 0.0016811 | -0.048857 | -0.49902 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3611 | 0.00019906 | 0.0017245 | -0.06939 | -0.6216 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5148 | 0.00014872 | 0.0016586 | -0.074462 | -0.48518 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5218 | 0.00022047 | 0.0017107 | -0.071731 | -0.58006 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4381 | 0.00024486 | 0.0016664 | -0.10074 | -0.4837 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3509 | 0.0001446 | 0.0017054 | -0.0098841 | -0.5449 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1729 | 8.0487e-05 | 0.0017567 | 0.045987 | -0.64537 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32760 | 0.00010859 | 0.0018602 | -0.030918 | -0.88414 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13016 | 0.00012868 | 0.0017787 | -0.024661 | -0.75013 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6101 |-1.0327e-05 | 0.0017887 | -0.0095216 | -0.74445 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4109 | 0.00025064 | 0.0017700 | -0.086488 | -0.80996 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15981 | 0.00035281 | 0.0018230 | -0.14698 | -0.85553 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43409 | 0.00015592 | 0.0018670 | -0.065146 | -0.92486 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 81972 | 8.848e-05 | 0.0018802 | -0.038054 | -0.95721 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 105064 | -2.287e-05 | 0.0018680 | 0.0090366 | -0.9361 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101601 |-1.5716e-05 | 0.0018717 | 0.012645 | -0.91744 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 90402 | 1.8416e-05 | 0.0018433 | -0.015459 | -0.876 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 56860 | 0.00012973 | 0.0018309 | -0.044475 | -0.85145 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1121184 | 5.7452e-05 | 0.0018603 | -0.022267 | -0.91132 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1121184 | 5.7452e-05 | 0.0018603 | -0.022267 | -0.91132 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1055770 | 4.894e-05 | 0.0018722 | -0.017735 | -0.93509 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 65414 | 0.00016736 | 0.0016948 | -0.058365 | -0.54419 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1121184 | 3.1507 | 1.8138 | -0.0082221 | -1.1885 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1121184 | 0.025076 | 0.0054059 | -0.58356 | -0.54745 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 920669 | 0.00010921 | 0.0029243 | -0.044645 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 246 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48075 | 0.00052892 | 0.0028303 | -0.25452 | -0.73993 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 887 |-0.00023285 | 0.0020883 | 0.20102 | 0.32463 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 |-0.00011587 | 0.0023319 | 0.19263 | -0.012882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8392 | 6.5802e-05 | 0.0025586 | 0.02233 | -0.37972 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27082 | 0.0002893 | 0.0026989 | -0.098256 | -0.59112 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 106473 | 0.00029534 | 0.0028798 | -0.091471 | -0.84657 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 259802 | 4.0862e-05 | 0.0029700 | -0.0088878 | -0.97009 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 280393 |-7.5135e-06 | 0.0029616 | 0.0065441 | -0.96453 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 186621 | 7.3273e-05 | 0.0029252 | -0.051509 | -0.9135 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 246 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48075 | 0.00052892 | 0.0028303 | -0.25452 | -0.73993 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 887 |-0.00023285 | 0.0020883 | 0.20102 | 0.32463 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2632 |-0.00011587 | 0.0023319 | 0.19263 | -0.012882 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8392 | 6.5802e-05 | 0.0025586 | 0.02233 | -0.37972 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 27082 | 0.0002893 | 0.0026989 | -0.098256 | -0.59112 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 106473 | 0.00029534 | 0.0028798 | -0.091471 | -0.84657 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 259802 | 4.0862e-05 | 0.0029700 | -0.0088878 | -0.97009 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 280393 |-7.5135e-06 | 0.0029616 | 0.0065441 | -0.96453 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 186621 | 7.3273e-05 | 0.0029252 | -0.051509 | -0.9135 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1885107 | 0.00011881 | 0.0029305 | -0.05178 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1885107 | 3.1362 | 1.8179 | 0.006381 | -1.1915 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1885107 | 0.041237 | 0.010679 | -0.6944 | -0.32926 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 964438 | 0.00012789 | 0.0029364 | -0.058524 | -0.93899 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 275 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 55020 | 0.000275 | 0.0028525 | -0.044536 | -0.82406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1035 | 0.0003956 | 0.0021841 | -0.42896 | 0.71376 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2548 | 0.00034376 | 0.0024610 | -0.247 | -0.15941 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6499 | 0.00032427 | 0.0026009 | -0.12252 | -0.46853 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23372 | 0.00048735 | 0.0026811 | -0.31127 | -0.53068 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106109 | 0.00046643 | 0.0028868 | -0.22813 | -0.83736 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269307 | 0.00014583 | 0.0029769 | -0.082978 | -0.98906 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 294376 |-6.2287e-06 | 0.0029749 | -0.0018243 | -0.98523 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 205885 |-3.9098e-05 | 0.0029257 | 0.045277 | -0.92231 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 275 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 55020 | 0.000275 | 0.0028525 | -0.044536 | -0.82406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1035 | 0.0003956 | 0.0021841 | -0.42896 | 0.71376 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2548 | 0.00034376 | 0.0024610 | -0.247 | -0.15941 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6499 | 0.00032427 | 0.0026009 | -0.12252 | -0.46853 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23372 | 0.00048735 | 0.0026811 | -0.31127 | -0.53068 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 106109 | 0.00046643 | 0.0028868 | -0.22813 | -0.83736 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 269307 | 0.00014583 | 0.0029769 | -0.082978 | -0.98906 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 294376 |-6.2287e-06 | 0.0029749 | -0.0018243 | -0.98523 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 205885 |-3.9098e-05 | 0.0029257 | 0.045277 | -0.92231 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 162013 | 4.029e-05 | 0.0018576 | -0.0073823 | -0.91305 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 162013 | 4.029e-05 | 0.0018576 | -0.0073823 | -0.91305 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 146340 | 3.2154e-05 | 0.0018753 | -0.0021288 | -0.94893 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15673 | 0.00010423 | 0.0017112 | -0.039169 | -0.57766 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3394 |-9.2587e-06 | 0.0017722 | 0.037181 | -0.7518 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5408 | 0.00017478 | 0.0018190 | -0.071408 | -0.8334 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2535 | 0.00021566 | 0.0018437 | -0.1139 | -0.87299 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1328 | 3.1829e-05 | 0.0017385 | -0.016666 | -0.62616 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7624 | 7.1083e-05 | 0.0018221 | 0.024722 | -0.8842 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14352 |-5.8347e-05 | 0.0018446 | 0.073457 | -0.88917 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19105 | -5.344e-05 | 0.0018627 | 0.039416 | -0.90996 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22011 |-4.4746e-06 | 0.0018843 | 0.015707 | -0.95188 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24891 | 3.0114e-05 | 0.0019017 | -0.015037 | -0.99342 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23765 | 7.2018e-05 | 0.0019084 | -0.031731 | -1.015 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13308 | 0.00012873 | 0.0018946 | -0.063461 | -0.99155 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8619 | 3.4925e-05 | 0.0018718 | -0.0099985 | -0.95429 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 382 | 0.000175 | 0.0017988 | -0.092569 | -0.62071 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 883 | 0.00012783 | 0.0017588 | -0.091473 | -0.68576 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 523 |-0.00012149 | 0.0018348 | 0.077884 | -0.71325 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 291 | 0.0001337 | 0.0015940 | 0.032012 | -0.1769 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 684 |-5.2809e-05 | 0.0016836 | 0.070944 | -0.53335 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1439 | 0.00022711 | 0.0017136 | -0.09399 | -0.58662 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1629 | 0.00014828 | 0.0017157 | -0.093693 | -0.62577 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1918 | 0.00012608 | 0.0017099 | -0.089973 | -0.56798 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2191 | 9.8613e-05 | 0.0016890 | 0.03175 | -0.52605 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2402 | 8.3048e-05 | 0.0017381 | -0.057601 | -0.56477 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1955 | 0.00010834 | 0.0017298 | -0.056304 | -0.67158 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1376 | 3.4381e-05 | 0.0015750 | 0.076545 | -0.37301 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3776 | 1.0702e-05 | 0.0017760 | 0.023511 | -0.74028 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6291 | 0.00016754 | 0.0018100 | -0.073587 | -0.8116 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3058 | 0.00014719 | 0.0018469 | -0.074526 | -0.85456 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1619 | 5.4143e-05 | 0.0017084 | -0.013049 | -0.53832 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8308 | 5.9488e-05 | 0.0018099 | 0.030767 | -0.856 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15791 |-2.6247e-05 | 0.0018325 | 0.051668 | -0.86578 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20734 |-3.2329e-05 | 0.0018489 | 0.023629 | -0.88675 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23929 | 8.4875e-06 | 0.0018681 | 0.0043257 | -0.92089 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27082 | 3.6636e-05 | 0.0018826 | -0.013864 | -0.95598 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26167 | 7.304e-05 | 0.0018933 | -0.033871 | -0.98039 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15263 | 0.00012567 | 0.0018708 | -0.061989 | -0.94911 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9995 | 3.4841e-05 | 0.0018294 | -0.0015297 | -0.8804 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 167664 | 5.3989e-05 | 0.0018479 | -0.005442 | -0.88753 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 167664 | 5.3989e-05 | 0.0018479 | -0.005442 | -0.88753 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 153280 | 4.5193e-05 | 0.0018665 | -0.0018115 | -0.92411 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14384 | 0.00013207 | 0.0016719 | -0.015779 | -0.49827 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1072 |-3.1943e-05 | 0.0017901 | 0.095846 | -0.68073 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15346 |-6.1556e-05 | 0.0018381 | 0.085486 | -0.84668 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6814 | 0.00018558 | 0.0017620 | -0.031866 | -0.73969 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2504 |-1.1418e-05 | 0.0018114 | 0.0072925 | -0.78571 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2043 | 0.00020083 | 0.0017671 | -0.076191 | -0.76341 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4914 | 0.00014613 | 0.0018039 | -0.054201 | -0.79069 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8317 | 5.9217e-05 | 0.0018831 | -0.028125 | -0.91447 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13612 | 0.00028824 | 0.0018887 | -0.14989 | -0.95472 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27371 | 6.3441e-05 | 0.0018881 | -0.027986 | -0.97902 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27508 |-2.8377e-05 | 0.0018884 | 0.025203 | -0.97145 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 23846 | 2.873e-05 | 0.0018672 | 0.0015586 | -0.92605 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19933 | -4.59e-05 | 0.0018645 | 0.076523 | -0.90942 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 257 | 1.4097e-05 | 0.0014755 | 0.15757 | -0.1918 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1397 | 0.00024224 | 0.0017227 | -0.10391 | -0.58441 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 793 | 1.6894e-05 | 0.0016946 | 0.19714 | -0.56692 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 471 |-4.9918e-05 | 0.0015764 | -0.020351 | -0.056494 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 373 | 0.00029155 | 0.0015301 | 0.069882 | -0.32007 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 835 |-3.5216e-06 | 0.0016535 | 0.16911 | -0.42777 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1162 | 0.00016137 | 0.0016981 | 0.0072794 | -0.55663 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1601 | 9.6941e-05 | 0.0016675 | -0.064442 | -0.55134 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1968 | 6.2833e-05 | 0.0016544 | -0.084352 | -0.47244 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1966 | 0.00013986 | 0.0016927 | -0.022084 | -0.52304 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1863 | 0.00020914 | 0.0016659 | -0.10691 | -0.44451 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1698 | 0.00019226 | 0.0016790 | 0.027174 | -0.52421 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1329 | -2.093e-05 | 0.0017202 | 0.10089 | -0.56667 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16743 |-3.1509e-05 | 0.0018292 | 0.064444 | -0.83092 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7607 | 0.00016741 | 0.0017557 | -0.0076149 | -0.72903 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2975 | -1.828e-05 | 0.0017719 | 0.0062696 | -0.68311 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2416 | 0.00021693 | 0.0017277 | -0.064436 | -0.68846 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5749 | 0.00012135 | 0.0017808 | -0.018937 | -0.74581 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9479 | 7.4322e-05 | 0.0018573 | -0.028137 | -0.86644 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15213 | 0.00026418 | 0.0018634 | -0.13467 | -0.91456 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29339 | 6.3397e-05 | 0.0018722 | -0.030815 | -0.94922 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29474 |-1.4594e-05 | 0.0018737 | 0.018355 | -0.94147 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 25709 | 4.5473e-05 | 0.0018502 | -0.010844 | -0.89108 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21631 |-2.4432e-05 | 0.0018498 | 0.067188 | -0.88078 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 329677 | 4.7298e-05 | 0.0018527 | -0.0064551 | -0.90003 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 329677 | 4.7298e-05 | 0.0018527 | -0.0064551 | -0.90003 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 299620 | 3.8867e-05 | 0.0018708 | -0.0020153 | -0.9362 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 30057 | 0.00011771 | 0.0016923 | -0.028823 | -0.53923 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 329677 | 3.1615 | 1.8141 | -0.016772 | -1.1889 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 329677 | 0.02531 | 0.0052902 | -0.62529 | -0.45832 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 44634 | 0.034053 | 0.011743 | -0.35459 | -1.0567 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41354 | 1.4802 | 0.10982 | -0.33322 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30781 | 1.6982 | 0.19151 | -0.10335 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37656 | 1.6272 | -0.038101 | -0.33405 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3559 | 0.40268 | 0.21591 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.067105 | 1.8455 | -0.015785 | -0.303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40083 | 1.4810 | 0.19451 | -0.11868 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17885 | 1.6677 | -0.0094296 | -0.5545 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28648 | 1.5501 | 0.27167 | -0.26379 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12105 | 1.5357 | 0.14197 | -0.38564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17881 | 1.5171 | 0.22882 | -0.40567 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75556 | 1.5767 | 0.13413 | -0.6617 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10405 | 2.0853 | 0.0013962 | -1.159 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 900047 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13222 | 1.7393 | 0.23727 | -0.9569 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53794 | 1.3882 | 0.098124 | -0.6461 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.13108 | 1.1665 | 0.12187 | -1.1392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081863 | 1.4200 | 0.32646 | -0.049255 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12284 | 1.3806 | 0.28142 | 0.0080634 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.15119 | 1.5163 | 0.21243 | -0.28537 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.097429 | 1.5984 | 0.21461 | -0.25587 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.21201 | 1.6958 | 0.074181 | -0.42664 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.149 | 1.6527 | 0.17768 | -0.3137 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21449 | 1.6167 | 0.12506 | -0.2631 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24364 | 1.4704 | 0.20206 | -0.25098 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.21713 | 1.5568 | 0.1858 | -0.12206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17414 | 1.5223 | 0.1299 | -0.15439 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27181 | 1.5534 | 0.13553 | -0.22511 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.086966 | 1.6893 | 0.15081 | -0.40573 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12663 | 1.6032 | 0.15408 | -0.21379 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19733 | 1.6076 | 0.08175 | -0.27337 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23926 | 1.6377 | 0.12939 | -0.16968 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.2879 | 1.6100 | 0.07258 | -0.24934 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15256 | 1.5991 | 0.18919 | -0.15372 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24288 | 1.6693 | 0.064346 | -0.42772 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30011 | 1.7230 | 0.13649 | -0.58897 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32913 | 1.7872 | 0.078516 | -0.46435 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16402 | 1.6101 | 0.13848 | -0.14658 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.078603 | 1.6275 | 0.18969 | -0.1718 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24408 | 1.6735 | 0.10915 | -0.25883 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 436 | 0.3149 | 1.6427 | 0.26075 | -0.34036 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31495 | 1.7099 | 0.31525 | -0.26773 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.2288 | 1.6139 | 0.095902 | -0.21735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20535 | 1.6557 | -0.03898 | -0.52565 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32079 | 1.6266 | 0.18544 | -0.41092 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.36269 | 1.5751 | -0.029637 | -0.31216 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25551 | 1.6284 | 0.29198 | -0.19735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.2954 | 1.7015 | 0.17292 | -0.31655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.38153 | 1.5021 | 0.13731 | -0.12473 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50318 | 1.5185 | 0.12362 | -0.8527 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016667 | 1.7620 | 0.25013 | -0.38515 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.67733 | 1.8470 | -0.21219 | -0.14925 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6902 | 0.16529 | -0.57033 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29745 | 1.7234 | 0.12926 | -0.38707 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.014615 | 1.4612 | 0.53561 | 0.3768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50467 | 1.6435 | 0.098456 | -0.66506 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.061957 | 1.4045 | -0.080063 | -0.70991 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.042308 | 1.4186 | 0.9014 | 0.19789 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.195 | 1.5848 | 0.05333 | -0.62788 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98333 | 1.4874 | 0.043743 | -0.72483 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.27727 | 1.5883 | 0.64925 | -0.13121 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23203 | 1.5403 | -0.073266 | -0.23165 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 900047 | 0.0009885 | 0.00019062 | 0.54306 | -0.88199 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 900047 | 0.03885 | 0.0089273 | -0.554 | -0.77264 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.925 | 1.7600 | 0.21659 | -0.60644 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.058163 | 1.5368 | -0.073383 | -0.58866 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 900047 | 0.051593 | 0.00033083 | 0.12032 | -1.0637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.02 | 1.5217 | -0.29073 | 0.35222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45455 | 1.2499 | -0.055441 | -0.41423 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.57096 | 1.5527 | -0.058361 | -0.78048 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11 | 1.2729 | 0.34514 | -0.74248 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.7134 | 1.7087 | 0.1548 | -0.81312 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.38537 | 1.5590 | 0.13731 | -0.56279 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2289 | 1.8326 | 0.56336 | -0.82816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.37536 | 1.5520 | 0.064166 | -0.06599 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15465 | 0.27435 | 1.5848 | 0.095533 | -0.15923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.24362 | 1.3709 | -0.033615 | -0.37275 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29854 | 1.6154 | 0.10658 | -0.25914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28226 | 1.6046 | 0.077173 | -0.28205 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.29991 | 1.6130 | 0.065541 | -0.28259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26079 | 1.6248 | 0.081986 | -0.35146 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28903 | 1.6473 | 0.12506 | -0.33874 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26651 | 1.6103 | 0.098053 | -0.3186 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.30971 | 1.6625 | 0.049576 | -0.30984 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29553 | 1.6542 | 0.088536 | -0.32966 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25214 | 1.6358 | 0.10994 | -0.30414 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23698 | 1.6613 | 0.14833 | -0.31106 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.33476 | 1.6382 | 0.11523 | -0.3304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5903 | 0.30029 | 1.6576 | 0.088737 | -0.24665 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.28807 | 1.6792 | 0.088402 | -0.38528 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26139 | 1.6885 | 0.12369 | -0.41207 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.24042 | 1.6848 | 0.12782 | -0.38768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30301 | 1.6410 | 0.10511 | -0.36465 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32677 | 1.6507 | 0.13508 | -0.34843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30838 | 1.6285 | 0.12056 | -0.38406 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21285 | 1.5926 | 0.089883 | -0.28358 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31553 | 1.6429 | 0.12197 | -0.41622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31422 | 1.6529 | 0.12913 | -0.38597 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.28428 | 1.6397 | 0.12177 | -0.26928 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33148 | 1.5714 | 0.062941 | -0.36594 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32772 | 1.6548 | 0.080008 | -0.27433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26906 | 1.6048 | 0.1312 | -0.2979 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36283 | 1.5711 | 0.077056 | -0.41534 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26103 | 1.6854 | 0.17728 | -0.305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32301 | 1.6281 | 0.036456 | -0.13348 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28488 | 1.6115 | 0.10403 | -0.26268 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34221 | 1.6248 | 0.1105 | -0.36116 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.3203 | 1.5589 | 0.068465 | -0.19429 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.26023 | 1.6693 | 0.13959 | -0.22833 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21396 | 1.6271 | 0.17004 | -0.2827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 992 | 0.3323 | 1.6111 | -0.057597 | -0.21516 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.22961 | 1.6684 | 0.10993 | -0.27217 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22173 | 1.7092 | 0.18014 | -0.52896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.19889 | 1.5159 | 0.13291 | -0.37813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19821 | 1.6441 | 0.077323 | -0.42367 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14691 | 1.5883 | 0.25853 | -0.23979 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.18868 | 1.6214 | 0.23984 | -0.19698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.21234 | 1.6023 | 0.15693 | -0.374 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.4831 | 1.5812 | -0.073099 | -0.052163 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27399 | 1.6242 | 0.14462 | -0.51643 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 302 | 0.27158 | 1.6015 | 0.0176 | -0.48446 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21276 | 1.5051 | 0.050208 | -0.30501 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.2466 | 1.7297 | 0.16708 | -0.77772 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029924 | 1.6038 | 0.0040817 | -0.57272 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25623 | 1.7120 | 0.16833 | -0.32784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13868 | 1.4401 | 0.10285 | -0.57552 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13228 | 1.7225 | 0.3734 | -0.27166 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48577 | 1.5249 | 0.29054 | -0.59967 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21606 | 1.5844 | 0.20703 | -0.18586 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.047778 | 1.3782 | 0.092849 | -0.2244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44465 | 1.4778 | 0.31679 | 0.0066977 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.037179 | 1.5860 | 0.68844 | 0.5606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.0047619 | 1.1521 | -0.24185 | -0.56354 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 900047 | 0.051207 | 0.00053529 | -0.22087 | -0.90838 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.37857 | 1.3698 | 0.38363 | -1.1311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.385 | 1.6138 | -0.028016 | -0.46143 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.16379 | 1.0092 | -0.14535 | -0.70538 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22256 | 1.5766 | 0.21016 | -0.26552 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10585 | 1.6421 | 0.049025 | -0.11625 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.33023 | 1.7794 | 0.05798 | -0.5483 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.038081 | 1.7082 | 0.18076 | -0.46191 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27627 | 1.8537 | 0.30866 | -0.36393 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24676 | 1.6987 | -0.033537 | -0.40979 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10841 | 1.5827 | 0.059012 | -0.39803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21738 | 1.7378 | 0.049562 | -0.58915 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31423 | 1.5646 | -0.04752 | -0.24692 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38254 | 1.5952 | -0.062604 | -0.50834 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57615 | 1.7044 | 0.17497 | -0.40468 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.3348 | 1.6110 | 0.13931 | -0.41708 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15431 | 1.6410 | -0.014716 | -0.045588 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 275 | 0.61367 | 1.7499 | -0.0018473 | -0.14649 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35904 | 1.7839 | -0.081599 | -0.52142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36549 | 1.6270 | -0.13351 | -0.35492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72241 | 1.5960 | 0.06958 | -0.60115 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25385 | 1.5134 | -0.54018 | -0.88175 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.054878 | 1.5916 | 0.1421 | -0.79794 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058636 | 1.6750 | 0.14252 | -0.17343 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.34649 | 1.5657 | 0.31774 | 0.18382 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.03254 | 1.6312 | -0.057783 | -0.19349 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72963 | 1.9937 | 0.3549 | -0.90151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1817 | 1.2112 | -0.093692 | -0.66263 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45625 | 1.2222 | 0.28737 | -1.0067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.465 | 1.3251 | 0.17729 | -0.20539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53289 | 1.4866 | 0.068419 | -0.66878 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55435 | 1.3209 | 0.026026 | 0.41006 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33475 | 1.2043 | 0.40392 | -0.36906 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 340686 | 0.0011013 | 0.00027211 | 0.16059 | -1.5888 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 340686 | 0.032842 | 0.010500 | -0.21686 | -0.85377 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 29818 | 0.00043528 | 4.4431e-06 | -0.2978 | -1.0268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 29818 | 0.020844 | 0.0049634 | -0.372 | -0.88073 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.098077 | 1.3689 | 0.19061 | -0.063405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.066632 | 1.3958 | 0.17689 | 0.10601 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.056667 | 1.4629 | -0.40682 | -0.95953 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3027 | 0.11429 | 0.01587 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.32115 | 1.2688 | 0.10327 | -0.54035 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.059375 | 1.0835 | -0.37509 | 1.0281 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.55667 | 0.83942 | -0.81496 | -0.36191 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.46538 | 1.1330 | 0.54125 | -0.55434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1104 | -0.7856 | 1.3411 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 340840 | 0.00047314 | 1.3653e-05 | 0.051685 | -0.99757 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 340840 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.080986 | 1.3504 | -0.34313 | 0.15186 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.85277 | 0.088469 | -0.90074 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17 | 1.2695 | 0.29674 | -0.38437 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11824 | 1.2263 | -0.074943 | 0.061187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13706 | 1.3991 | -0.11224 | -0.74857 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.256 | 1.3395 | -0.36243 | -0.075635 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2557 | 0.13564 | -0.70594 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13929 | 1.2437 | 0.36657 | -0.63665 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.062871 | 1.2248 | 0.082352 | -0.30141 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.17941 | 1.1549 | 0.13387 | -0.56358 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.084615 | 1.0217 | 0.3316 | -0.71296 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.079508 | 1.3272 | 0.51994 | 0.86529 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.043333 | 1.2369 | 0.060205 | -0.26176 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.40652 | 1.4770 | 0.9318 | 0.23771 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.1337 | 1.3860 | -0.5266 | 0.9479 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18 | 1.3731 | 0.19521 | -0.21415 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.07 | 1.0914 | 0.68672 | 0.24413 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.142 | 1.3871 | -1.0489 | 0.61929 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31389 | 1.1387 | 0.22697 | -0.80638 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30763 | 1.3304 | -0.11544 | -0.39823 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27333 | 1.3829 | -0.16623 | -0.55006 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12353 | 1.3316 | 0.64105 | 0.42264 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.11883 | 1.2498 | 0.51138 | 0.0098555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16448 | 1.4744 | 0.18896 | 0.078346 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.15788 | 1.4104 | 0.090401 | -0.13777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.043648 | 1.3408 | -0.10996 | -0.39692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031195 | 1.3906 | 0.3243 | 0.12566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.068674 | 1.3804 | -0.057813 | 0.3377 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.032393 | 1.4028 | 0.11839 | 0.050807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.012754 | 1.4321 | 0.077871 | 0.0083314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.094543 | 1.4004 | 0.41504 | 0.48936 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.18875 | 1.2933 | 0.26825 | 0.446 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28402 | 1.4817 | -0.047007 | -0.32548 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24683 | 1.3834 | 0.27887 | 0.23793 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | 0.12512 | 1.5383 | 0.0097925 | 0.4635 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.079361 | 1.2905 | 0.33198 | 0.11265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.046864 | 1.4712 | 0.32108 | 0.16535 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14349 | 1.4138 | 0.080436 | -0.0081098 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23857 | 1.3349 | 0.36636 | 0.041313 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.094142 | 1.4201 | 0.26302 | 0.22664 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.12014 | 1.4669 | 0.27336 | -0.25894 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.11253 | 1.3108 | -0.083076 | -0.049253 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13467 | 1.2019 | 0.23606 | -0.23005 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.047922 | 1.5240 | 0.047055 | 0.73744 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05186 | 1.2725 | 0.32382 | -0.26885 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.010741 | 1.3589 | 0.31229 | -0.20029 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23113 | 1.4254 | 0.30895 | 0.63358 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 260 | 0.2023 | 1.4412 | 0.15371 | -0.012408 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.014103 | 1.4593 | 0.44163 | -0.18783 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.22143 | 1.3210 | 0.24791 | 0.14418 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.048347 | 1.2003 | -0.026975 | 0.038475 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.09898 | 1.1666 | 0.3383 | -0.30996 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.045238 | 1.3810 | 0.26613 | -0.094714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22875 | 1.3048 | 0.12211 | 0.051739 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10636 | 1.2702 | -0.044514 | -0.27822 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.38043 | 1.1943 | 0.19918 | -0.05729 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.07043 | 1.3929 | -0.35001 | 0.62748 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.090179 | 1.4991 | 0.44387 | 0.86283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25 | 1.1202 | 0.67946 | -0.20627 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.26892 | 1.4025 | 0.13975 | 0.19776 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.31393 | 1.2118 | 0.010435 | -0.32981 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0055102 | 1.3713 | -0.27209 | 0.2064 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.25741 | 1.2802 | 0.18647 | 0.067365 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.026812 | 1.4558 | -0.13595 | -0.55868 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.0745e-16 | 1.4996 | 0.19546 | -0.87122 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.017521 | 1.3892 | 0.28353 | -0.13306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.15 | 1.0117 | 0.097882 | -0.47268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15 | 1.3052 | -0.11333 | -0.53696 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74687 | 1.2675 | -0.43877 | 0.03693 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16176 | 1.3565 | 0.24546 | -0.16486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.3 | 1.4107 | -0.27358 | -0.29179 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.081387 | 1.1802 | 0.13574 | -0.44145 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.045652 | 1.5810 | 0.32623 | -0.27142 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.15105 | 1.5708 | 0.81104 | 0.44966 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.02551 | 1.2621 | -0.45706 | 0.55759 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.0855 | 1.3332 | -0.23203 | 0.56704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10354 | 1.2452 | -0.15157 | 0.046372 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 340837 | 0.00047175 | 3.3146e-05 | 1.2111 | 0.45989 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 340837 | 0.023684 | 0.0036143 | -0.085714 | -1.0807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13738 | 0.92271 | -0.054151 | -0.14809 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.12846 | 1.6776 | -0.70165 | -0.21547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.42391 | 1.8202 | 0.066959 | -1.3514 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.07 | 0.75912 | 0.94276 | 0.88948 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5052 | 1.5156 | -0.078646 | -1.0186 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13367 | 1.3439 | 0.36617 | -0.12324 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.146 | 1.3913 | 0.49505 | -0.011039 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21774 | 1.3760 | -0.57004 | 0.76132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67609 | 1.4932 | -0.0199 | -0.074268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.12742 | 0.81388 | 0.1927 | -0.59613 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 340840 | 0.00051352 | 2.5261e-05 | -0.72676 | -0.57263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 340840 | 0.029684 | 0.00015509 | -0.098897 | -0.80895 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20205 | 1.3525 | 0.36593 | 0.12277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.043075 | 1.4985 | 0.15043 | -0.055205 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 129 | 0.12184 | 1.4199 | 0.015512 | 1.5199 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.12057 | 1.4303 | 0.2978 | -0.12303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27648 | 1.6652 | 0.22561 | 0.099185 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.037313 | 1.1713 | 0.015391 | -0.23132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11698 | 1.3049 | 0.17247 | -0.62696 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.040385 | 1.6040 | 0.24866 | -0.14749 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.01 | 1.6066 | -0.3327 | -0.20678 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.27105 | 1.7181 | 0.063592 | 0.31824 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.11111 | 1.4253 | 0.69884 | 1.9919 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36594 | 1.4844 | -0.20098 | 0.78315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.2125 | 1.7909 | -0.022502 | -0.41361 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2359 | 0.3816 | 0.34897 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.14262 | 1.3657 | -0.31941 | 0.098629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31667 | 1.2579 | -0.37918 | 0.21767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.26096 | 1.5893 | 0.089083 | -0.48257 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.011644 | 1.2351 | -0.23605 | 0.32613 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28333 | 1.1882 | 0.05981 | 0.29472 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.0025253 | 1.2768 | 0.49311 | 0.050834 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18231 | 1.5384 | -0.47607 | -0.10631 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.025676 | 1.2466 | 0.24787 | 0.34582 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0090909 | 1.1312 | 0.17509 | -0.94287 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0043689 | 1.7195 | -0.049407 | -0.21501 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17807 | 1.3184 | -0.048648 | 0.31965 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.095045 | 1.4346 | -0.54947 | 1.3654 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.074444 | 0.99402 | 0.65118 | 0.88702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.016087 | 1.5421 | 0.10581 | 0.58276 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.24459 | 1.2366 | 0.2098 | 0.77443 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.09878 | 1.4623 | 0.32497 | 1.0796 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.026667 | 1.3534 | -0.087046 | -0.52434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19468 | 1.5160 | -0.38974 | -0.97391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61333 | 1.1427 | 0.7599 | -0.55147 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.085632 | 1.2700 | -0.41937 | 0.27979 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.039157 | 1.3203 | 0.40174 | -0.025693 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.15185 | 1.2632 | 0.25099 | 1.2147 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.058247 | 1.4819 | 0.092497 | -0.36791 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21981 | 1.3379 | 0.40764 | 0.20959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.0075 | 1.5821 | -0.03132 | -0.51694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25615 | 1.5964 | 0.029879 | -0.62811 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.20714 | 1.2610 | 0.048398 | -0.5136 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43889 | 1.3800 | 0.31636 | -0.83367 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.39168 | 1.9068 | 0.24089 | 0.32745 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.015789 | 1.3524 | 0.049243 | 0.046783 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088312 | 1.1805 | 0.062495 | -0.44113 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.017539 | 1.4237 | -0.32716 | 0.48168 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.13475 | 1.3333 | 0.92491 | 1.6881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.1402 | 1.3974 | -0.12011 | -0.39538 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59571 | 1.1236 | 0.15253 | -0.20349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13382 | 1.3593 | 0.25828 | -0.32732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.014234 | 1.2693 | -0.053422 | -0.54499 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0081818 | 1.3261 | 0.1673 | -0.55588 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.052941 | 1.0107 | -0.0042894 | -1.0738 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21486 | 1.1454 | 0.87467 | 2.1396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10769 | 1.4396 | 0.155 | 0.40365 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.037728 | 1.3825 | 0.10936 | 0.22667 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.035207 | 1.3415 | 0.02678 | 0.53216 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.016364 | 1.3581 | 0.078614 | 0.54888 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0085208 | 1.3691 | -0.074302 | 0.42112 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.028118 | 1.3765 | 0.038052 | 0.49109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.026 | 1.3394 | 0.084908 | 0.40699 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.055394 | 1.3357 | 0.10662 | 0.47525 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3010 | -0.020237 | 1.3444 | 0.16236 | 0.55011 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.043106 | 1.4568 | 0.086815 | 0.53523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3541 | 0.015316 | 1.3574 | 0.13127 | 0.63824 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.031539 | 1.3723 | 0.1655 | 0.38835 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.06859 | 1.3428 | 0.05906 | 0.76697 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.00093278 | 1.4047 | 0.086299 | 0.46016 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.012364 | 1.3570 | 0.10743 | 0.33406 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.079592 | 1.3332 | 0.1278 | 0.20835 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.056156 | 1.3931 | 0.0472 | 0.45769 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.092678 | 1.4166 | 0.16254 | 0.26471 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.029023 | 1.4237 | 0.23304 | 0.36582 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1481 | 0.015773 | 1.3482 | 0.065393 | 0.29421 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1292 | -0.036722 | 1.3616 | 0.14296 | 0.42494 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.047241 | 1.2971 | 0.030547 | 0.02745 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.029093 | 1.4506 | 0.15855 | 0.34405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.045893 | 1.4455 | 0.061202 | 0.55883 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.02077 | 1.3207 | 0.18267 | 0.15639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1373 | 0.047198 | 1.3263 | 0.075693 | 0.16813 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.013041 | 1.4170 | -0.017138 | 0.13513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.010987 | 1.3525 | 0.22758 | 0.19222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 711 | 0.07448 | 1.3440 | 0.099512 | -0.11618 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 590 | 0.060545 | 1.4491 | 0.043463 | 0.81815 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.0017264 | 1.3979 | 0.1205 | 0.34811 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.1117 | 1.3428 | -0.02872 | 0.34789 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.10931 | 1.5627 | -0.059325 | 0.0965 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.046354 | 1.5465 | 0.014579 | 0.27534 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027279 | 1.5447 | 0.066569 | 0.74334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.02197 | 1.4301 | 0.053011 | 0.4552 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04825 | 1.3890 | -0.099231 | 0.50511 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17755 | 1.4639 | 0.073642 | 1.1168 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.052993 | 1.3748 | 0.058347 | -0.061781 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.029379 | 1.2557 | 0.11507 | -0.38 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11236 | 1.3657 | 0.29962 | 0.57823 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045008 | 1.2982 | 0.070479 | 0.1736 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3832 | 0.0049769 | 0.085851 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.074413 | 1.5791 | 0.0276 | 0.982 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.032913 | 1.3373 | 0.06873 | -0.10459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15785 | 1.2765 | -0.092362 | 0.63541 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.2609 | 1.2673 | 0.31575 | 0.021388 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.27997 | 1.4024 | 0.36475 | 0.094743 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.013246 | 1.5119 | 0.33449 | 0.24892 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19575 | 1.4595 | 0.2578 | 0.28875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15585 | 1.2682 | 0.026315 | -0.32675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10575 | 1.2418 | 0.13292 | 0.34294 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.088671 | 1.3369 | 0.17251 | 1.0131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12515 | 1.3262 | 0.11463 | 0.11289 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11399 | 1.2903 | 0.24434 | 0.010278 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.021847 | 1.2933 | -0.075716 | 0.1085 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.05381 | 1.4400 | -0.30835 | 0.49976 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039697 | 1.2186 | 0.2132 | -0.16206 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.11996 | 1.3207 | 0.30017 | 0.47242 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.096711 | 1.2817 | 0.074813 | 0.25636 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050476 | 1.2240 | -0.26252 | -0.22191 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.034173 | 1.4143 | 0.17138 | -0.3135 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.22956 | 1.2287 | 0.35009 | 0.059646 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.023859 | 1.4926 | 0.074454 | -0.14745 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.12972 | 1.3429 | 0.13056 | 0.4705 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10916 | 1.1666 | 0.0078262 | 0.2137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.03 | 1.2578 | -0.063497 | 0.37146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.05979 | 1.5040 | -0.012453 | 0.42076 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16737 | 1.4819 | 0.39336 | 0.42517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 340840 | 0.00045372 | 8.9382e-06 | 0.46655 | -0.94235 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 340840 | 0.029506 | 0.00023674 | 0.19639 | -1.1222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0086 | 0.21872 | 0.32303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.076563 | 1.4033 | 0.066494 | -0.023738 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3366 | 1.1936 | 1.9128 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28913 | 1.2015 | 0.49318 | -0.026685 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49643 | 1.3973 | 0.34265 | -0.16583 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.39118 | 1.4789 | 0.13373 | 0.17833 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.028125 | 1.3462 | 0.46977 | 0.06325 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.26852 | 1.3386 | -0.32471 | -0.3034 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.18684 | 1.1536 | -0.28681 | -0.21564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.041667 | 1.4660 | -0.22723 | -0.90851 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.125 | 1.9071 | -0.41821 | -0.16491 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.1 | 0.91624 | -0.38164 | -0.46204 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32727 | 1.5556 | 0.35204 | -0.92548 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.27391 | 1.2985 | 0.64602 | 1.7324 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.34808 | 1.4969 | 0.026314 | -0.47986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.095455 | 0.90958 | -0.7757 | 0.48492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.32391 | 1.1983 | -0.51064 | -0.15802 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25105 | 1.4439 | 0.05158 | 0.194 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.20333 | 1.5945 | -0.49165 | -0.32469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.86667 | 1.7995 | -0.037321 | -0.44153 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32442 | 1.9543 | -0.057212 | -0.83039 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.26111 | 1.3670 | -0.19305 | -0.89152 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15357 | 1.7691 | -0.59632 | -0.56382 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95606 | 1.6668 | -0.060134 | -0.26099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58429 | 1.2081 | -0.20615 | -0.97647 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46197 | 1.7649 | 0.043762 | -0.55426 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.47526 | 1.5518 | -0.38317 | -0.38775 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41364 | 1.1440 | 0.40473 | -0.97403 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.59667 | 1.4028 | -1.3874 | 2.0305 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.025676 | 1.5660 | 0.013653 | -0.39601 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16212 | 1.5566 | 0.19955 | -0.26783 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.34737 | 1.2960 | 0.11432 | -0.074239 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19568 | 1.3658 | 0.53111 | 0.061642 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0053 | 1.2296 | 0.024809 | -0.36402 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.012745 | 1.4361 | -0.42597 | -0.18583 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.057692 | 1.4603 | 0.34378 | 0.66787 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49468 | 1.3878 | 0.30047 | -0.46767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11761 | 1.2323 | 0.50648 | 0.44843 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.15781 | 1.5066 | 0.0299 | -0.35243 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | -0.0071429 | 2.1231 | -0.043549 | -0.39684 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.1775 | 1.9503 | 0.47931 | -0.86019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.27083 | 1.3705 | 0.14245 | -0.0062807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.25185 | 1.3313 | 0.42292 | -0.44177 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.145 | 1.0934 | 0.954 | 0.53036 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21462 | 1.1367 | 0.14703 | -0.46503 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 126285 | 0.00049539 | 7.1402e-05 | 0.6622 | -1.2948 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 126285 | 0.021027 | 0.0058176 | -0.2332 | -1.2581 | +RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270137 |-0.00043719 | 0.83190 |-0.00064222 | -1.1858 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270137 |-0.00043719 | 0.83190 |-0.00064222 | -1.1858 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270137 | -0.022651 | 0.80955 | 0.040122 | -1.0687 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270137 | -0.0010169 | 0.83206 | 0.00054783 | -1.1888 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135328 | 0.70521 | 0.29970 | 0.30814 | -0.021758 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135328 | -0.67015 | 0.32104 | 0.022916 | 0.40485 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135328 | -0.045861 | 0.18529 | 0.054842 | 2.5389 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.52023 | 17.581 | 0.019736 | 4.5236 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.42777 | 18.120 | -0.021896 | 4.1548 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | 6.5451 | 332.04 | 0.10286 | -1.1575 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | -0.95267 | 77.551 | -0.046062 | 1.7666 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1.5948 | 79.694 | -0.11551 | 1.5809 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1502.5 | 331.87 | -0.099792 | -1.1612 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | -1.551 | 78.478 | -0.052308 | 1.5602 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1.0295 | 81.412 | -0.13133 | 1.4919 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1509.4 | 13.246 | 10.874 | 184.58 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134809 | 0.62913 | 0.28039 | 0.70812 | 5.2261 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134809 | -0.57969 | 0.31892 | 0.74596 | 5.5264 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134809 | -0.047171 | 0.19014 | -0.48308 | 10.295 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | -0.54245 | 17.311 | 0.05852 | 4.5157 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | -0.43613 | 17.797 | -0.010206 | 4.0935 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134809 | 7.2226 | 331.18 | 0.098217 | -1.1504 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 7.6903 | 76.449 | -0.11297 | 1.8563 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 1.1817 | 78.354 | -0.057336 | 1.5678 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134809 | 1502.1 | 330.98 | -0.096038 | -1.1536 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134809 | 0.005011 | 0.046403 | -0.091193 | 0.20112 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134809 | 0.005011 | 0.046403 | -0.091193 | 0.20112 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 7.2144 | 77.623 | -0.14725 | 1.7775 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 0.87479 | 79.868 | -0.018844 | 1.5045 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134809 | 1509.7 | 14.404 | 9.9833 | 148.87 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134809 | 0.0055878 | 0.046403 | -0.091926 | 0.1973 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134809 | 0.0055878 | 0.046403 | -0.091926 | 0.1973 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.5588 | 10.272 | 0.20144 |-0.00024619 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 30.894 | 12.005 | 0.021809 | -0.18776 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 26.928 | 10.928 | -0.26704 | -0.37108 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 5.0352 | 12.250 | 0.38291 | -0.3098 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 22.077 | 10.904 | -0.12169 | -1.0391 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 9.6818 | 12.677 | 1.3374 | 1.4165 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.391 | 11.276 | -0.011553 | -0.69247 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6063 | 51.369 | 11.549 | -0.1748 | -0.12799 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 5.3909 | 11.406 | 0.097688 | -0.15528 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6226 | 33.571 | 10.648 | 0.21813 | -0.24288 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 23.253 | 10.532 | -0.1581 | -0.32789 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 8.375 | 6.1122 | -0.47127 | -1.0648 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 28.5 | 6.4807 | 0.40658 | -1.2634 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2801 | -43.657 | 24.209 | -0.90773 | -1.1691 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2801 | -56.384 | 1.2551 | 0.29302 | 0.10383 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2801 | 0.014013 | 1.1775 | -0.058785 | 0.032853 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2801 | -0.020796 | 1.1495 | 0.015168 | -0.049243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 954 | 0.28703 | 0.28279 | 5.5882 | 48.799 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 954 | 0.018171 | 0.28458 | -1.9718 | 23.252 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 954 | -0.074764 | 0.27805 | -3.9374 | 46.959 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | -1.643 | 30.220 | -0.033729 | 0.0784 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | -0.28355 | 15.249 | -0.1754 | 3.9039 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 954 | 28.664 | 540.80 | -0.030778 | -1.1926 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | -234.53 | 330.37 | 0.93335 | 2.0762 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | 4.2087 | 298.84 | 0.11401 | 1.6247 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 954 | 10412 | 540.61 | 0.043137 | -1.1735 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 954 | -0.0446 | 0.033826 | 0.77754 | 1.2094 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 954 | -0.0446 | 0.033826 | 0.77754 | 1.2094 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | -235.55 | 330.84 | 0.96593 | 2.0364 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | 3.5376 | 298.35 | 0.097838 | 1.4356 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 954 | 10441 | 39.474 | 0.47154 | 0.66271 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 954 | -0.044668 | 0.033863 | 0.77622 | 1.1924 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 954 | -0.044668 | 0.033863 | 0.77622 | 1.1924 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1820 | 0.30728 | 0.30242 | 7.0493 | 73.01 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1820 | 0.036247 | 0.27348 | 2.0208 | 24.723 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1820 | -0.062727 | 0.32735 | 1.8867 | 63.427 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | -0.89091 | 33.484 | -0.018476 | -0.078396 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | 0.11888 | 14.327 | -0.20963 | 3.6924 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1820 | -14.438 | 550.18 | 0.047422 | -1.1658 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | 347.81 | 242.74 | -0.099534 | 4.2006 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | -1.1237 | 282.08 | -0.11692 | 1.5893 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1820 | 10461 | 551.48 | -0.030698 | -1.1523 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1820 | 0.055906 | 0.025341 | -0.12573 | 2.2405 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1820 | 0.055906 | 0.025341 | -0.12573 | 2.2405 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | 346.44 | 237.81 | -0.2049 | 4.2478 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | -0.72727 | 281.79 | -0.14593 | 1.5554 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1820 | 10446 | 38.664 | 0.75484 | 1.0542 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1820 | 0.055869 | 0.025263 | -0.12826 | 2.2628 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1820 | 0.055869 | 0.025263 | -0.12826 | 2.2628 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 9.04 | 11.602 | 1.0818 | 0.29142 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 1.4545 | 0.74966 | 2.2149 | 6.7933 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 242 | 35.029 | 4.3276 | -1.1943 | 2.8127 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.1718 | 6.1864 | 0.017827 | 0.18293 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 89 | 1.4719 | 0.86232 | 2.3998 | 7.4578 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 89 | 31.579 | 4.0118 | -0.55145 | 1.0239 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 6.7857 | 7.0720 | 1.2673 | 3.0484 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 33.8 | 4.9810 | -0.78538 | -0.57551 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3143 | 30.341 | 7.3089 | -0.41067 | 1.0987 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3143 | 4.8102 | 6.5351 | 0.27734 | 0.966 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1451 | 1.5389 | 0.84439 | 1.7906 | 3.3591 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1451 | 34.153 | 3.7980 | -0.97708 | 3.3654 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.2143 | 6.2890 | -0.084322 | -0.63149 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 24 | 1.1667 | 0.47140 | 2.8726 | 7.3594 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 24 | 29.917 | 2.5644 | 0.42241 | -0.15608 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 35.857 | 25.579 | 0.13257 | -1.3584 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 61.412 | 12.317 | -0.2264 | -1.3816 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 50.391 | 18.950 | -0.24489 | -1.1133 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 60.429 | 12.146 | -0.22753 | -1.3605 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 59.706 | 12.007 | -0.2186 | -1.3246 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.132 | 21.794 | 0.097609 | -1.0388 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 25.099 | 13.887 | -0.13475 | -1.0541 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4851 | 54.759 | 2.5392 | 0.90652 | 1.7081 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4849 | 35.538 | 9.5027 | 0.089436 | -1.028 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4851 | 53.875 | 2.3966 | 0.91168 | 2.0896 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4851 | 53.222 | 2.3480 | 0.81346 | 2.1334 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 24.825 | 16.068 | 0.074283 | -1.3375 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 498 | 242.25 | 187.82 | 0.21848 | -1.3661 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 596.99 | 21.400 | -8.9287 | 110.85 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 361.92 | 134.95 | -0.22441 | -1.0797 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 586.2 | 21.542 | -8.2536 | 99.223 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 578.2 | 22.741 | -6.6777 | 74.273 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.72 | 161.34 | 0.19472 | -0.96753 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 455 | 152.59 | 90.414 | -0.10572 | -1.1156 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4878 | 344.82 | 16.615 | 1.08 | 2.8955 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4878 | 224.95 | 59.269 | 0.092668 | -1.0173 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4878 | 339.42 | 15.760 | 1.0858 | 3.2972 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4878 | 335.22 | 15.515 | 0.98809 | 3.3119 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1873 | 150.12 | 103.31 | 0.12295 | -1.351 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2840 | 1905.9 | 94.223 | 0.5575 | 1.6633 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 25.684 | 18.262 | 0.15589 | -1.2768 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 58.843 | 3.9329 | -1.3387 | 9.0775 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 35.25 | 13.823 | -0.14111 | -1.0199 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 57.77 | 3.9010 | -1.3071 | 8.7305 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 56.968 | 3.9270 | -1.1985 | 7.822 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.735 | 15.782 | 0.23527 | -0.85021 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 17.006 | 9.5311 | -0.081481 | -0.99082 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4851 | 35.961 | 4.8698 | -1.3942 | 3.7162 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4849 | 23.598 | 6.9413 | 0.054903 | -0.76045 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4851 | 35.381 | 4.7794 | -1.4319 | 3.8015 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4851 | 34.953 | 4.7206 | -1.454 | 3.8972 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 16.729 | 10.879 | 0.10314 | -1.2787 | +RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich1/nHitsPerChanID | "Rich1 # hits per channel ID (total nHits>0)" | 3038860 | 1.1185 | 0.71905 | 16.292 | 392.79 | + | /RICH/RichMCHits/Rich1/nSignalHitsPerChanID | "Rich1 # signal hits per channel ID (tota..." | 3038860 | 0.89952 | 0.55517 | 0.52015 | 3.1577 | + | /RICH/RichMCHits/Rich2/nDigitsPerChanID | "Rich2 # digitised hits per channel ID (t..." | 2107884 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich2/nHitsPerChanID | "Rich2 # hits per channel ID (total nHits>0)" | 2107884 | 1.0905 | 1.0585 | 14.691 | 279.46 | + | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28072 | -0.01509 | 0.22581 | 0.16499 | -0.27116 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 661396 | -0.010042 | 0.24064 | -0.81655 | 63.753 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 820732 | -0.0094745 | 0.29268 | -0.4573 | 24.275 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 207388 | -0.012259 | 0.22844 | -2.6842 | 229.61 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 28392 | -0.0063933 | 7.5171 | 0.84617 | 0.39431 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 378592 | -0.05701 | 7.0059 | 0.71983 | 1.262 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 448224 | -0.37794 | 8.2021 | -0.10012 | 2.5587 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 113256 | 0.0027421 | 6.9164 | 0.93683 | 1.2251 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074979 | 0.057596 | 1.1672 | 1.3523 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062865 | 0.048317 | 1.8015 | 4.0222 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 1745733 | 1.2074 | 0.82314 | 10.482 | 199.91 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 1509488 | -3.2045 | 253.90 | -0.025906 | -0.14044 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 1509488 | -1362.1 | 73.355 | -0.71394 | -0.14702 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 893 | 1001.4 | 232.83 | -0.44644 | -0.23243 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 893 | 3403.1 | 1485.8 | 0.26965 | -0.39534 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 3038860 | -5.2725 | 253.71 | -0.014686 | -0.14522 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 3038860 | 0.28001 | 263.95 | -0.0094217 | -0.72254 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 1529372 | -7.3058 | 254.15 | -0.003478 | -0.14002 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 1529372 | 1360.8 | 73.073 | 0.73306 | -0.10629 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1039366 | 3897 | 85.560 | -0.059328 | -0.97114 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1039366 | 8.5165 | 250.90 |-0.00017712 | 0.33918 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1068518 | -3900.2 | 85.860 | 0.088552 | -0.97161 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1068518 | 8.6563 | 251.07 | -0.0036305 | 0.35295 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 893 | 788.21 | 151.97 | -0.85772 | 0.39121 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 893 | 2360.6 | 952.66 | 0.17043 | -0.55956 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 490435 | 2.9822 | 2.4337 | 2.4357 | 10.827 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 213433 | 3.0234 | 3.1363 | 3.1555 | 15.245 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 703868 | 2.9947 | 2.6665 | 2.8528 | 14.318 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 2107884 | -7.5365 | 449.70 | 0.021231 | -1.4678 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3383354 | 0.05121 | 0.00051426 | -0.23203 | -1.1115 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3383354 | 0.051884 | 0.0063797 | 0.01294 | -0.93078 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3383354 | 0.00011681 | 0.0029522 | -0.049625 | -0.95611 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 909738 | 0.00010697 | 0.0029537 | -0.038576 | -0.96397 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 846456 | 0.00013347 | 0.0029606 | -0.065918 | -0.97006 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 844747 | 0.0001109 | 0.0029446 | -0.043663 | -0.94251 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 782413 | 0.00011673 | 0.0029495 | -0.051365 | -0.94581 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1121184 | 0.029498 | 0.00023214 | 0.13233 | -1.0799 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1121184 | 0.028103 | 0.0040950 | -0.22113 | -0.99796 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1121184 | 5.7463e-05 | 0.0018603 | -0.022244 | -0.91118 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 295646 | 4.8921e-05 | 0.0018596 | -0.021081 | -0.91186 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 274248 | 5.8332e-05 | 0.0018590 | -0.022077 | -0.90898 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 272429 | 5.6382e-05 | 0.0018630 | -0.019192 | -0.91986 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 278861 | 6.6758e-05 | 0.0018598 | -0.026633 | -0.9041 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8921 | 974.9 | 33.294 | 12.935 | 177.91 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8921 | 2045.7 | 14.728 | 1.2481 | 3.2567 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8921 | 1075.2 | 38.651 | -8.8448 | 109.4 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4878 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4878 | 11382 | 86.520 | 0.90206 | 2.1403 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4878 | 1888.9 | 91.053 | 1.0739 | 2.8226 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.729 | 7.3209 | 0.48805 | -0.15715 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.218 | 8.6762 | 0.3757 | -0.34551 | +RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245683 | 18430 | 10489. | 3.865 | 22.935 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8897 | 62696 | 22142. | 0.88472 | -0.21192 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8897 | 18298 | 10711. | 4.0386 | 24.085 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8897 | 19889 | 11728. | 3.7291 | 19.961 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8897 | 18340 | 10745. | 4.0277 | 23.934 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8897 | 18372 | 10771. | 4.0194 | 23.819 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8897 | 31002 | 15808. | 2.8596 | 9.3824 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100502 | 33694 | 17839. | 2.4167 | 6.1163 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4800 | 89998 | 15662. | 0.12158 | -1.0667 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4800 | 33004 | 17290. | 2.5295 | 6.8021 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4800 | 34998 | 18614. | 2.2496 | 5.0921 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4800 | 33064 | 17336. | 2.5197 | 6.7382 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4800 | 33110 | 17372. | 2.5123 | 6.6896 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4800 | 56841 | 22565. | 1.0145 | 0.063415 | +RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 39865 | 0.033924 | 0.011746 | -0.33878 | -1.0741 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 42455 | 53063 | 19561. | 1.5143 | 1.6382 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16398 | 6937.2 | -0.36047 | -22.845 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 900047 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 897868 | 18130 | 10339. | 3.9207 | 23.454 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6898.5 | -0.24943 | -22.118 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6898.5 | -0.24943 | -22.118 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17607 | 10147. | 3.0419 | 11.45 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28253 | 23861 | 13842. | 3.1049 | 14.123 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28253 | 0.044137 | 0.0062829 | -1.2074 | 1.2854 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 900047 | 0.036887 | 0.0095971 | -0.30224 | -1.1359 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 897868 | 17088 | 9791.6 | 4.1422 | 26.402 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23039 | 13506. | 3.1627 | 14.829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23039 | 13506. | 3.1627 | 14.829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.043398 | 0.0068826 | -1.1662 | 1.0313 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.043398 | 0.0068826 | -1.1662 | 1.0313 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 22159 | 13378. | 3.2629 | 14.896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 0.042741 | 0.0071702 | -1.0558 | 0.5825 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3681 | 16.099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3681 | 16.099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041661 | 0.0079080 | -0.93546 | 0.11441 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041661 | 0.0079080 | -0.93546 | 0.11441 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17393 | 6621.9 | 0.94812 | 0.0063037 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13936 | -1.5855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 900047 | 0.051573 | 0.00029980 | -0.21267 | -1.1006 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 897868 | 18011 | 10295. | 4.0002 | 24.33 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17138 | 6559.0 | 1.0033 | 0.13218 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17138 | 6559.0 | 1.0033 | 0.13218 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20624 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20624 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46681 | -1.4307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063302 | -1.8914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54197 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54197 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14656 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14656 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205311 | 17560 | 9642.0 | 4.4297 | 30.494 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205311 | 0.051176 | 0.00051877 | -0.20429 | -0.87753 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 900047 | 0.051196 | 0.00051552 | -0.21573 | -1.1204 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 897868 | 18095 | 10328. | 3.9371 | 23.629 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205311 | 17383 | 9487.3 | 4.4719 | 31.283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205311 | 17383 | 9487.3 | 4.4719 | 31.283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205311 | 0.051163 | 0.00052051 | -0.17742 | -0.90142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205311 | 0.051163 | 0.00052051 | -0.17742 | -0.90142 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205311 | 17562 | 9298.1 | 4.0934 | 27.005 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205311 | 0.051181 | 0.00051972 | -0.18676 | -0.85114 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205311 | 17388 | 9156.9 | 4.13 | 27.647 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205311 | 17388 | 9156.9 | 4.13 | 27.647 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205311 | 0.051168 | 0.00052141 | -0.16092 | -0.87345 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205311 | 0.051168 | 0.00052141 | -0.16092 | -0.87345 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 35223 | 15317. | 2.4165 | 7.897 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 0.041072 | 0.0081131 | -1.6212 | 2.8852 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 317216 | 0.029999 | 0.011003 | 0.061019 | -1.0437 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 338507 | 24873 | 11269. | 4.0574 | 21.393 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33426 | 15042. | 2.429 | 8.2817 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33426 | 15042. | 2.429 | 8.2817 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097401 | -1.34 | 1.0863 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097401 | -1.34 | 1.0863 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 33079 | 16162. | 2.6722 | 8.0682 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 0.03903 | 0.0081220 | -0.72187 | 0.26962 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31650 | 15487. | 2.8293 | 9.3171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31650 | 15487. | 2.8293 | 9.3171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089210 | -0.66629 | -0.050273 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089210 | -0.66629 | -0.050273 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 26603 | 0.020883 | 0.0049579 | -0.38025 | -0.87407 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 24762 | 84316 | 15936. | 0.49116 | -0.86274 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.00024414 |-1.3422e+08 | 2.7022e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35355 | 17795. | 0.98216 | -0.46755 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 4.6566e-10 |-1.0066e+08 | 6.7554e+15 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 340840 | 0.029952 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 335784 | 32903 | 17067. | 2.4987 | 6.6976 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34826 | 17587. | 1.0458 | -0.33312 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33481 | 15009. | 1.4601 | 1.2043 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 57822 | 34450. | -1.4648 | -0.97948 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 3.2927e-10 |-9.4906e+07 | 2.7022e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30755 | 12358. | 1.4337 | 1.2854 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30445 | 12211. | 1.4839 | 1.4567 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30895 | 12195. | 1.4222 | 1.2572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28366 | 12070. | 1.8533 | 2.7934 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12067 | 33060 | 31431. | 2.0944 | 2.0928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12067 | 0.020164 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 340837 | 0.023453 | 0.0036601 | -0.020402 | -1.113 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 335781 | 32616 | 17018. | 2.53 | 6.8668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12067 | 32121 | 30161. | 2.2455 | 2.7336 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10114 | 31512 | 27089. | 2.2964 | 3.1964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1953 | 18685 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12067 | 0.020157 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10114 | 0.020195 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1953 | 0.021296 | 0.0064057 | 0.21195 | -3.1614 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12067 | 39932 | 22189. | 1.7528 | 2.5476 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12067 | 0.025146 | 0.0033876 | -0.45454 | -0.777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12067 | 39270 | 21969. | 1.8011 | 2.7494 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10114 | 40222 | 22715. | 1.6976 | 2.3203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1953 | 34876 | 17473. | 2.384 | 5.6741 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12067 | 0.024977 | 0.0034580 | -0.41101 | -0.84498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10114 | 0.025081 | 0.0035320 | -0.44922 | -0.88534 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1953 | 0.024482 | 0.0030336 | -0.30229 | -0.47772 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 492 | 20628 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 492 | 0.02943 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 340840 | 0.029681 | 0.00013585 | 0.23559 | -0.86961 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 335784 | 32545 | 16705. | 2.576 | 7.2249 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 492 | 20647 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 416 | 20207 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21074 | 1353.3 | 20.327 | 228.8 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 492 | 0.029431 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 416 | 0.029463 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 26323 | 6970.1 | 1.5335 | 1.6887 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 0.029589 | 0.00014872 | 0.44442 | -0.71057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 492 | 26077 | 6784.5 | 1.5987 | 1.9734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 416 | 27322 | 7387.2 | 1.2716 | 0.82288 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3161.8 | 2.0877 | 3.4765 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 492 | 0.029584 | 0.00014712 | 0.4695 | -0.68532 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 416 | 0.02962 | 0.00014714 | 0.19815 | -0.65447 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9691e-05 | 1.1502 | -0.67715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83568 | 35608 | 21150. | 2.3224 | 5.0459 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83568 | 0.029556 | 0.00023414 | 0.18052 | -1.134 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 340840 | 0.029497 | 0.00023446 | 0.15787 | -1.0406 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 335784 | 33083 | 17265. | 2.4707 | 6.4928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83568 | 35391 | 21028. | 2.3496 | 5.1917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 71030 | 42126 | 25269. | 1.5531 | 1.6488 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12538 | 28831 | 12793. | 4.4677 | 22.683 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83568 | 0.029553 | 0.00023433 | 0.19629 | -1.1242 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 71030 | 0.029641 | 0.00024193 | -0.32481 | -1.2598 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12538 | 0.029461 | 0.00018608 | 0.53515 | -0.020497 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83568 | 32053 | 15850. | 2.6944 | 8.1381 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83568 | 0.029494 | 0.00022800 | 0.25407 | -1.0006 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83568 | 31868 | 15751. | 2.7238 | 8.3339 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 71030 | 32431 | 16244. | 2.6239 | 7.6101 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12538 | 28920 | 12454. | 3.3892 | 14.279 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83568 | 0.02949 | 0.00022803 | 0.27466 | -0.99309 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 71030 | 0.029499 | 0.00022947 | 0.2287 | -1.0269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12538 | 0.029443 | 0.00021411 | 0.50844 | -0.69025 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 83648 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 0.029993 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 106552 | 0.020408 | 0.0059854 | -0.093636 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 121229 | 47319 | 19886. | 1.6796 | 2.131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3215 | 82401 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2805 | 67484 | 18063. | -0.46202 | -2.3621 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38634 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3215 | 0.03002 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2805 | 0.026383 | 0.0035068 | -3.0938 | 12.162 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014157 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 61467 | 22657. | 0.77484 | -0.4767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 0.024035 | 0.0048310 | -0.9858 | 0.090331 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 60380 | 22833. | 0.80911 | -0.43194 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 61742 | 23059. | 0.74578 | -0.52868 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52379 | 19634. | 1.253 | 0.48463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 0.023702 | 0.0051007 | -0.90329 | -0.20624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 0.02405 | 0.0049678 | -1.0552 | 0.19303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021619 | 0.0053810 | -0.17695 | -1.1651 | +RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 16947 | 7029.0 | 2.2337 | 8.6189 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | -1.6885 | 79.001 | -0.019984 | 1.6906 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 2.0002 | 81.693 | -0.11242 | 1.4548 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | 17034 | 7009.8 | 2.1579 | 8.0537 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -4.8289 | 76.376 | 0.27412 | 1.7139 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -0.92215 | 88.246 | 0.18697 | 1.6246 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | 15017 | 7484.6 | 4.5209 | 27.208 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -4.8289 | 76.376 | 0.27412 | 1.7139 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -0.92215 | 88.246 | 0.18697 | 1.6246 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 133.24 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.102 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1177 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.395 | 93.636 | 2.4599 | -4.386 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 249.15 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1683 | 271.67 | -0.54825 | -0.17414 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 20.23 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15.941 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15295 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135328 | -2155.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135328 | -7.9552 | 124.69 | 0.71169 | 1.6122 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135328 | -3415.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135328 | -13.039 | 141.30 | 0.81834 | 1.0692 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 17383 | 7492.9 | 2.1486 | 7.553 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 7.2158 | 69.423 | -0.14551 | 2.1065 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134809 | 1.2328 | 72.004 | -0.054343 | 1.7991 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | 17605 | 7507.4 | 2.0671 | 7.0841 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | 1.8177 | 74.105 | -0.58494 | 1.4873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134809 | -3.4742 | 84.369 | -0.35314 | 1.265 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | 15175 | 7375.0 | 3.4728 | 16.737 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | 1.8177 | 74.105 | -0.58494 | 1.4873 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134809 | -3.4742 | 84.369 | -0.35314 | 1.265 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 138.34 | 118.10 | 3.5142 | -17.901 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 12.042 | 102.43 | 0.80872 | -0.059826 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 2294.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 3.6476 | 90.192 | 0.31917 | 4.0875 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 191.98 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 1746.7 | 52.482 | 348.35 | -7028 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | -68.461 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | 1.236 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134809 | -13594 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134809 | 794.84 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134809 | -2.9969 | 52.764 | -5.4839 | -4.6938 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134809 | 710.11 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134809 | -2.4439 | 55.081 | -4.2592 | -2.5974 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 18160 | 8899.2 | 2.484 | 10.042 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 18564 | 8799.2 | 2.2157 | 7.5728 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 18462 | 9011.6 | 2.4681 | 8.8676 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.6169 | 50.451 | -0.48324 | 3.7955 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.582 | 52.802 | -0.48882 | 2.4512 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49227 | 7903.5 | 0.61411 | 0.66127 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47072 | 10899. | 0.98207 | 0.060614 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 18724 | 5208.9 | 0.70966 | -0.36083 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16615 | 6073.3 | 0.90271 | -0.10509 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 19048 | 9477.0 | 2.494 | 8.2831 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6063 | 17330 | 8110.8 | 2.7552 | 11.441 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 1.5144 | 48.941 | -0.19674 | 2.9736 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 0.90011 | 49.570 | -0.12851 | 1.6845 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 17851 | 8527.4 | 2.6673 | 10.343 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 17271 | 8008.6 | 2.7395 | 11.481 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 1.5007 | 51.817 | -0.22655 | 2.9607 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 0.67364 | 51.820 | -0.12394 | 1.7497 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 72925 | 3749.3 | -0.29358 | -1.6318 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72590 | 3712.3 | 0.023954 | -1.5708 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | 31516 | 15848. | 2.58 | 7.2276 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | -253.17 | 312.98 | 0.74835 | 1.8939 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 954 | -1.995 | 285.23 | 0.16113 | 2.0615 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -9876.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -264.45 | 301.60 | 0.47842 | 0.4477 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 954 | -58.033 | 293.06 | 0.29332 | 2.304 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | 30164 | 11798. | 0.51029 | -8.6941 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | -264.45 | 301.60 | 0.47842 | 0.4477 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 954 | -58.033 | 293.06 | 0.29332 | 2.304 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | -64.426 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 24.852 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 2797.4 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 454.43 | 651.13 | -0.90479 | -0.92344 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 1212.7 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 8657.6 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 76.452 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | -103.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 954 | 195.74 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 954 | -478.95 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 954 | 7.5107 | 246.34 | 0.65698 | 2.9883 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 954 | -478.91 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 954 | 7.5432 | 246.27 | 0.65829 | 2.9802 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 29965 | 13846. | 3.2887 | 13.513 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 358 | 232.66 | -0.10819 | 4.332 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1820 | 12.3 | 270.76 | -0.085058 | 1.3057 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 21771 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 313.23 | 126.27 | -4.1637 | 20.635 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1820 | 5.6426 | 238.83 | -0.64134 | 6.0407 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 30640 | 11764. | 1.8383 | 0.20514 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 313.23 | 126.27 | -4.1637 | 20.635 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1820 | 5.6426 | 238.83 | -0.64134 | 6.0407 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 2090.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 74.411 | 511.59 | 1.0023 | -1.9349 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 33143 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -714.49 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -940.38 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 9015 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 1434.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | -4.8136 | 493.68 | 1.1633 | -0.074363 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1820 | 31364 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1820 | 451.95 | 212.32 | 2.6187 | -5.0146 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1820 | -6.1355 | 290.93 | -0.33699 | 1.8748 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1820 | 452.04 | 212.21 | 2.6228 | -5.0451 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1820 | -6.2273 | 290.79 | -0.33723 | 1.8783 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27832 | 9662.0 | 2.7789 | 7.6544 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 241 | 32031 | 14767. | 2.3492 | 5.4488 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 32563 | 15708. | 2.4427 | 5.8133 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 106.66 | 318.89 | -0.33265 | -0.61706 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 242 | 1.6989 | 278.65 | -0.41541 | 1.4714 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55608 | 16894. | 0.78035 | -0.36431 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 83 | 56641 | 19193. | 0.72384 | -0.77755 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 59962 | 23783. | 0.92816 | -0.17091 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 211.27 | 329.34 | 0.54889 | 0.87868 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 19.153 | 257.22 | -1.4954 | 5.413 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26274 | 6298.0 | 1.5255 | 1.912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27206 | 8051.6 | 1.5694 | 1.3945 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3100 | 32159 | 15367. | 2.2826 | 5.0812 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3143 | 32005 | 15915. | 2.7111 | 8.2068 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 6.948 | 357.71 | 0.0122 | -0.30828 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 5.3702 | 254.40 | 0.049735 | 1.4033 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1435 | 30956 | 13609. | 2.5055 | 7.0042 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 31618 | 15793. | 2.7918 | 8.6465 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 126.82 | 335.15 | -0.39773 | -0.012691 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1451 | 1.0072 | 255.52 | -0.025748 | 1.5353 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 84930 | 11818. | -0.43867 | -1.4603 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 16 | 80031 | 9475.7 | 0.52086 | -0.77371 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 88206 | 14786. | 0.17245 | -1.292 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 31.571 | 174.53 | 0.2848 | 0.63297 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 24 | 4.6429 | 221.61 | -0.076979 | -1.3181 | +RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1116 | 22005 | 13480. | 2.111 | 4.6144 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1116 | 25980 | 20543. | 2.6629 | 7.3691 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1332 | 26751 | 21012. | 2.4374 | 6.2091 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1332 | 14782 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6276 | 23190 | 16837. | 2.8924 | 9.713 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6276 | 20505 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28093 | 21888. | 2.2974 | 4.9916 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16741 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 625 | 33795 | 14116. | 1.1405 | 0.37814 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 625 | 43065 | 25103. | 1.3507 | 0.78105 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 703 | 46316 | 27162. | 1.1866 | 0.34552 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 703 | 16329 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3387 | 40541 | 23738. | 1.5863 | 1.6199 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3387 | 42318 | 22349. | 1.3778 | 0.14298 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 719 | 45431 | 26960. | 1.1756 | 0.1599 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 719 | 40312 | 25216. | 1.1618 | -0.35316 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60859 | 16786. | 0.57601 | -0.618 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.653 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20728 | 10954. | 2.9185 | 12.258 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9594.4 | 3.3084 | 16.462 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9634.4 | 3.2958 | 16.319 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32063 | 14264. | 2.2232 | 5.357 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83833 | 10370. | -0.17289 | -1.1678 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4700 | 31655 | 14386. | 2.3295 | 5.7493 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4698 | 34914 | 16265. | 1.8772 | 3.2771 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4700 | 31752 | 14456. | 2.3127 | 5.646 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4700 | 31826 | 14509. | 2.3001 | 5.5685 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56228 | 18268. | 0.68897 | -0.51698 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 449 | 60440 | 16886. | 0.58269 | -0.60544 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.653 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20662 | 10930. | 2.9241 | 12.32 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18082 | 9593.7 | 3.3086 | 16.465 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18139 | 9633.0 | 3.2962 | 16.323 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31863 | 14209. | 2.2365 | 5.4534 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 304 | 83573 | 10498. | -0.16445 | -1.1653 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4727 | 31637 | 14369. | 2.3312 | 5.7619 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4727 | 34840 | 16224. | 1.8845 | 3.3135 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4727 | 31732 | 14438. | 2.3146 | 5.6595 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4727 | 31806 | 14490. | 2.302 | 5.5827 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1722 | 55953 | 18288. | 0.69748 | -0.5008 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60732 | 16766. | 0.59172 | -0.59602 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18012 | 9549.0 | 3.3221 | 16.612 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20747 | 10972. | 2.913 | 12.198 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18088 | 9601.7 | 3.3054 | 16.421 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18147 | 9641.7 | 3.2927 | 16.278 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32080 | 14291. | 2.2184 | 5.3183 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83762 | 10336. | -0.16676 | -1.1632 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4700 | 31751 | 14455. | 2.311 | 5.6368 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4698 | 34948 | 16274. | 1.8738 | 3.2606 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4700 | 31849 | 14525. | 2.2944 | 5.5353 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4700 | 31923 | 14578. | 2.2818 | 5.459 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56144 | 18210. | 0.692 | -0.50405 | +RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | + | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28072 | 3.694e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 661396 | 1.1692e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 820732 |-1.1776e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 207388 | 8.2974e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39496 | 1.0725 | 0.90049 | 0.3454 | -0.41294 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39047 | 0.048658 | 0.0067282 | -2.5634 | 6.3482 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 28392 | 1.8967e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 378592 |-5.2895e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 448224 | 3.3109e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 113256 | 2.8703e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21726 | 1.2016 | 1.0253 | 0.54543 | -0.091581 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21214 | 0.028147 | 0.0033288 | -2.3475 | 5.1966 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2143200 | 27.432 | 266.86 | -0.0051534 | -0.71064 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 2232500 | 27.389 | 267.54 | -0.0088903 | -0.79086 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 25.143 | 448.59 | 0.017971 | -1.461 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2232500 | 40.082 | 211.89 | 0.0042584 | 1.0749 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 2232500 | 25.362 | 448.18 | 0.016157 | -1.4445 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14483 | 1.6814 | 0.51043 | 0.192 | -0.64474 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14483 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12953 | 0.10505 | 0.10306 | 1.0463 | 0.10906 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14332 | 21427 | 13158. | 2.5926 | 8.7788 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14415 | 957.3 | 745.28 | 2.7862 | 12.021 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.armv8.1_a b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.armv8.1_a new file mode 100644 index 0000000000000000000000000000000000000000..341c557c69e42ead5a005a833054e9dcf65085fa --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.armv8.1_a @@ -0,0 +1,1962 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 893 | 18734 | 20.979 | + | "nTracksSelected" | 893 | 18734 | 20.979 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 1000 | + | "Nb events removed" | 107 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 1000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 892 | 93998 | 105.38 | + | "Created long tracks" | 892 | 1007 | 1.1289 | + | "Empty input tracks" | 1 | + | "Input tracks" | 892 | 99463 | 111.51 | + | "Number of candidate bins per track" | 93998 | 49050 | 0.52182 | 1.1847 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 25488 | 769 | 0.030171 | 0.17243 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 24932 | 253 | 0.010148 | 0.10062 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 25488 | 5689 | 0.22320 | 0.48717 | + | "Number of x candidates per track 2nd Loop" | 24932 | 19457 | 0.78040 | 1.0423 | + | "Percentage second loop execution" | 25488 | 24932 | 0.97819 | + | "Removed duplicates" | 892 | 12 | 0.013453 | +PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 609 | 2440 | 4.0066 | + | "#tracks with hits added" | 609 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 449083 | 251721 | 0.56052 | 0.54375 | 0.0000 | 3.0000 | + | "Created T2x1 three-hit combinations in case 1" | 211637 | 117001 | 0.55284 | 0.54899 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 191515 | 102460 | 0.53500 | 0.56101 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 2679 | 32219 | 12.027 | 12.271 | 0.0000 | 99.000 | + | "Created XZ tracks (part 1)" | 2679 | 31216 | 11.652 | 12.221 | 0.0000 | 89.000 | + | "Created XZ tracks in case 0" | 1786 | 36342 | 20.348 | 14.965 | 0.0000 | 99.000 | + | "Created XZ tracks in case 1" | 1786 | 18571 | 10.398 | 8.5913 | 0.0000 | 59.000 | + | "Created XZ tracks in case 2" | 1786 | 8522 | 4.7716 | 5.2740 | 0.0000 | 40.000 | + | "Created full hit combinations in case 0" | 50085 | 50085 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 20174 | 20174 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 10815 | 10815 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 1786 | 35405 | 19.824 | 10.647 | 0.0000 | 65.000 | + | "Created seed tracks (part 0)" | 893 | 19831 | 22.207 | 11.955 | 0.0000 | 60.000 | + | "Created seed tracks (part 1)" | 893 | 18908 | 21.174 | 11.842 | 0.0000 | 74.000 | + | "Created seed tracks in case 0" | 1786 | 23630 | 13.231 | 7.4624 | 0.0000 | 47.000 | + | "Created seed tracks in case 1" | 1786 | 34315 | 19.213 | 10.350 | 0.0000 | 60.000 | + | "Created seed tracks in case 2" | 1786 | 37880 | 21.209 | 11.549 | 0.0000 | 70.000 | + | "Created seed tracks in recovery step" | 893 | 859 | 0.96193 | 1.3305 | 0.0000 | 9.0000 | + | "Created two-hit combinations in case 0" | 271633 | 2636456 | 9.7059 | 7.4519 | 0.0000 | 97.000 | + | "Created two-hit combinations in case 1" | 258894 | 1453665 | 5.6149 | 4.2931 | 0.0000 | 82.000 | + | "Created two-hit combinations in case 2" | 243182 | 1454837 | 5.9825 | 4.6460 | 0.0000 | 83.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 138 | + | "chi2 cut" | 343 | + | "nIterations" | 1007 | 2331 | 2.3148 | + | "nOutlierIterations" | 869 | 912 | 1.0495 | + | "nTracksInput" | 893 | 1007 | 1.1277 | + | "nTracksOutput" | 893 | 526 | 0.58903 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 216 | + | "chi2 cut" | 4077 | + | "nIterations" | 18734 | 37790 | 2.0172 | + | "nOutlierIterations" | 18518 | 17161 | 0.92672 | + | "nTracksInput" | 893 | 18734 | 20.979 | + | "nTracksOutput" | 893 | 14441 | 16.171 | +PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 888 | 227156.8 | 255.81 | + | "#MatchingMLP" | 26110 | 23289.61 | 0.89198 | + | "#MatchingTracks" | 888 | 18734 | 21.097 | +PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 14811 | 59992 | 4.0505 | + | "#tracks with hits added" | 14811 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 10 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 274382 | -8571736 | -31.240 | 1234.1 | -2656.2 | 2656.4 | + | "Average X in T1V" | 275897 | -7056664 | -25.577 | 1218.9 | -2656.3 | 2656.4 | + | "Average X in T1X1" | 271633 |-1.243158e+07 | -45.766 | 1250.5 | -2646.1 | 2646.2 | + | "Average X in T1X2" | 279246 | -4452248 | -15.944 | 1209.1 | -2646.2 | 2646.1 | + | "Average X in T2U" | 265423 | -5165696 | -19.462 | 1223.3 | -2656.3 | 2656.2 | + | "Average X in T2V" | 272034 | -4357348 | -16.018 | 1218.0 | -2656.3 | 2656.4 | + | "Average X in T2X1" | 256665 | -4753668 | -18.521 | 1229.9 | -2646.2 | 2646.2 | + | "Average X in T2X2" | 279569 | -3914927 | -14.003 | 1210.8 | -2646.2 | 2646.2 | + | "Average X in T3U" | 293751 | 889011.2 | 3.0264 | 1460.1 | -3188.2 | 3188.4 | + | "Average X in T3V" | 301199 | -1827591 | -6.0677 | 1451.9 | -3188.4 | 3188.4 | + | "Average X in T3X1" | 283940 | -541994 | -1.9088 | 1462.7 | -3176.2 | 3176.2 | + | "Average X in T3X2" | 311558 | -3325860 | -10.675 | 1443.9 | -3176.2 | 3176.2 | + | "Hits in T1U" | 3572 | 274382 | 76.815 | 28.250 | 11.000 | 288.00 | + | "Hits in T1V" | 3572 | 275897 | 77.239 | 28.670 | 10.000 | 243.00 | + | "Hits in T1X1" | 3572 | 271633 | 76.045 | 28.322 | 12.000 | 319.00 | + | "Hits in T1X2" | 3572 | 279246 | 78.176 | 28.523 | 14.000 | 190.00 | + | "Hits in T2U" | 3572 | 265423 | 74.307 | 27.286 | 10.000 | 209.00 | + | "Hits in T2V" | 3572 | 272034 | 76.157 | 27.929 | 13.000 | 197.00 | + | "Hits in T2X1" | 3572 | 256665 | 71.855 | 26.544 | 12.000 | 232.00 | + | "Hits in T2X2" | 3572 | 279569 | 78.267 | 28.560 | 12.000 | 185.00 | + | "Hits in T3U" | 3572 | 293751 | 82.237 | 28.795 | 16.000 | 289.00 | + | "Hits in T3V" | 3572 | 301199 | 84.322 | 29.598 | 17.000 | 247.00 | + | "Hits in T3X1" | 3572 | 283940 | 79.490 | 27.334 | 18.000 | 181.00 | + | "Hits in T3X2" | 3572 | 311558 | 87.222 | 30.652 | 16.000 | 215.00 | + | "Total number of hits" | 893 | 3365297 | 3768.5 | 1185.8 | 1170.0 | 6478.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 893 | 192888 | 216.00 | + | "# RawBank::UTError banks" | 893 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | +PrTrackAssociator_825c239a INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Efficiency" | 14480 | 13889 |( 95.91851 +- 0.1644282)% | + | "MC particles per track" | 13889 | 16249 | 1.1699 | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | +RiMCOpticalPhotonsLong INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Charge mis-match between reco track and matched MCParticle"| 272844 | 2 |(0.0007330196 +- 0.0005183212)% | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 893 | 4037154 | 4520.9 | 4087.3 | 0.0000 | 22184. | + | "# Rich1Gas Segments" | 893 | 8921 | 9.9899 | 6.1403 | 0.0000 | 35.000 | + | "# Rich2Gas Photons" | 893 | 1170640 | 1310.9 | 1200.0 | 0.0000 | 7025.0 | + | "# Rich2Gas Segments" | 893 | 4850 | 5.4311 | 3.6589 | 0.0000 | 20.000 | + | "# Selected Tracks" | 893 | 11366 | 12.728 | 7.3194 | 0.0000 | 36.000 | + |*"RICH selection efficiency" | 14480 | 11366 |( 78.49448 +- 0.3414368)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 13960 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 13960 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 13960 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 520 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 520 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 520 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +UTHitClustersToUTHitHandlerConve... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +Unpack__Event_MC_Rich_DigitSumma... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 5711615 | 6396.0 | 2827.6 | 560.00 | 14534. | +Unpack__Event_MC_Rich_Hits INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6185524 | 6926.7 | 3312.3 | 0.0000 | 16143. | +Unpack__Event_MC_Rich_OpticalPho... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6169536 | 6908.8 | 3303.4 | 0.0000 | 16106. | +Unpack__Event_MC_Rich_Segments INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 312457 | 349.90 | 164.04 | 0.0000 | 803.00 | +Unpack__Event_MC_Rich_Tracks INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 259112 | 290.16 | 135.00 | 0.0000 | 641.00 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 1708879 | 1913.6 | +VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of banks" | 893 | 92872 | 104.00 | + | "Number of clusters" | 893 | 1708879 | 1913.6 | + | "Number of clusters - Mod14" | 893 | 35071 | 39.273 | + | "Number of clusters - Mod15" | 893 | 35186 | 39.402 | + | "Number of clusters - Mod16" | 893 | 34883 | 39.063 | + | "Number of clusters at matrix edge" | 893 | 173379 | 194.15 | + | "Number of clusters from SPs w/ neighbors" | 893 | 363392 | 406.93 | + | "Number of clusters from isolated SPs" | 893 | 1343257 | 1504.2 | + | "Number of clusters from overflowing SPs" | 893 | 2230 | 2.4972 | + | "Number of clusters from overflowing SPs - Mod 14"| 893 | 122 | 0.13662 | + | "Number of clusters from overflowing SPs - Mod 15"| 893 | 137 | 0.15342 | + | "Number of clusters from overflowing SPs - Mod 16"| 893 | 180 | 0.20157 | + | "Number of clusters not self contained" | 893 | 61517 | 68.888 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | + | "Nb of Produced Tracks" | 893 | 187332 | 209.78 | +RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 3346851 | 5.9311e-05 | 0.0013711 | -0.046628 | -0.97252 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 2555199 | 5.7993e-05 | 0.0013669 | -0.046303 | -0.96486 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 2877803 | 5.5698e-05 | 0.0013931 | -0.048014 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 2877803 | 5.5698e-05 | 0.0013931 | -0.048014 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3101169 | 8.7307e-06 | 0.0015275 |-0.00045019 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2343225 | 1.2923e-06 | 0.0015270 | 0.0065668 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2632125 | 2.1255e-05 | 0.0015280 | -0.014544 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2632125 | 2.1255e-05 | 0.0015280 | -0.014544 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245682 | 0.00014942 | 0.0010292 | 0.011494 | -0.50985 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211974 | 0.00015721 | 0.0010209 | 0.016076 | -0.50476 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245682 | 0.00014942 | 0.0010292 | 0.011494 | -0.50985 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245678 | 0.00012878 | 0.0010474 | -0.021023 | -0.48915 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245678 | 0.00012878 | 0.0010474 | -0.021023 | -0.48915 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3101169 | 3.1318 | 1.8198 | 0.010354 | -1.1936 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245682 | 3.1259 | 1.8119 | 0.013544 | -1.1892 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3101169 | 0.041644 | 0.010144 | -0.69198 | -0.17295 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245682 | 0.049951 | 0.0047073 | -3.5134 | 14.344 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1264808 | 1.6617e-05 | 0.0010193 | -0.0015308 | -0.8243 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1044634 | 1.4695e-05 | 0.0010172 | 0.00092454 | -0.81648 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1082345 | 1.3604e-05 | 0.0010422 | -0.0042432 | -0.89366 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1082345 | 1.3604e-05 | 0.0010422 | -0.0042432 | -0.89366 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1164347 | 2.0013e-05 | 0.0011531 | -0.012329 | -1.1996 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 952887 | 1.6972e-05 | 0.0011527 | -0.0076181 | -1.1992 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 981884 | 2.877e-05 | 0.0011581 | -0.026633 | -1.211 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 981884 | 2.877e-05 | 0.0011581 | -0.026633 | -1.211 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 | 8.9348e-06 | 0.00061759 | 0.066275 | 0.17382 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91747 | 9.5911e-06 | 0.00061288 | 0.063882 | 0.20014 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85289 | 4.7537e-06 | 0.00060850 | 0.072364 | 0.25017 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15172 | 3.2141e-05 | 0.00066531 | 0.022811 | -0.19059 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 |-2.5701e-05 | 0.00065028 | -0.066482 | 0.2378 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100461 |-2.5701e-05 | 0.00065028 | -0.066482 | 0.2378 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1164347 | 3.1515 | 1.8136 | -0.0088943 | -1.1869 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100461 | 3.1466 | 1.8161 | -0.0025965 | -1.202 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1164347 | 0.024962 | 0.0053352 | -0.48603 | -0.56747 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100461 | 0.028818 | 0.0022804 | -3.1772 | 12.132 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1382820 | 0.00010845 | 0.0029467 | -0.043326 | -0.94466 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 208 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 91086 | 0.00047527 | 0.0028636 | -0.22779 | -0.81608 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 815 | -0.0002245 | 0.0020899 | 0.20717 | 0.36276 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2308 |-0.00012467 | 0.0023202 | 0.19814 | 0.01682 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7329 | 6.8739e-05 | 0.0025527 | 0.024568 | -0.37442 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24713 | 0.0003005 | 0.0026990 | -0.10249 | -0.58704 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 117375 | 0.00040888 | 0.0028908 | -0.12599 | -0.85782 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 390913 | 7.6271e-05 | 0.0029829 | -0.021636 | -0.99004 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 437650 |-2.2235e-05 | 0.0029764 | 0.01662 | -0.98061 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310369 | 1.125e-05 | 0.0029414 | -0.0272 | -0.93856 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 208 |-5.5743e-05 | 0.0021260 | 0.11036 | 0.3707 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 91086 | 0.00047527 | 0.0028636 | -0.22779 | -0.81608 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 815 | -0.0002245 | 0.0020899 | 0.20717 | 0.36276 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2308 |-0.00012467 | 0.0023202 | 0.19814 | 0.01682 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7329 | 6.8739e-05 | 0.0025527 | 0.024568 | -0.37442 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 24713 | 0.0003005 | 0.0026990 | -0.10249 | -0.58704 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 117375 | 0.00040888 | 0.0028908 | -0.12599 | -0.85782 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 390913 | 7.6271e-05 | 0.0029829 | -0.021636 | -0.99004 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 437650 |-2.2235e-05 | 0.0029764 | 0.01662 | -0.98061 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310369 | 1.125e-05 | 0.0029414 | -0.0272 | -0.93856 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2877803 | 0.00011676 | 0.0029522 | -0.04963 | -0.95632 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2877803 | 3.1313 | 1.8191 | 0.010612 | -1.1933 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2877803 | 0.042422 | 0.010060 | -0.80573 | -0.043395 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1494983 | 0.00012443 | 0.0029572 | -0.055445 | -0.96688 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 0.00014596 | 0.0023271 | -0.33425 | 0.28766 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107601 | 0.00024318 | 0.0028941 | -0.049143 | -0.87955 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 926 | 0.00038776 | 0.0021945 | -0.41769 | 0.66859 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2314 | 0.00032267 | 0.0024645 | -0.22555 | -0.17343 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5725 | 0.00034188 | 0.0025746 | -0.12198 | -0.43382 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21766 | 0.00048228 | 0.0026829 | -0.30567 | -0.5384 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 117681 | 0.00058742 | 0.0028806 | -0.27032 | -0.81088 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417417 | 0.00017919 | 0.0029848 | -0.096723 | -1.0004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470794 | 6.986e-06 | 0.0029862 | -0.0095434 | -1.0034 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 350475 |-9.3666e-05 | 0.0029498 | 0.063646 | -0.9499 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 265 | 0.00014596 | 0.0023271 | -0.33425 | 0.28766 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 107601 | 0.00024318 | 0.0028941 | -0.049143 | -0.87955 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 926 | 0.00038776 | 0.0021945 | -0.41769 | 0.66859 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2314 | 0.00032267 | 0.0024645 | -0.22555 | -0.17343 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5725 | 0.00034188 | 0.0025746 | -0.12198 | -0.43382 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 21766 | 0.00048228 | 0.0026829 | -0.30567 | -0.5384 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 117681 | 0.00058742 | 0.0028806 | -0.27032 | -0.81088 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417417 | 0.00017919 | 0.0029848 | -0.096723 | -1.0004 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 470794 | 6.986e-06 | 0.0029862 | -0.0095434 | -1.0034 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 350475 |-9.3666e-05 | 0.0029498 | 0.063646 | -0.9499 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 548402 | 5.1414e-05 | 0.0018627 | -0.019843 | -0.91848 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 548402 | 5.1414e-05 | 0.0018627 | -0.019843 | -0.91848 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 514764 | 4.2947e-05 | 0.0018751 | -0.014774 | -0.94326 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33638 | 0.00015628 | 0.0016986 | -0.063862 | -0.5484 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5692 | 1.6883e-05 | 0.0017885 | 0.0042683 | -0.7784 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14972 | 0.00036343 | 0.0018196 | -0.17546 | -0.85339 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4212 | 0.00026583 | 0.0018467 | -0.14074 | -0.85142 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1861 | 8.007e-05 | 0.0017409 | -0.0079281 | -0.62974 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12592 | 6.5953e-05 | 0.0018216 | 0.033158 | -0.87407 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31267 | 0.00010016 | 0.0018674 | -0.021002 | -0.93468 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56160 | 8.7006e-05 | 0.0018673 | -0.035635 | -0.92664 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 84422 |-1.1868e-05 | 0.0018627 | 0.017721 | -0.9053 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92833 |-4.2163e-05 | 0.0018857 | 0.03098 | -0.94751 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 96751 | -5.328e-05 | 0.0018997 | 0.029743 | -0.98936 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 75779 | 8.3184e-05 | 0.0018839 | -0.054077 | -0.97435 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38223 | 0.00016303 | 0.0018605 | -0.072935 | -0.92594 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 865 | 0.00011894 | 0.0016748 | -0.0075048 | -0.5161 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1285 | 9.9338e-05 | 0.0017404 | -0.076385 | -0.64493 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 687 | 5.658e-05 | 0.0017854 | -0.044173 | -0.67419 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 390 | 0.00011525 | 0.0015567 | 0.03723 | -0.074476 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1403 | 5.8767e-05 | 0.0016853 | 0.0040875 | -0.49943 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2623 | 0.00018025 | 0.0017187 | -0.08583 | -0.57468 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3565 | 0.00018353 | 0.0017292 | -0.12969 | -0.60509 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4834 | 0.00015785 | 0.0016972 | -0.057034 | -0.5364 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5863 | 0.00017566 | 0.0016765 | -0.03312 | -0.50149 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5764 | 0.00014247 | 0.0017158 | -0.078574 | -0.56016 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3956 | 0.00021393 | 0.0017006 | -0.10665 | -0.58364 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2403 | 0.00011218 | 0.0016176 | 0.032858 | -0.47359 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6557 | 3.2921e-05 | 0.0017715 |-0.00015066 | -0.74071 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16257 | 0.00034156 | 0.0018147 | -0.16519 | -0.84036 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4899 | 0.00023212 | 0.0018386 | -0.12325 | -0.82854 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2251 | 8.7232e-05 | 0.0017051 | -0.003049 | -0.5339 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13995 | 6.5134e-05 | 0.0018066 | 0.030674 | -0.83711 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33890 | 0.00010766 | 0.0018541 | -0.02755 | -0.90608 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 59725 | 9.3699e-05 | 0.0018582 | -0.042337 | -0.90788 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 89256 |-2.8815e-07 | 0.0018524 | 0.010838 | -0.88459 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 98696 |-2.4966e-05 | 0.0018709 | 0.022022 | -0.91911 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 102515 |-3.9474e-05 | 0.0018880 | 0.020263 | -0.96583 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 79735 | 9.0712e-05 | 0.0018741 | -0.058465 | -0.95537 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 40626 | 0.00015978 | 0.0018459 | -0.067256 | -0.90186 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 533943 | 6.374e-05 | 0.0018578 | -0.024802 | -0.904 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 533943 | 6.374e-05 | 0.0018578 | -0.024802 | -0.904 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 503679 | 5.525e-05 | 0.0018692 | -0.02085 | -0.9268 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30264 | 0.0001783 | 0.0016913 | -0.051894 | -0.53952 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1354 | 0.00011413 | 0.0018201 | 0.029627 | -0.75077 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29433 | 9.4773e-05 | 0.0018696 | -0.021154 | -0.90607 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11281 | 0.00013779 | 0.0017863 | -0.036817 | -0.76414 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4869 |-2.3032e-05 | 0.0018221 | -0.0098019 | -0.82087 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3442 | 0.00024295 | 0.0018046 | -0.094832 | -0.862 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14475 | 0.00038293 | 0.0018321 | -0.17131 | -0.87058 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 40417 | 0.00015449 | 0.0018780 | -0.065161 | -0.94559 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 76057 | 8.303e-05 | 0.0018887 | -0.035563 | -0.97373 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 95601 |-3.4018e-05 | 0.0018807 | 0.016686 | -0.95989 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 91766 | -3.402e-05 | 0.0018825 | 0.022851 | -0.93855 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83069 | 3.713e-06 | 0.0018533 | -0.0070562 | -0.89615 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 51915 | 0.00012924 | 0.0018394 | -0.046186 | -0.87094 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 327 |-5.4194e-05 | 0.0014960 | 0.015255 | -0.27119 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2382 | 0.00026385 | 0.0017463 | -0.11711 | -0.59643 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1281 | 5.2329e-05 | 0.0017142 | 0.072203 | -0.61327 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 907 | 4.1311e-05 | 0.0016201 | 0.014166 | -0.31367 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 537 | 0.00028353 | 0.0015553 | 0.0082447 | -0.51382 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1307 | 4.1857e-05 | 0.0016973 | 0.076761 | -0.53058 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2148 | 0.00016287 | 0.0016811 | -0.048701 | -0.49956 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3528 | 0.00019935 | 0.0017246 | -0.069243 | -0.62216 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5023 | 0.00014755 | 0.0016591 | -0.073045 | -0.48576 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5103 | 0.0002178 | 0.0017106 | -0.070314 | -0.57975 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4289 | 0.00024397 | 0.0016660 | -0.10049 | -0.48217 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3432 | 0.00014613 | 0.0017063 | -0.0077894 | -0.54632 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1681 | 7.641e-05 | 0.0017541 | 0.045201 | -0.64407 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31815 | 0.00010928 | 0.0018600 | -0.03067 | -0.88408 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12562 | 0.00012816 | 0.0017785 | -0.024674 | -0.74974 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5776 |-1.1547e-05 | 0.0017879 | -0.01008 | -0.74412 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3979 | 0.00024914 | 0.0017688 | -0.086847 | -0.80912 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15782 | 0.00035282 | 0.0018231 | -0.147 | -0.85576 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 42565 | 0.00015496 | 0.0018674 | -0.064682 | -0.92463 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79585 | 8.9119e-05 | 0.0018807 | -0.038465 | -0.95791 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 100624 |-2.2433e-05 | 0.0018678 | 0.0088116 | -0.93607 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 96869 |-1.5757e-05 | 0.0018717 | 0.013022 | -0.91768 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87358 | 1.8582e-05 | 0.0018432 | -0.015615 | -0.87571 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 55347 | 0.00013037 | 0.0018309 | -0.044373 | -0.85184 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1082345 | 5.7501e-05 | 0.0018603 | -0.022308 | -0.91137 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1082345 | 5.7501e-05 | 0.0018603 | -0.022308 | -0.91137 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1018443 | 4.9042e-05 | 0.0018722 | -0.0178 | -0.93515 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 63902 | 0.00016672 | 0.0016952 | -0.058308 | -0.54397 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1082345 | 3.1511 | 1.8138 | -0.0083453 | -1.1882 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1082345 | 0.025345 | 0.0052427 | -0.62577 | -0.43182 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 781619 | 0.00010922 | 0.0029242 | -0.044672 | -0.91363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 202 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 40600 | 0.00052902 | 0.0028302 | -0.25443 | -0.73994 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 762 |-0.00023332 | 0.0020880 | 0.20035 | 0.32396 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2237 |-0.00011561 | 0.0023319 | 0.19251 | -0.013155 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7046 | 6.5713e-05 | 0.0025586 | 0.022362 | -0.37966 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22437 | 0.0002886 | 0.0026982 | -0.098534 | -0.59091 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 88691 | 0.00029567 | 0.0028797 | -0.091513 | -0.84656 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 221490 | 4.0837e-05 | 0.0029699 | -0.0089176 | -0.97013 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 239389 |-7.5251e-06 | 0.0029618 | 0.0065109 | -0.96453 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158711 | 7.3293e-05 | 0.0029251 | -0.051516 | -0.91351 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54 | 0.00014789 | 0.0014049 | 1.3433 | 2.8064 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 202 |-4.5769e-05 | 0.0021476 | 0.098736 | 0.34159 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 40600 | 0.00052902 | 0.0028302 | -0.25443 | -0.73994 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 762 |-0.00023332 | 0.0020880 | 0.20035 | 0.32396 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2237 |-0.00011561 | 0.0023319 | 0.19251 | -0.013155 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7046 | 6.5713e-05 | 0.0025586 | 0.022362 | -0.37966 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22437 | 0.0002886 | 0.0026982 | -0.098534 | -0.59091 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 88691 | 0.00029567 | 0.0028797 | -0.091513 | -0.84656 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 221490 | 4.0837e-05 | 0.0029699 | -0.0089176 | -0.97013 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 239389 |-7.5251e-06 | 0.0029618 | 0.0065109 | -0.96453 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 158711 | 7.3293e-05 | 0.0029251 | -0.051516 | -0.91351 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 1600089 | 0.00011878 | 0.0029305 | -0.05182 | -0.9268 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 1600089 | 3.1356 | 1.8177 | 0.0063592 | -1.1898 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 1600089 | 0.042454 | 0.010042 | -0.81286 | -0.025085 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 818470 | 0.00012782 | 0.0029364 | -0.058576 | -0.93898 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 237 | 8.5735e-05 | 0.0023363 | -0.2849 | 0.29458 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46396 | 0.00027505 | 0.0028524 | -0.044513 | -0.82406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 895 | 0.00039617 | 0.0021836 | -0.43074 | 0.71702 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2191 | 0.00034423 | 0.0024615 | -0.24724 | -0.15863 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5372 | 0.00032455 | 0.0026011 | -0.12258 | -0.46873 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19485 | 0.00048756 | 0.0026811 | -0.31127 | -0.53085 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88814 | 0.00046626 | 0.0028868 | -0.22833 | -0.8373 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 229624 | 0.00014587 | 0.0029768 | -0.082989 | -0.98905 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250067 |-6.2693e-06 | 0.0029750 | -0.0018454 | -0.9852 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 175377 |-3.9367e-05 | 0.0029257 | 0.04519 | -0.9223 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 12 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 237 | 8.5735e-05 | 0.0023363 | -0.2849 | 0.29458 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 46396 | 0.00027505 | 0.0028524 | -0.044513 | -0.82406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 895 | 0.00039617 | 0.0021836 | -0.43074 | 0.71702 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2191 | 0.00034423 | 0.0024615 | -0.24724 | -0.15863 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5372 | 0.00032455 | 0.0026011 | -0.12258 | -0.46873 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 19485 | 0.00048756 | 0.0026811 | -0.31127 | -0.53085 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 88814 | 0.00046626 | 0.0028868 | -0.22833 | -0.8373 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 229624 | 0.00014587 | 0.0029768 | -0.082989 | -0.98905 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 250067 |-6.2693e-06 | 0.0029750 | -0.0018454 | -0.9852 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 175377 |-3.9367e-05 | 0.0029257 | 0.04519 | -0.9223 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 156552 | 4.0262e-05 | 0.0018577 | -0.0074481 | -0.91322 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 156552 | 4.0262e-05 | 0.0018577 | -0.0074481 | -0.91322 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 141311 | 3.2162e-05 | 0.0018753 | -0.0021929 | -0.94911 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15241 | 0.00010392 | 0.0017110 | -0.039327 | -0.57771 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3264 |-9.3044e-06 | 0.0017725 | 0.037177 | -0.75252 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5271 | 0.00017489 | 0.0018191 | -0.072202 | -0.83253 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2434 | 0.00021362 | 0.0018446 | -0.11213 | -0.87626 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1281 | 3.2073e-05 | 0.0017382 | -0.0169 | -0.62557 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7415 | 7.0073e-05 | 0.0018228 | 0.024121 | -0.88416 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13900 | -5.864e-05 | 0.0018447 | 0.073306 | -0.88939 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18384 |-5.3259e-05 | 0.0018629 | 0.039082 | -0.91027 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 21171 |-4.7356e-06 | 0.0018835 | 0.015717 | -0.95199 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23909 | 3.0659e-05 | 0.0019021 | -0.014945 | -0.99345 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23128 | 7.2261e-05 | 0.0019086 | -0.03181 | -1.0152 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12851 | 0.00012888 | 0.0018948 | -0.063262 | -0.99176 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8303 | 3.4794e-05 | 0.0018716 | -0.010184 | -0.9545 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 363 | 0.00017538 | 0.0017988 | -0.093195 | -0.62067 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 849 | 0.00012813 | 0.0017584 | -0.091481 | -0.68698 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 507 |-0.00012123 | 0.0018344 | 0.078655 | -0.7135 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 288 | 0.0001337 | 0.0015940 | 0.032019 | -0.17703 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 668 |-5.2456e-05 | 0.0016839 | 0.072193 | -0.53563 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1401 | 0.00022719 | 0.0017136 | -0.09346 | -0.58682 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1597 | 0.00014851 | 0.0017156 | -0.093765 | -0.62562 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1878 | 0.00012676 | 0.0017100 | -0.09006 | -0.56692 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2120 | 9.8869e-05 | 0.0016890 | 0.031916 | -0.52589 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2327 | 8.2553e-05 | 0.0017381 | -0.057436 | -0.56552 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1911 | 0.0001082 | 0.0017299 | -0.056353 | -0.67108 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1332 | 2.9106e-05 | 0.0015710 | 0.070269 | -0.37337 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3627 | 1.0702e-05 | 0.0017763 | 0.023435 | -0.74096 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6120 | 0.00016768 | 0.0018099 | -0.074267 | -0.81103 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2941 | 0.00014566 | 0.0018475 | -0.07294 | -0.85715 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1569 | 5.4333e-05 | 0.0017082 | -0.013215 | -0.53785 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8083 | 5.8608e-05 | 0.0018106 | 0.030279 | -0.85617 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15301 |-2.6493e-05 | 0.0018327 | 0.051565 | -0.86596 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19981 |-3.2141e-05 | 0.0018491 | 0.02331 | -0.88702 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23049 | 8.324e-06 | 0.0018674 | 0.0043041 | -0.92093 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26029 | 3.7152e-05 | 0.0018830 | -0.013763 | -0.956 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25455 | 7.3214e-05 | 0.0018934 | -0.033915 | -0.98059 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14762 | 0.00012578 | 0.0018710 | -0.06181 | -0.94924 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9635 | 3.3922e-05 | 0.0018287 | -0.0020361 | -0.88061 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 162160 | 5.4156e-05 | 0.0018479 | -0.0054358 | -0.88744 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 162160 | 5.4156e-05 | 0.0018479 | -0.0054358 | -0.88744 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 148187 | 4.532e-05 | 0.0018665 | -0.0018296 | -0.92402 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13973 | 0.00013257 | 0.0016722 | -0.01537 | -0.49833 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1035 |-3.2555e-05 | 0.0017899 | 0.096692 | -0.68107 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14856 |-6.0803e-05 | 0.0018378 | 0.085783 | -0.84668 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6623 | 0.00018472 | 0.0017617 | -0.032106 | -0.73959 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2359 |-1.4324e-05 | 0.0018092 | 0.0058019 | -0.78496 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1953 | 0.00019715 | 0.0017648 | -0.077649 | -0.76248 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4823 | 0.00014585 | 0.0018042 | -0.053829 | -0.79127 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8040 | 6.0169e-05 | 0.0018853 | -0.028299 | -0.9144 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13187 | 0.00028782 | 0.0018885 | -0.14956 | -0.95481 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26724 | 6.2803e-05 | 0.0018881 | -0.028133 | -0.97903 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26462 |-2.7764e-05 | 0.0018886 | 0.025193 | -0.97122 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 22904 | 2.8517e-05 | 0.0018671 | 0.0015585 | -0.92593 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19221 |-4.4017e-05 | 0.0018643 | 0.076434 | -0.90944 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 249 | 1.5069e-05 | 0.0014763 | 0.15835 | -0.19058 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1360 | 0.00024181 | 0.0017228 | -0.10364 | -0.58422 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 753 | 1.657e-05 | 0.0016953 | 0.19647 | -0.56511 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 442 |-4.9631e-05 | 0.0015763 | -0.020897 | -0.056451 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 360 | 0.00029085 | 0.0015300 | 0.071202 | -0.31922 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 820 |-2.5154e-06 | 0.0016537 | 0.16865 | -0.42828 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1138 | 0.00016126 | 0.0016983 | 0.0075673 | -0.55697 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1554 | 9.7178e-05 | 0.0016674 | -0.064026 | -0.55282 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1913 | 6.3181e-05 | 0.0016541 | -0.085249 | -0.47153 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1920 | 0.00014 | 0.0016927 | -0.022008 | -0.52266 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1817 | 0.00020941 | 0.0016661 | -0.10688 | -0.44451 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1647 | 0.00019555 | 0.0016812 | 0.030516 | -0.527 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1284 |-2.1163e-05 | 0.0017202 | 0.10158 | -0.567 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16216 |-3.0869e-05 | 0.0018290 | 0.064762 | -0.83089 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7376 | 0.0001666 | 0.0017554 | -0.0078911 | -0.72875 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2801 |-2.0621e-05 | 0.0017699 | 0.0046639 | -0.68238 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2313 | 0.00021379 | 0.0017258 | -0.065635 | -0.68736 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5643 | 0.00012128 | 0.0017810 | -0.018725 | -0.74628 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9178 | 7.5107e-05 | 0.0018592 | -0.028265 | -0.86641 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14741 | 0.00026383 | 0.0018632 | -0.13436 | -0.91476 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28637 | 6.283e-05 | 0.0018722 | -0.031022 | -0.94919 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28382 |-1.4021e-05 | 0.0018739 | 0.018359 | -0.94123 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24721 | 4.5307e-05 | 0.0018501 | -0.010852 | -0.89097 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20868 |-2.2392e-05 | 0.0018498 | 0.067345 | -0.88083 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 318712 | 4.7369e-05 | 0.0018527 | -0.0064856 | -0.90007 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 318712 | 4.7369e-05 | 0.0018527 | -0.0064856 | -0.90007 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 289498 | 3.8936e-05 | 0.0018708 | -0.0020571 | -0.93624 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 29214 | 0.0001178 | 0.0016923 | -0.028716 | -0.53927 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 318712 | 3.161 | 1.8139 | -0.016339 | -1.1887 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 318712 | 0.025577 | 0.0051232 | -0.66782 | -0.33428 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 135511 | 0.034027 | 0.011558 | -0.35828 | -1.0147 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41318 | 1.4810 | 0.10736 | -0.33018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30743 | 1.6973 | 0.18865 | -0.10934 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37734 | 1.6282 | -0.036043 | -0.33569 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3480 | 0.4073 | 0.24585 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.067105 | 1.8455 | -0.015785 | -0.303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40215 | 1.4839 | 0.19447 | -0.12471 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17981 | 1.6670 | -0.010306 | -0.5513 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28648 | 1.5501 | 0.27167 | -0.26379 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12105 | 1.5357 | 0.14197 | -0.38564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17712 | 1.5152 | 0.22871 | -0.39801 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75833 | 1.5768 | 0.12884 | -0.66308 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10676 | 2.0810 | -0.0045216 | -1.1646 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 2877803 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13 | 1.7408 | 0.23854 | -0.96125 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53833 | 1.3878 | 0.098272 | -0.64472 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.13243 | 1.1660 | 0.12502 | -1.1357 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081205 | 1.4199 | 0.32708 | -0.047563 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12211 | 1.3804 | 0.28196 | 0.010151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.151 | 1.5167 | 0.21176 | -0.28537 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.097959 | 1.5984 | 0.21382 | -0.25609 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.2125 | 1.6955 | 0.07441 | -0.42637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.14953 | 1.6531 | 0.17775 | -0.31344 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21622 | 1.6162 | 0.12514 | -0.26431 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24426 | 1.4701 | 0.20153 | -0.24954 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.2172 | 1.5568 | 0.18616 | -0.12109 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17333 | 1.5227 | 0.1307 | -0.15675 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27251 | 1.5535 | 0.1346 | -0.22579 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.087327 | 1.6890 | 0.15293 | -0.40734 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12677 | 1.6031 | 0.15388 | -0.21348 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19744 | 1.6076 | 0.081527 | -0.27385 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23898 | 1.6377 | 0.1299 | -0.16929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.28802 | 1.6101 | 0.072523 | -0.24966 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15279 | 1.5990 | 0.18923 | -0.15384 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24267 | 1.6690 | 0.063885 | -0.42752 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30034 | 1.7229 | 0.13633 | -0.58833 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32952 | 1.7875 | 0.078533 | -0.46536 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16463 | 1.6101 | 0.13797 | -0.14655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.079407 | 1.6266 | 0.19124 | -0.17206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24458 | 1.6741 | 0.11118 | -0.25565 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 436 | 0.31538 | 1.6426 | 0.26052 | -0.34039 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31509 | 1.7094 | 0.31732 | -0.27031 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.22916 | 1.6141 | 0.095209 | -0.21833 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20601 | 1.6559 | -0.038523 | -0.52501 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32129 | 1.6268 | 0.18477 | -0.41262 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.36252 | 1.5759 | -0.029698 | -0.31286 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25612 | 1.6275 | 0.294 | -0.19787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.29513 | 1.7014 | 0.17336 | -0.31575 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.38153 | 1.5021 | 0.13731 | -0.12473 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50369 | 1.5177 | 0.12608 | -0.85684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016389 | 1.7621 | 0.25059 | -0.3851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.678 | 1.8480 | -0.2102 | -0.14974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6903 | 0.16563 | -0.57044 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29828 | 1.7238 | 0.13038 | -0.38643 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.016154 | 1.4624 | 0.53577 | 0.37024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50467 | 1.6435 | 0.098456 | -0.66506 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.063043 | 1.4052 | -0.081295 | -0.71369 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.044872 | 1.4169 | 0.90768 | 0.21774 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.19375 | 1.5874 | 0.045251 | -0.61505 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98571 | 1.4867 | 0.039315 | -0.72143 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.2803 | 1.5870 | 0.65552 | -0.11744 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23516 | 1.5409 | -0.078991 | -0.23557 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 2877803 | 0.00098619 | 0.00018991 | 0.55857 | -0.86061 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 2877803 | 0.038792 | 0.0089175 | -0.54278 | -0.79271 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.925 | 1.7600 | 0.21659 | -0.60644 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.057143 | 1.5363 | -0.071927 | -0.58606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 2877803 | 0.05159 | 0.00033074 | 0.12922 | -1.0622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.02 | 1.5217 | -0.29073 | 0.35222 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45909 | 1.2501 | -0.066309 | -0.41464 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.56976 | 1.5518 | -0.057371 | -0.77686 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11 | 1.2729 | 0.34514 | -0.74248 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.71863 | 1.7070 | 0.16278 | -0.82427 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.3878 | 1.5584 | 0.14932 | -0.57613 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2342 | 1.8297 | 0.5602 | -0.8226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.3753 | 1.5523 | 0.064598 | -0.066046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15464 | 0.27447 | 1.5847 | 0.095544 | -0.15924 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.23511 | 1.3652 | -0.031567 | -0.36807 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29853 | 1.6154 | 0.1066 | -0.25882 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28255 | 1.6047 | 0.076961 | -0.28192 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.30069 | 1.6130 | 0.065404 | -0.28246 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26156 | 1.6248 | 0.081989 | -0.35172 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28964 | 1.6473 | 0.12511 | -0.33843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26705 | 1.6103 | 0.09812 | -0.31901 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.31033 | 1.6626 | 0.049798 | -0.30953 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29614 | 1.6542 | 0.088649 | -0.32947 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25272 | 1.6359 | 0.1096 | -0.30335 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23766 | 1.6614 | 0.14783 | -0.31108 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.3344 | 1.6383 | 0.11508 | -0.3307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5903 | 0.29993 | 1.6575 | 0.088459 | -0.24719 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.28795 | 1.6789 | 0.088046 | -0.38506 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26098 | 1.6886 | 0.12422 | -0.412 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.23998 | 1.6848 | 0.12775 | -0.38657 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30275 | 1.6410 | 0.10476 | -0.36505 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32653 | 1.6507 | 0.13519 | -0.34821 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30811 | 1.6285 | 0.11972 | -0.3836 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21085 | 1.5900 | 0.083565 | -0.29633 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31534 | 1.6431 | 0.12188 | -0.41643 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31421 | 1.6528 | 0.12927 | -0.38532 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.28526 | 1.6397 | 0.12213 | -0.26908 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33206 | 1.5715 | 0.062223 | -0.36637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32897 | 1.6544 | 0.080043 | -0.27454 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26947 | 1.6049 | 0.13182 | -0.29939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36387 | 1.5708 | 0.077225 | -0.41669 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26122 | 1.6854 | 0.17721 | -0.30516 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32357 | 1.6282 | 0.036525 | -0.13299 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28559 | 1.6111 | 0.1037 | -0.26372 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34259 | 1.6251 | 0.10898 | -0.36157 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.32035 | 1.5592 | 0.069068 | -0.19496 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.26123 | 1.6694 | 0.14009 | -0.22659 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21379 | 1.6272 | 0.1706 | -0.28312 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 992 | 0.3324 | 1.6111 | -0.057756 | -0.21544 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.22938 | 1.6687 | 0.10916 | -0.27104 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22185 | 1.7091 | 0.17999 | -0.52875 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.19983 | 1.5170 | 0.13404 | -0.37636 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19874 | 1.6443 | 0.076488 | -0.42495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14728 | 1.5883 | 0.25877 | -0.23728 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.18868 | 1.6214 | 0.23984 | -0.19698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.2125 | 1.6021 | 0.15738 | -0.37385 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.48282 | 1.5812 | -0.072567 | -0.052192 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27385 | 1.6242 | 0.14487 | -0.51659 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 302 | 0.27263 | 1.6009 | 0.016873 | -0.48211 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21248 | 1.5062 | 0.049603 | -0.30674 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.24693 | 1.7293 | 0.1675 | -0.77721 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029545 | 1.6037 | 0.0046675 | -0.57182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25657 | 1.7121 | 0.16775 | -0.32864 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13962 | 1.4408 | 0.102 | -0.57953 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13354 | 1.7212 | 0.37426 | -0.26768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48659 | 1.5250 | 0.28892 | -0.60067 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21813 | 1.5839 | 0.20529 | -0.18342 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.047778 | 1.3782 | 0.092849 | -0.2244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44572 | 1.4784 | 0.31489 | 0.0015237 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.042308 | 1.5818 | 0.69141 | 0.57976 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.002381 | 1.1558 | -0.24842 | -0.56544 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 2877803 | 0.051202 | 0.00053358 | -0.2177 | -0.91821 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.37857 | 1.3698 | 0.38363 | -1.1311 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.385 | 1.6138 | -0.028016 | -0.46143 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.1569 | 1.0099 | -0.18633 | -0.68982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22309 | 1.5774 | 0.21111 | -0.26673 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10559 | 1.6422 | 0.04963 | -0.11633 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.33058 | 1.7793 | 0.057653 | -0.54761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.037209 | 1.7081 | 0.18162 | -0.46141 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27818 | 1.8535 | 0.30923 | -0.36171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24664 | 1.6986 | -0.032905 | -0.40972 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10745 | 1.5820 | 0.05933 | -0.39239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21703 | 1.7376 | 0.049961 | -0.58861 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31373 | 1.5650 | -0.04847 | -0.24301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38142 | 1.5953 | -0.061869 | -0.50877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57569 | 1.7047 | 0.17549 | -0.40578 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.33378 | 1.6118 | 0.13909 | -0.41813 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15341 | 1.6401 | -0.012775 | -0.042744 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 275 | 0.61388 | 1.7495 | -0.0012931 | -0.14629 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35843 | 1.7844 | -0.081385 | -0.52355 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36479 | 1.6274 | -0.13257 | -0.3575 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72192 | 1.5941 | 0.073747 | -0.60939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25769 | 1.5140 | -0.5321 | -0.89062 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.056504 | 1.5937 | 0.13897 | -0.79723 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058182 | 1.6749 | 0.14326 | -0.17216 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.34825 | 1.5665 | 0.31452 | 0.17679 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.035714 | 1.6341 | -0.058004 | -0.20603 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72593 | 1.9942 | 0.35142 | -0.89665 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1744 | 1.2095 | -0.080385 | -0.65607 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45313 | 1.2223 | 0.29492 | -1.0047 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.465 | 1.3251 | 0.17729 | -0.20539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53158 | 1.4861 | 0.070757 | -0.66558 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55 | 1.3184 | 0.032896 | 0.4336 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33644 | 1.2040 | 0.40019 | -0.36847 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 1091725 | 0.0010952 | 0.00027010 | 0.195 | -1.5634 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 1091725 | 0.032548 | 0.010422 | -0.17883 | -0.85566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 91781 | 0.00043524 | 4.3836e-06 | -0.27743 | -0.98597 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 91781 | 0.020716 | 0.0049050 | -0.33739 | -0.8846 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.098077 | 1.3689 | 0.19061 | -0.063405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.066421 | 1.3950 | 0.17771 | 0.11133 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.053333 | 1.4673 | -0.40844 | -0.96634 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3034 | 0.11232 | 0.012411 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.32308 | 1.2711 | 0.10516 | -0.54783 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.0625 | 1.0741 | -0.31341 | 0.84992 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.56333 | 0.84606 | -0.79603 | -0.38777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.46154 | 1.1325 | 0.55196 | -0.54293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1097 | -0.78644 | 1.3517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 1082345 | 0.00047336 | 1.3691e-05 | 0.045715 | -1.0216 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 1082345 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.078169 | 1.3504 | -0.33876 | 0.1486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.86055 | 0.098195 | -0.94628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17333 | 1.2709 | 0.28927 | -0.39808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11824 | 1.2263 | -0.074943 | 0.061187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13588 | 1.3971 | -0.11807 | -0.75404 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.254 | 1.3425 | -0.35394 | -0.078737 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2603 | 0.1399 | -0.71431 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13571 | 1.2415 | 0.36767 | -0.63797 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.064851 | 1.2279 | 0.088929 | -0.30403 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.18529 | 1.1494 | 0.13401 | -0.53628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.092308 | 1.0187 | 0.31699 | -0.73467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.084426 | 1.3252 | 0.51954 | 0.87263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.04 | 1.2330 | 0.057569 | -0.2439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.39783 | 1.4803 | 0.94114 | 0.23432 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.13587 | 1.3833 | -0.53241 | 0.96334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18 | 1.3731 | 0.19521 | -0.21415 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.066 | 1.0920 | 0.69627 | 0.247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.146 | 1.3875 | -1.0564 | 0.62675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31667 | 1.1355 | 0.2314 | -0.79893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30424 | 1.3310 | -0.11951 | -0.39965 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27 | 1.3809 | -0.16231 | -0.53953 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12255 | 1.3303 | 0.64121 | 0.431 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.12013 | 1.2519 | 0.50325 | 0.010291 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16296 | 1.4746 | 0.18945 | 0.080301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.1583 | 1.4099 | 0.090684 | -0.13574 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.043285 | 1.3415 | -0.11404 | -0.39188 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031195 | 1.3910 | 0.32299 | 0.12571 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.067976 | 1.3815 | -0.056668 | 0.33162 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.033631 | 1.4023 | 0.1201 | 0.052583 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.013431 | 1.4333 | 0.07102 | 0.02219 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.096045 | 1.4010 | 0.4103 | 0.48988 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.18845 | 1.2918 | 0.26891 | 0.45681 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28454 | 1.4813 | -0.049593 | -0.3291 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24619 | 1.3830 | 0.27985 | 0.24178 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 228 | 0.13098 | 1.5385 | 0.0026032 | 0.45702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.080042 | 1.2906 | 0.33273 | 0.1123 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.045993 | 1.4714 | 0.3212 | 0.16629 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14486 | 1.4139 | 0.081742 | -0.0078438 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23714 | 1.3322 | 0.36744 | 0.049163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.093597 | 1.4199 | 0.26226 | 0.22837 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.11935 | 1.4672 | 0.2709 | -0.26048 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.11253 | 1.3110 | -0.082878 | -0.050775 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13248 | 1.1992 | 0.23613 | -0.21624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.047403 | 1.5272 | 0.047219 | 0.7232 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05 | 1.2739 | 0.32103 | -0.26576 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.012222 | 1.3595 | 0.30983 | -0.20547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23265 | 1.4252 | 0.30948 | 0.63851 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 259 | 0.20323 | 1.4405 | 0.15323 | -0.0083506 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.01359 | 1.4601 | 0.44249 | -0.18912 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.22003 | 1.3181 | 0.25946 | 0.13451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.049174 | 1.1997 | -0.030875 | 0.043402 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.10102 | 1.1639 | 0.33713 | -0.29824 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.044286 | 1.3858 | 0.26777 | -0.085701 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22938 | 1.3053 | 0.12008 | 0.048064 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10576 | 1.2689 | -0.051315 | -0.2772 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.38043 | 1.1943 | 0.19918 | -0.05729 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.071505 | 1.3911 | -0.35581 | 0.63022 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.091964 | 1.4976 | 0.43844 | 0.85116 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25238 | 1.1226 | 0.67472 | -0.21564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.27432 | 1.4051 | 0.14743 | 0.1787 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.3123 | 1.2098 | 0.012558 | -0.32212 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0071429 | 1.3715 | -0.27499 | 0.2053 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.22547 | 1.2701 | 0.22192 | 0.17615 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.018116 | 1.4544 | -0.12826 | -0.56274 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.7577e-16 | 1.4996 | 0.19546 | -0.87122 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.014957 | 1.3914 | 0.28297 | -0.14214 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.15 | 1.0117 | 0.097882 | -0.47268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15357 | 1.3018 | -0.11487 | -0.51942 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74375 | 1.2609 | -0.42017 | 0.012395 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16618 | 1.3600 | 0.2625 | -0.14275 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.29375 | 1.4096 | -0.27559 | -0.27764 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.081387 | 1.1796 | 0.13493 | -0.43711 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.041304 | 1.5773 | 0.33072 | -0.24887 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.14684 | 1.5697 | 0.81769 | 0.46294 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.026531 | 1.2628 | -0.45503 | 0.54924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.085 | 1.3336 | -0.2324 | 0.56343 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10276 | 1.2456 | -0.15289 | 0.043317 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 1082342 | 0.0004723 | 3.3558e-05 | 1.1783 | 0.34624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 1082342 | 0.023633 | 0.0036322 | -0.079242 | -1.1036 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13738 | 0.92271 | -0.054151 | -0.14809 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.12385 | 1.6771 | -0.69408 | -0.21999 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.41957 | 1.8145 | 0.07273 | -1.3529 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.07 | 0.75912 | 0.94276 | 0.88948 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5017 | 1.5156 | -0.085468 | -1.0179 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13571 | 1.3434 | 0.36231 | -0.12119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.162 | 1.3863 | 0.47546 | 9.6117e-05 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21935 | 1.3721 | -0.56857 | 0.76916 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67609 | 1.4932 | -0.0199 | -0.074268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14333 | 0.81932 | 0.1472 | -0.60394 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 1082345 | 0.00051385 | 2.5226e-05 | -0.73361 | -0.55506 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 1082345 | 0.029682 | 0.00015632 | -0.094841 | -0.84081 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20068 | 1.3547 | 0.35994 | 0.11978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.042798 | 1.4990 | 0.14432 | -0.042435 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 129 | 0.1198 | 1.4194 | 0.018326 | 1.5257 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.12057 | 1.4303 | 0.2978 | -0.12303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27461 | 1.6655 | 0.22876 | 0.097924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.037313 | 1.1713 | 0.015391 | -0.23132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11792 | 1.3058 | 0.17174 | -0.63151 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.038462 | 1.6043 | 0.25204 | -0.14831 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.013333 | 1.6074 | -0.32635 | -0.21499 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.2693 | 1.7190 | 0.065768 | 0.31218 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.1125 | 1.4241 | 0.70139 | 2.0088 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36667 | 1.4845 | -0.19953 | 0.78113 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.20833 | 1.7905 | -0.029422 | -0.41083 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2349 | 0.37803 | 0.35114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.1453 | 1.3683 | -0.31812 | 0.084819 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31364 | 1.2629 | -0.36159 | 0.2148 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.26233 | 1.5894 | 0.091628 | -0.48301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.013014 | 1.2339 | -0.2356 | 0.33475 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28333 | 1.1882 | 0.05981 | 0.29472 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.010606 | 1.2742 | 0.48529 | 0.045969 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18385 | 1.5397 | -0.47382 | -0.11537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.025676 | 1.2466 | 0.24787 | 0.34582 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0045455 | 1.1309 | 0.16329 | -0.94287 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0014563 | 1.7224 | -0.048944 | -0.2254 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17105 | 1.3196 | -0.072466 | 0.30073 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.096847 | 1.4338 | -0.55336 | 1.3783 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.076667 | 0.99273 | 0.65818 | 0.91134 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.024783 | 1.5424 | 0.10427 | 0.59952 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.25135 | 1.2352 | 0.23627 | 0.72461 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.1 | 1.4634 | 0.32477 | 1.0709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.028333 | 1.3536 | -0.083373 | -0.5263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19894 | 1.5174 | -0.39579 | -0.96604 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61 | 1.1473 | 0.74209 | -0.55037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.087931 | 1.2689 | -0.41615 | 0.28704 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.040361 | 1.3187 | 0.40522 | -0.021211 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.14815 | 1.2660 | 0.25293 | 1.1864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.057216 | 1.4816 | 0.094517 | -0.36599 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21792 | 1.3412 | 0.39626 | 0.20979 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.01 | 1.5868 | -0.018956 | -0.50396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25462 | 1.5947 | 0.029406 | -0.62303 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.21032 | 1.2649 | 0.022558 | -0.49917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43333 | 1.3700 | 0.29621 | -0.85938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.41057 | 1.8981 | 0.25899 | 0.36934 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.017105 | 1.3532 | 0.04767 | 0.049497 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088961 | 1.1814 | 0.063416 | -0.44385 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.015445 | 1.4257 | -0.31871 | 0.49762 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.13475 | 1.3333 | 0.92491 | 1.6881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.14216 | 1.3998 | -0.11703 | -0.4019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59857 | 1.1269 | 0.15378 | -0.22203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13529 | 1.3580 | 0.25848 | -0.32116 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.012774 | 1.2677 | -0.054299 | -0.53889 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0081818 | 1.3261 | 0.1673 | -0.55588 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.055882 | 1.0079 | -0.0034036 | -1.0625 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21757 | 1.1470 | 0.86645 | 2.1046 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10531 | 1.4388 | 0.15413 | 0.40703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.036188 | 1.3828 | 0.10974 | 0.23023 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.034756 | 1.3412 | 0.027712 | 0.53077 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.015539 | 1.3577 | 0.077384 | 0.54622 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0089612 | 1.3693 | -0.075266 | 0.42314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.027499 | 1.3764 | 0.038737 | 0.49255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.025367 | 1.3394 | 0.084539 | 0.40881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.057239 | 1.3359 | 0.10537 | 0.47475 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2975 | -0.016915 | 1.3481 | 0.16015 | 0.54307 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.04482 | 1.4570 | 0.085169 | 0.53363 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3540 | 0.016585 | 1.3573 | 0.12988 | 0.63869 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.032383 | 1.3725 | 0.16427 | 0.3845 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.069918 | 1.3429 | 0.059559 | 0.76348 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.0019191 | 1.4040 | 0.086911 | 0.46091 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.014484 | 1.3570 | 0.10555 | 0.33875 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.080612 | 1.3338 | 0.12869 | 0.20065 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.056605 | 1.3931 | 0.047085 | 0.45797 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.094606 | 1.4167 | 0.16199 | 0.26308 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.030756 | 1.4237 | 0.23301 | 0.36752 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1481 | 0.015536 | 1.3484 | 0.065054 | 0.29617 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1292 | -0.037381 | 1.3610 | 0.14181 | 0.42595 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.046307 | 1.2972 | 0.030253 | 0.02476 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.030744 | 1.4510 | 0.1573 | 0.34427 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.046558 | 1.4457 | 0.062259 | 0.56294 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.019663 | 1.3220 | 0.1836 | 0.1628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1371 | 0.047958 | 1.3265 | 0.075894 | 0.16819 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.014928 | 1.4168 | -0.015973 | 0.13767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.011118 | 1.3519 | 0.22883 | 0.18867 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 711 | 0.074326 | 1.3442 | 0.099686 | -0.11658 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 590 | 0.060636 | 1.4495 | 0.046285 | 0.82969 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.00166 | 1.3980 | 0.11841 | 0.35666 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.11236 | 1.3438 | -0.029507 | 0.34753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.11015 | 1.5629 | -0.059753 | 0.097142 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.047266 | 1.5464 | 0.013839 | 0.27641 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027833 | 1.5440 | 0.06884 | 0.74402 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.022181 | 1.4306 | 0.055496 | 0.45813 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04775 | 1.3882 | -0.095383 | 0.48715 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17928 | 1.4650 | 0.072985 | 1.1121 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.053537 | 1.3741 | 0.05704 | -0.059099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.029661 | 1.2552 | 0.11682 | -0.37645 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11479 | 1.3668 | 0.30523 | 0.5928 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045915 | 1.2984 | 0.068741 | 0.17203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3836 | 0.0071098 | 0.089119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.073944 | 1.5792 | 0.026818 | 0.9803 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.030672 | 1.3369 | 0.070392 | -0.10345 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15859 | 1.2771 | -0.092534 | 0.63111 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.2609 | 1.2659 | 0.31115 | 0.021467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.28123 | 1.4045 | 0.36065 | 0.094675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.0089499 | 1.5129 | 0.32941 | 0.24157 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19631 | 1.4575 | 0.26035 | 0.28839 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15636 | 1.2680 | 0.025215 | -0.32562 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10623 | 1.2418 | 0.13371 | 0.34276 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.087462 | 1.3345 | 0.1685 | 1.0221 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12754 | 1.3252 | 0.11416 | 0.12004 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11326 | 1.2895 | 0.24459 | 0.014755 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.023198 | 1.2941 | -0.076063 | 0.10556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.051429 | 1.4407 | -0.31043 | 0.49396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039697 | 1.2172 | 0.21431 | -0.1505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.1221 | 1.3205 | 0.2823 | 0.48725 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.094737 | 1.2816 | 0.075398 | 0.25919 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050714 | 1.2236 | -0.26439 | -0.22348 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035971 | 1.4123 | 0.17449 | -0.31183 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.24967 | 1.2302 | 0.33426 | 0.034172 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.025519 | 1.4932 | 0.072797 | -0.15014 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.13018 | 1.3435 | 0.13134 | 0.4674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10916 | 1.1661 | 0.0096662 | 0.21648 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.032581 | 1.2575 | -0.06382 | 0.37695 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.058392 | 1.5020 | -0.0051542 | 0.40271 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16632 | 1.4813 | 0.38367 | 0.39931 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 1082345 | 0.00045385 | 9.0098e-06 | 0.44668 | -0.97768 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 1082345 | 0.029503 | 0.00023685 | 0.20525 | -1.1256 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0115 | 0.21819 | 0.30456 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.085938 | 1.4079 | 0.058135 | -0.048441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3401 | 1.1926 | 1.8734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28696 | 1.1981 | 0.50588 | -0.025306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49643 | 1.3973 | 0.34265 | -0.16583 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.38529 | 1.4824 | 0.12517 | 0.14956 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.025 | 1.3447 | 0.46618 | 0.071996 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.2537 | 1.3409 | -0.32969 | -0.293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.17105 | 1.1496 | -0.31826 | -0.17285 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.033333 | 1.4721 | -0.22636 | -0.91237 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.12813 | 1.9108 | -0.41373 | -0.1732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.09 | 0.91400 | -0.36305 | -0.46276 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32273 | 1.5571 | 0.35875 | -0.92905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.26957 | 1.3024 | 0.64208 | 1.694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.35192 | 1.5003 | 0.028618 | -0.46428 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.098485 | 0.91158 | -0.77617 | 0.4685 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.33696 | 1.1947 | -0.50391 | -0.16163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25314 | 1.4446 | 0.048112 | 0.18938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.23 | 1.5833 | -0.49556 | -0.35038 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.87 | 1.7936 | -0.049495 | -0.44914 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32209 | 1.9550 | -0.053943 | -0.83379 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.24444 | 1.3786 | -0.17457 | -0.94174 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15714 | 1.7710 | -0.59872 | -0.56826 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95606 | 1.6668 | -0.060134 | -0.26099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58714 | 1.2060 | -0.20395 | -0.96808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46197 | 1.7645 | 0.043521 | -0.55224 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.46895 | 1.5525 | -0.38356 | -0.4059 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41818 | 1.1479 | 0.40371 | -0.98508 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.60333 | 1.4037 | -1.3986 | 2.0433 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.02973 | 1.5677 | 0.016939 | -0.40237 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16818 | 1.5618 | 0.19681 | -0.28932 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.35526 | 1.2996 | 0.1191 | -0.083424 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19691 | 1.3650 | 0.53361 | 0.069819 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0079 | 1.2322 | 0.025035 | -0.3778 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.014706 | 1.4296 | -0.40421 | -0.23914 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.057692 | 1.4549 | 0.34932 | 0.70586 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49894 | 1.3979 | 0.33595 | -0.38313 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11901 | 1.2339 | 0.50366 | 0.43954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.16875 | 1.5068 | 0.031166 | -0.37222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.0047619 | 2.1314 | -0.023749 | -0.3842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.089024 | 2.0060 | 0.41791 | -0.81188 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.26667 | 1.3625 | 0.16997 | -0.025204 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.24815 | 1.3367 | 0.41075 | -0.45321 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.135 | 1.1042 | 0.92148 | 0.47301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21462 | 1.1414 | 0.16336 | -0.44131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 400505 | 0.00049567 | 7.0837e-05 | 0.65461 | -1.2874 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 400505 | 0.02083 | 0.0058105 | -0.17893 | -1.2846 | +RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270136 |-0.00043682 | 0.83190 |-0.00064354 | -1.1858 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270136 |-0.00043682 | 0.83190 |-0.00064354 | -1.1858 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270136 | -0.022647 | 0.80955 | 0.040117 | -1.0687 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270136 | -0.0010217 | 0.83205 | 0.00053239 | -1.1888 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135328 | 0.7052 | 0.29969 | 0.30824 | -0.02156 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135328 | -0.67011 | 0.32104 | 0.022869 | 0.40496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135328 | -0.045877 | 0.18532 | 0.055016 | 2.5372 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.52017 | 17.581 | 0.019731 | 4.5236 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | -0.42766 | 18.120 | -0.021898 | 4.1548 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135328 | 6.5451 | 332.04 | 0.10286 | -1.1575 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | -0.95267 | 77.551 | -0.046062 | 1.7666 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1.5948 | 79.694 | -0.11551 | 1.5809 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135328 | 1502.5 | 331.87 | -0.099792 | -1.1612 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135328 | -0.0016475 | 0.047477 | 0.0070999 | 0.27395 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | -1.551 | 78.478 | -0.052308 | 1.5602 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1.0295 | 81.412 | -0.13133 | 1.4919 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135328 | 1509.4 | 13.246 | 10.874 | 184.58 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135328 |-0.00096642 | 0.047455 | 0.0034408 | 0.27546 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134808 | 0.62914 | 0.28039 | 0.70809 | 5.2261 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134808 | -0.5797 | 0.31890 | 0.74563 | 5.5267 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134808 | -0.047159 | 0.19013 | -0.48348 | 10.297 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | -0.54232 | 17.311 | 0.058504 | 4.5157 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | -0.43613 | 17.797 | -0.010206 | 4.0935 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134808 | 7.2265 | 331.18 | 0.098209 | -1.1504 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 7.6898 | 76.449 | -0.11296 | 1.8563 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 1.1817 | 78.354 | -0.057336 | 1.5678 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134808 | 1502.1 | 330.97 | -0.096034 | -1.1536 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134808 | 0.0050108 | 0.046403 | -0.091179 | 0.20111 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134808 | 0.0050108 | 0.046403 | -0.091179 | 0.20111 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 7.214 | 77.623 | -0.14724 | 1.7775 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 0.87205 | 79.863 | -0.019336 | 1.5032 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134808 | 1509.7 | 14.404 | 9.9841 | 148.89 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134808 | 0.0055875 | 0.046403 | -0.091912 | 0.1973 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134808 | 0.0055875 | 0.046403 | -0.091912 | 0.1973 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.3706 | 10.454 | 0.18778 | -0.46217 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 30.894 | 12.005 | 0.021809 | -0.18776 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 26.906 | 11.008 | -0.29225 | -0.32276 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 5.2324 | 12.275 | 0.35719 | -0.3531 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 22.275 | 11.002 | -0.15198 | -1.0906 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 8.6818 | 12.826 | 1.3305 | 1.1858 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.109 | 11.465 | -0.0059229 | -1.0031 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6063 | 51.369 | 11.549 | -0.1748 | -0.12799 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 5.3771 | 11.367 | 0.087575 | -0.13552 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6226 | 33.571 | 10.648 | 0.21791 | -0.24342 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 23.254 | 10.511 | -0.17326 | -0.30966 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 8.375 | 7.5901 | -0.20473 | -1.4168 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 28.833 | 8.2057 | 0.4506 | -1.3243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2708 | -43.422 | 24.103 | -0.93087 | -1.1264 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2708 | -56.38 | 1.2610 | 0.28928 | 0.096434 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2708 | 0.012371 | 1.1821 | -0.055488 | 0.034441 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2708 | -0.019572 | 1.1545 | 0.019922 | -0.049425 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 906 | 0.28968 | 0.28820 | 5.5399 | 47.432 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 906 | 0.014874 | 0.28758 | -2.0195 | 23.379 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 906 | -0.076204 | 0.28303 | -3.928 | 45.995 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | -1.2465 | 30.286 | -0.026885 | 0.091613 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | -0.53481 | 15.238 | -0.23234 | 3.979 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 906 | 20.789 | 540.50 | -0.017416 | -1.1839 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | -237.49 | 333.92 | 0.93684 | 2.0748 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | 5.4255 | 299.65 | 0.08249 | 1.6471 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 906 | 10421 | 540.21 | 0.02786 | -1.1635 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 906 | -0.044905 | 0.034118 | 0.78414 | 1.2339 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 906 | -0.044905 | 0.034118 | 0.78414 | 1.2339 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | -238.17 | 334.17 | 0.96817 | 2.0401 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | 4.5356 | 298.82 | 0.056254 | 1.4399 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 906 | 10442 | 39.989 | 0.45086 | 0.60443 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 906 | -0.04497 | 0.034154 | 0.78272 | 1.2167 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 906 | -0.04497 | 0.034154 | 0.78272 | 1.2167 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1775 | 0.30703 | 0.30450 | 7.0805 | 72.896 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1775 | 0.03488 | 0.27373 | 2.0773 | 25.334 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1775 | -0.063589 | 0.32894 | 1.9076 | 63.837 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | -0.85485 | 33.524 | -0.020869 | -0.074286 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | 0.15371 | 14.389 | -0.20275 | 3.6882 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1775 | -13.45 | 549.64 | 0.041572 | -1.165 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | 348.7 | 242.65 | -0.086446 | 4.2584 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | -1.7831 | 283.34 | -0.10687 | 1.5896 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1775 | 10460 | 550.97 | -0.024429 | -1.1524 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1775 | 0.056042 | 0.025357 | -0.11905 | 2.2635 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1775 | 0.056042 | 0.025357 | -0.11905 | 2.2635 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | 347.35 | 237.56 | -0.19112 | 4.3033 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | -1.3373 | 282.97 | -0.13564 | 1.5559 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1775 | 10446 | 38.682 | 0.76646 | 1.0954 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1775 | 0.056006 | 0.025275 | -0.12164 | 2.2884 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1775 | 0.056006 | 0.025275 | -0.12164 | 2.2884 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 8.92 | 11.846 | 1.163 | 0.6526 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 1.4515 | 0.74259 | 2.2069 | 6.9146 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 237 | 35.171 | 4.2348 | -1.0431 | 2.5855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.0333 | 6.2226 | 0.061671 | 0.15799 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 88 | 1.4545 | 0.83814 | 2.4596 | 8.2353 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 88 | 31.432 | 3.9852 | -0.61442 | 1.0215 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 6.9762 | 7.3654 | 0.56063 | 2.0427 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 33.5 | 5.5136 | 0.039376 | -0.57921 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3142 | 30.339 | 7.3093 | -0.41013 | 1.0984 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3142 | 4.7931 | 6.5186 | 0.26917 | 0.91384 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1413 | 1.5287 | 0.82773 | 1.7806 | 3.3624 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1413 | 34.141 | 3.7525 | -0.96046 | 3.2827 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.3571 | 6.7340 | -0.085182 | -0.58908 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 21 | 1.1905 | 0.49943 | 2.6229 | 5.8815 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 21 | 29.976 | 2.8220 | 0.5018 | 1.232 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 35.857 | 25.579 | 0.13257 | -1.3584 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 61.412 | 12.317 | -0.2264 | -1.3816 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 50.391 | 18.951 | -0.2449 | -1.1133 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 60.429 | 12.146 | -0.22753 | -1.3605 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 59.706 | 12.007 | -0.2186 | -1.3246 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.132 | 21.794 | 0.097609 | -1.0388 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 25.099 | 13.887 | -0.13475 | -1.0541 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4850 | 54.759 | 2.5395 | 0.90644 | 1.7071 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4848 | 35.54 | 9.5033 | 0.089087 | -1.0281 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4850 | 53.875 | 2.3968 | 0.91144 | 2.0885 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4850 | 53.222 | 2.3482 | 0.8132 | 2.1324 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 24.825 | 16.068 | 0.074283 | -1.3375 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 498 | 242.25 | 187.82 | 0.21848 | -1.3661 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 596.99 | 21.400 | -8.9287 | 110.85 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 361.92 | 134.95 | -0.22439 | -1.0797 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 586.2 | 21.542 | -8.2536 | 99.223 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 578.2 | 22.742 | -6.6762 | 74.255 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.73 | 161.34 | 0.19474 | -0.96749 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 455 | 152.59 | 90.414 | -0.10572 | -1.1156 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4877 | 344.82 | 16.616 | 1.08 | 2.8946 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4877 | 224.96 | 59.272 | 0.092336 | -1.0175 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4877 | 339.42 | 15.762 | 1.0858 | 3.2959 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4877 | 335.22 | 15.517 | 0.98787 | 3.3105 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1873 | 150.12 | 103.31 | 0.12295 | -1.351 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2839 | 1905.9 | 94.236 | 0.55702 | 1.6619 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 455 | 25.685 | 18.279 | 0.1479 | -1.298 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8921 | 58.823 | 3.9249 | -1.4481 | 9.5548 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8921 | 35.249 | 13.806 | -0.14222 | -1.0165 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8921 | 57.749 | 3.8823 | -1.4227 | 9.2875 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8921 | 56.949 | 3.9110 | -1.3157 | 8.386 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.716 | 15.763 | 0.23506 | -0.84233 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 434 | 16.982 | 9.5657 | -0.070735 | -1.043 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4850 | 35.952 | 4.8556 | -1.3701 | 3.5827 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4848 | 23.587 | 6.9270 | 0.055493 | -0.7314 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4850 | 35.374 | 4.7647 | -1.4167 | 3.7388 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4850 | 34.949 | 4.7004 | -1.4382 | 3.8056 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1770 | 16.728 | 10.882 | 0.10272 | -1.2858 | +RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich1/nHitsPerChanID | "Rich1 # hits per channel ID (total nHits>0)" | 3038860 | 1.1185 | 0.71905 | 16.292 | 392.79 | + | /RICH/RichMCHits/Rich1/nSignalHitsPerChanID | "Rich1 # signal hits per channel ID (tota..." | 3038860 | 0.89952 | 0.55517 | 0.52015 | 3.1577 | + | /RICH/RichMCHits/Rich2/nDigitsPerChanID | "Rich2 # digitised hits per channel ID (t..." | 2107884 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich2/nHitsPerChanID | "Rich2 # hits per channel ID (total nHits>0)" | 2107884 | 1.0905 | 1.0585 | 14.691 | 279.46 | + | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28855 | -0.014978 | 0.22561 | 0.17105 | -0.27619 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 676243 | -0.010064 | 0.23947 | -0.029838 | 0.07604 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 845024 | -0.0095073 | 0.29183 | -0.10305 | 0.84516 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 212606 | -0.012299 | 0.22855 | -2.9707 | 263.75 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29119 | -0.0072643 | 7.5216 | 0.82834 | 0.52101 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 386919 | -0.057699 | 7.0068 | 0.72084 | 1.2634 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 461281 | -0.37658 | 8.1936 | -0.090872 | 2.502 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 116245 | 0.0033872 | 6.9051 | 0.93573 | 1.16 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074977 | 0.057592 | 1.1633 | 1.3334 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062865 | 0.048315 | 1.802 | 4.0255 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 1745733 | 1.2074 | 0.82314 | 10.482 | 199.91 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 1509488 | -3.2045 | 253.90 | -0.025906 | -0.14044 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 1509488 | -1362.1 | 73.355 | -0.71394 | -0.14702 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 893 | 1001.4 | 232.83 | -0.44644 | -0.23243 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 893 | 3403.1 | 1485.8 | 0.26965 | -0.39534 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 3038860 | -5.2725 | 253.71 | -0.014686 | -0.14522 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 3038860 | 0.28001 | 263.95 | -0.0094217 | -0.72254 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 1529372 | -7.3058 | 254.15 | -0.003478 | -0.14002 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 1529372 | 1360.8 | 73.073 | 0.73306 | -0.10629 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1039366 | 3897 | 85.560 | -0.059328 | -0.97114 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1039366 | 8.5165 | 250.90 |-0.00017712 | 0.33918 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1068518 | -3900.2 | 85.860 | 0.088552 | -0.97161 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1068518 | 8.6563 | 251.07 | -0.0036305 | 0.35295 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 893 | 788.21 | 151.97 | -0.85772 | 0.39121 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 893 | 2360.6 | 952.66 | 0.17043 | -0.55956 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 490435 | 2.9822 | 2.4337 | 2.4357 | 10.827 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 213433 | 3.0234 | 3.1363 | 3.1555 | 15.245 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 703868 | 2.9947 | 2.6665 | 2.8528 | 14.318 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 2107884 | -7.5365 | 449.70 | 0.021231 | -1.4678 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 2877803 | 0.051207 | 0.00051420 | -0.22495 | -1.1255 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 2877803 | 0.050742 | 0.0054732 | -0.12948 | -0.99083 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 2877803 | 0.00011682 | 0.0029522 | -0.049658 | -0.95611 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 774320 | 0.00010698 | 0.0029538 | -0.038599 | -0.96398 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 719236 | 0.00013337 | 0.0029606 | -0.065954 | -0.97006 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 719069 | 0.00011098 | 0.0029446 | -0.043704 | -0.94251 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 665178 | 0.00011676 | 0.0029495 | -0.051399 | -0.9458 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1082345 | 0.029497 | 0.00023201 | 0.13781 | -1.0807 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1082345 | 0.028124 | 0.0040812 | -0.22188 | -0.99366 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1082345 | 5.7506e-05 | 0.0018603 | -0.022292 | -0.91122 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 285414 | 4.881e-05 | 0.0018596 | -0.021198 | -0.91183 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 264747 | 5.8663e-05 | 0.0018591 | -0.022113 | -0.9092 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 262832 | 5.6332e-05 | 0.0018629 | -0.019229 | -0.91986 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 269352 | 6.6772e-05 | 0.0018597 | -0.026632 | -0.90409 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8921 | 974.9 | 33.294 | 12.935 | 177.91 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8921 | 2045.7 | 14.728 | 1.2481 | 3.2567 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8921 | 1075.2 | 38.651 | -8.8448 | 109.4 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4877 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4877 | 11382 | 86.529 | 0.90199 | 2.1393 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4877 | 1888.9 | 91.062 | 1.0738 | 2.8216 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.728 | 7.3194 | 0.48799 | -0.15599 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.215 | 8.6725 | 0.37591 | -0.3425 | +RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245682 | 18430 | 10489. | 3.865 | 22.934 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8897 | 62696 | 22142. | 0.88473 | -0.2119 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8897 | 18298 | 10711. | 4.0386 | 24.085 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8897 | 19889 | 11728. | 3.7291 | 19.96 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8897 | 18340 | 10745. | 4.0277 | 23.934 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8897 | 18372 | 10771. | 4.0194 | 23.819 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8897 | 31002 | 15808. | 2.8596 | 9.3825 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100461 | 33701 | 17845. | 2.4155 | 6.1084 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4799 | 89997 | 15662. | 0.12163 | -1.0667 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4799 | 33006 | 17291. | 2.5291 | 6.8 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4799 | 35000 | 18615. | 2.2493 | 5.0906 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4799 | 33066 | 17338. | 2.5193 | 6.7359 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4799 | 33111 | 17373. | 2.5119 | 6.6876 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4799 | 56841 | 22565. | 1.0146 | 0.063492 | +RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 121600 | 0.033901 | 0.011565 | -0.34369 | -1.0308 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 129250 | 52907 | 19197. | 1.5452 | 1.8012 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16399 | 6937.9 | -0.35931 | -22.829 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 2877803 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 2871542 | 18021 | 10104. | 3.9147 | 23.751 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16249 | 6899.2 | -0.24833 | -22.103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16249 | 6899.2 | -0.24833 | -22.103 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17607 | 10147. | 3.0419 | 11.45 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10012. | 3.0824 | 11.826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28253 | 23856 | 13835. | 3.1062 | 14.14 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28253 | 0.044137 | 0.0062789 | -1.2048 | 1.2776 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 2877803 | 0.036837 | 0.0095745 | -0.29204 | -1.1434 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 2871542 | 16994 | 9573.0 | 4.1315 | 26.671 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23036 | 13500. | 3.1641 | 14.846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28253 | 23036 | 13500. | 3.1641 | 14.846 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.0434 | 0.0068761 | -1.1643 | 1.028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28253 | 0.0434 | 0.0068761 | -1.1643 | 1.028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 22159 | 13378. | 3.2629 | 14.896 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28253 | 0.04274 | 0.0071708 | -1.0551 | 0.58054 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3682 | 16.099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28253 | 21170 | 12915. | 3.3682 | 16.099 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041659 | 0.0079083 | -0.9348 | 0.11321 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28253 | 0.041659 | 0.0079083 | -0.9348 | 0.11321 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17393 | 6622.0 | 0.94817 | 0.0063636 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13943 | -1.5855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 2877803 | 0.051571 | 0.00029950 | -0.20076 | -1.1052 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 2871542 | 17904 | 10058. | 3.9946 | 24.654 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.1 | 1.0034 | 0.13226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.1 | 1.0034 | 0.13226 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20632 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.20632 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46682 | -1.4307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063324 | -1.8914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54199 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.54199 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14658 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.14658 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205310 | 17562 | 9644.1 | 4.4288 | 30.477 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205310 | 0.051177 | 0.00051838 | -0.20367 | -0.87606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 2877803 | 0.051193 | 0.00051486 | -0.20649 | -1.1349 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 2871542 | 17987 | 10094. | 3.9312 | 23.931 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205310 | 17385 | 9489.3 | 4.4711 | 31.265 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205310 | 17385 | 9489.3 | 4.4711 | 31.265 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205310 | 0.051163 | 0.00052012 | -0.17686 | -0.89984 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205310 | 0.051163 | 0.00052012 | -0.17686 | -0.89984 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205310 | 17562 | 9298.3 | 4.0934 | 27.004 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205310 | 0.051181 | 0.00051953 | -0.18656 | -0.85083 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205310 | 17388 | 9157.1 | 4.1299 | 27.646 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205310 | 17388 | 9157.1 | 4.1299 | 27.646 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205310 | 0.051168 | 0.00052121 | -0.16073 | -0.87309 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205310 | 0.051168 | 0.00052121 | -0.16073 | -0.87309 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 35231 | 15318. | 2.4118 | 7.868 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8917 | 0.041075 | 0.0081192 | -1.6215 | 2.8808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 1020519 | 0.029741 | 0.010874 | 0.093554 | -1.0148 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 1085464 | 24676 | 10922. | 4.1336 | 22.419 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33432 | 15044. | 2.4243 | 8.2508 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8917 | 33432 | 15044. | 2.4243 | 8.2508 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097479 | -1.3392 | 1.0803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8917 | 0.039359 | 0.0097479 | -1.3392 | 1.0803 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 33079 | 16162. | 2.6721 | 8.0678 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8917 | 0.03903 | 0.0081220 | -0.72187 | 0.26957 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31649 | 15486. | 2.8292 | 9.3165 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 31649 | 15486. | 2.8292 | 9.3165 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089211 | -0.66628 | -0.050323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8917 | 0.037665 | 0.0089211 | -0.66628 | -0.050323 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 82238 | 0.020754 | 0.0049006 | -0.34532 | -0.87938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 77164 | 84252 | 15732. | 0.50796 | -0.81251 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35360 | 17803. | 0.98134 | -0.47006 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 1082345 | 0.029952 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 1067728 | 32765 | 16922. | 2.5082 | 6.788 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34830 | 17595. | 1.0451 | -0.33568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33490 | 15018. | 1.4581 | 1.1968 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 57692 | 34508. | -1.4493 | -1.0121 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 3.2927e-10 |-3.4774e+07 | 3.507e+15 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30755 | 12358. | 1.4338 | 1.2858 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30445 | 12211. | 1.484 | 1.4571 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30894 | 12195. | 1.4223 | 1.2575 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28365 | 12070. | 1.8534 | 2.7937 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 3.2927e-10 |-1.2968e+08 | 2.8966e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12064 | 32156 | 29764. | 2.3017 | 2.9543 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12064 | 0.02051 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 1082342 | 0.023397 | 0.0036770 | -0.011176 | -1.1345 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 1067725 | 32472 | 16869. | 2.5406 | 6.9651 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12064 | 31356 | 28603. | 2.4501 | 3.6428 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10111 | 30789 | 25703. | 2.5121 | 4.1941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1953 | 17063 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12064 | 0.020488 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10111 | 0.020498 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1953 | 0.020808 | 0.0063475 | 0.38016 | -3.1959 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12064 | 39967 | 22208. | 1.7483 | 2.5305 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12064 | 0.02515 | 0.0033910 | -0.45695 | -0.77854 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12064 | 39303 | 21990. | 1.7966 | 2.7315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10111 | 40265 | 22740. | 1.6921 | 2.3002 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1953 | 34875 | 17471. | 2.3843 | 5.6764 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12064 | 0.02498 | 0.0034616 | -0.41308 | -0.84717 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10111 | 0.025086 | 0.0035360 | -0.45221 | -0.88674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1953 | 0.02448 | 0.0030347 | -0.30082 | -0.48171 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 491 | 18601 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 491 | 0.029394 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 1082345 | 0.029679 | 0.00013671 | 0.24874 | -0.88557 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 1067728 | 32412 | 16561. | 2.5849 | 7.3173 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 491 | 18888 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 415 | 15784 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21071 | 1344.1 | 20.694 | 235.2 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 491 | 0.0294 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 415 | 0.0294 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 491 | 26869 | 7502.4 | 1.425 | 1.1361 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 491 | 0.029599 | 0.00015307 | 0.39664 | -0.78307 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 491 | 26585 | 7301.8 | 1.4977 | 1.4245 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 415 | 28047 | 7931.0 | 1.1473 | 0.31691 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3162.0 | 2.0872 | 3.4739 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 491 | 0.029594 | 0.00015136 | 0.4251 | -0.75037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 415 | 0.029634 | 0.00014949 | 0.13803 | -0.67371 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9699e-05 | 1.1498 | -0.67804 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83530 | 35488 | 20858. | 2.3641 | 5.2964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83530 | 0.029558 | 0.00023031 | 0.18723 | -1.0952 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 1082345 | 0.029493 | 0.00023492 | 0.1633 | -1.0568 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 1067728 | 32943 | 17118. | 2.4804 | 6.5829 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83530 | 35279 | 20739. | 2.3908 | 5.4432 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 70994 | 41495 | 24689. | 1.6367 | 1.969 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12536 | 28871 | 12814. | 4.454 | 22.525 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83530 | 0.029554 | 0.00023049 | 0.20211 | -1.0851 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 70994 | 0.029638 | 0.00023582 | -0.27321 | -1.247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12536 | 0.029462 | 0.00018508 | 0.53296 | -0.0010277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83530 | 32053 | 15854. | 2.6947 | 8.1376 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83530 | 0.029494 | 0.00022797 | 0.25491 | -0.99974 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83530 | 31867 | 15754. | 2.7241 | 8.3334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 70994 | 32431 | 16248. | 2.6241 | 7.6093 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12536 | 28922 | 12456. | 3.3885 | 14.273 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83530 | 0.02949 | 0.00022801 | 0.27549 | -0.99218 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 70994 | 0.029499 | 0.00022947 | 0.22974 | -1.0264 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12536 | 0.029443 | 0.00021401 | 0.50757 | -0.68914 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3216 | 84463 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3216 | 0.030129 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 340806 | 0.02021 | 0.0059615 | -0.039274 | -1.3602 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 385888 | 47094 | 19662. | 1.7093 | 2.2409 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3216 | 83237 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2806 | 67705 | 17918. | -0.51163 | -2.4048 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38478 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3216 | 0.030169 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2806 | 0.026432 | 0.0034782 | -3.2416 | 13.21 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014072 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3216 | 61463 | 22653. | 0.77543 | -0.47511 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3216 | 0.024034 | 0.0048271 | -0.98652 | 0.088233 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3216 | 60376 | 22828. | 0.80965 | -0.43036 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2806 | 61737 | 23054. | 0.74645 | -0.52699 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52377 | 19632. | 1.2529 | 0.48463 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3216 | 0.023701 | 0.0050966 | -0.90377 | -0.20871 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2806 | 0.024049 | 0.0049628 | -1.0558 | 0.19015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021618 | 0.0053817 | -0.17681 | -1.1655 | +RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 16947 | 7029.0 | 2.2337 | 8.6188 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | -1.689 | 79.001 | -0.019954 | 1.6907 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135328 | 2.0009 | 81.693 | -0.11248 | 1.4548 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | 17034 | 7009.9 | 2.1578 | 8.0534 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -4.81 | 76.360 | 0.27362 | 1.7138 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135328 | -0.95703 | 88.226 | 0.18676 | 1.6232 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | 15017 | 7483.9 | 4.5216 | 27.215 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -4.81 | 76.360 | 0.27362 | 1.7138 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135328 | -0.95703 | 88.226 | 0.18676 | 1.6232 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 133.24 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.111 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1177 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 26.388 | 93.642 | 2.4599 | -4.3849 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 249.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 1683 | 271.65 | -0.5481 | -0.17438 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | 20.23 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15.941 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135328 | -15295 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135328 | -2155.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135328 | -7.9552 | 124.69 | 0.71169 | 1.6122 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135328 | -3415.2 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135328 | -13.04 | 141.30 | 0.81836 | 1.0693 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 17383 | 7492.9 | 2.1486 | 7.553 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 7.2157 | 69.424 | -0.14549 | 2.1067 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134808 | 1.233 | 72.006 | -0.054315 | 1.7995 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | 17605 | 7507.4 | 2.0671 | 7.0841 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | 1.8141 | 74.106 | -0.58758 | 1.4911 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134808 | -3.4872 | 84.350 | -0.35477 | 1.2627 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | 15175 | 7375.1 | 3.4729 | 16.737 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | 1.8141 | 74.106 | -0.58758 | 1.4911 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134808 | -3.4872 | 84.350 | -0.35477 | 1.2627 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 138.36 | 118.11 | 3.5141 | -17.902 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 12.042 | 102.42 | 0.80878 | -0.05993 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 2294.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 3.5103 | 90.243 | 0.32341 | 4.0884 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 191.98 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 1746 | 50.874 | 382.97 | -7960.6 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | -68.396 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | 1.236 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134808 | -13586 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134808 | 794.88 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134808 | -2.9969 | 52.764 | -5.4839 | -4.6938 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134808 | 710.14 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134808 | -2.4439 | 55.081 | -4.2592 | -2.5972 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 18017 | 8380.8 | 2.3351 | 9.6414 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1013 | 18566 | 8771.7 | 2.2033 | 7.5137 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | 18462 | 9011.6 | 2.4681 | 8.8676 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.6169 | 50.451 | -0.48324 | 3.7955 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1013 | -1.582 | 52.802 | -0.48882 | 2.4512 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49289 | 7970.2 | 0.58806 | 0.36168 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47103 | 10895. | 0.97388 | 0.031356 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 17467 | 3891.9 | 0.14164 | -2.6855 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16481 | 5928.8 | 0.91296 | -0.021092 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6063 | 19019 | 9440.3 | 2.4945 | 8.331 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6063 | 17330 | 8110.8 | 2.7552 | 11.441 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 1.5144 | 48.941 | -0.19674 | 2.9736 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6063 | 0.90011 | 49.570 | -0.12851 | 1.6845 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6226 | 17845 | 8515.8 | 2.666 | 10.353 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 17271 | 8008.6 | 2.7395 | 11.481 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 1.5005 | 51.817 | -0.22655 | 2.9607 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6226 | 0.67268 | 51.818 | -0.12417 | 1.7493 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 73235 | 3515.4 | -0.41324 | -1.5667 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72635 | 3652.1 | 0.021958 | -1.5732 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | 31569 | 16003. | 2.5725 | 7.1296 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | -254.21 | 316.42 | 0.73548 | 1.8351 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 906 | -1.2873 | 286.02 | 0.13544 | 2.0881 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -18934 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -267.48 | 304.67 | 0.50236 | 0.46551 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 906 | -48.863 | 297.87 | 0.28473 | 2.2984 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | 29934 | 11507. | 0.31517 | -10.855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | -267.48 | 304.67 | 0.50236 | 0.46551 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 906 | -48.863 | 297.87 | 0.28473 | 2.2984 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 27.956 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 0.30675 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 576.43 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 268.42 | 615.43 | -0.29693 | -1.5373 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 875.08 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 9483.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | 210.95 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | -263.15 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 906 | -3642.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 906 | -485.03 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 906 | 7.8106 | 248.32 | 0.66379 | 3.0857 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 906 | -484.99 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 906 | 7.8408 | 248.25 | 0.66513 | 3.0781 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 29934 | 13900. | 3.292 | 13.534 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 359.81 | 233.02 | -0.10229 | 4.3482 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1775 | 11.938 | 272.33 | -0.074594 | 1.2912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 21219 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 311.32 | 119.78 | -4.2337 | 21.153 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1775 | 1.9616 | 239.40 | -0.63998 | 6.0586 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 30742 | 11722. | 1.7662 | -0.33057 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 311.32 | 119.78 | -4.2337 | 21.153 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1775 | 1.9616 | 239.40 | -0.63998 | 6.0586 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 2206.7 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 37.535 | 530.54 | 1.1414 | -1.6922 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 34286 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -385.64 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -781.03 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 9304.1 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 1521.8 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | -32.619 | 516.20 | 1.2433 | -0.026944 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1775 | 32860 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1775 | 452.56 | 213.05 | 2.6243 | -4.9887 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1775 | -6.6716 | 292.79 | -0.33073 | 1.8445 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1775 | 452.64 | 212.94 | 2.6281 | -5.0179 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1775 | -6.7586 | 292.65 | -0.331 | 1.8481 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27633 | 9210.6 | 2.9276 | 8.6926 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 236 | 32309 | 15074. | 2.2639 | 4.9677 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 32658 | 15848. | 2.411 | 5.632 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 110.88 | 317.57 | -0.35759 | -0.57417 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 237 | 0.30233 | 279.61 | -0.40214 | 1.4868 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55368 | 16765. | 0.83413 | -0.22361 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 82 | 56609 | 19290. | 0.72817 | -0.78342 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 59778 | 23995. | 0.94504 | -0.17864 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 215.52 | 328.39 | 0.55315 | 0.94587 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 88 | 17.875 | 259.14 | -1.489 | 5.3214 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26144 | 6272.7 | 1.597 | 2.1876 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27199 | 8112.5 | 1.559 | 1.3376 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3099 | 32262 | 15550. | 2.2653 | 4.9507 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3142 | 32008 | 15918. | 2.7105 | 8.2027 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3142 | 7.0538 | 357.74 | 0.011496 | -0.3082 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3142 | 5.2986 | 254.42 | 0.050429 | 1.4035 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1397 | 30913 | 13649. | 2.5147 | 7.0085 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 31567 | 15835. | 2.8025 | 8.6943 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 129.28 | 335.75 | -0.41309 | 0.02316 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1413 | 0.26481 | 256.14 | -0.041575 | 1.5298 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 84331 | 11494. | -0.39424 | -1.4177 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 13 | 81865 | 9439.4 | 0.23985 | -0.89755 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | 90110 | 14462. | -0.0049795 | -1.243 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | 27.56 | 144.31 | -0.81556 | -0.51884 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 21 | -10.92 | 219.38 | -0.0099333 | -1.2589 | +RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1116 | 22005 | 13480. | 2.111 | 4.6144 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1116 | 25980 | 20543. | 2.6629 | 7.3691 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1332 | 26751 | 21012. | 2.4374 | 6.2091 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1332 | 14783 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6276 | 23190 | 16837. | 2.8924 | 9.713 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6276 | 20505 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28093 | 21888. | 2.2974 | 4.9916 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16741 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 626 | 33795 | 14116. | 1.1405 | 0.37808 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 626 | 43104 | 25073. | 1.3469 | 0.77862 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 703 | 46316 | 27162. | 1.1866 | 0.34552 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 703 | 16330 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3386 | 40541 | 23741. | 1.5865 | 1.6196 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3386 | 42298 | 22351. | 1.3797 | 0.14691 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 719 | 45431 | 26960. | 1.1756 | 0.1599 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 719 | 40312 | 25216. | 1.1618 | -0.35317 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60859 | 16786. | 0.57601 | -0.618 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.654 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20728 | 10954. | 2.9185 | 12.259 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9594.4 | 3.3084 | 16.462 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9634.4 | 3.2957 | 16.319 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32063 | 14264. | 2.2232 | 5.357 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83833 | 10370. | -0.17289 | -1.1678 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4699 | 31656 | 14387. | 2.3291 | 5.7474 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4697 | 34916 | 16266. | 1.877 | 3.276 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4699 | 31753 | 14457. | 2.3124 | 5.6442 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4699 | 31828 | 14510. | 2.2997 | 5.5666 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56228 | 18268. | 0.68897 | -0.51698 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 449 | 60440 | 16886. | 0.58269 | -0.60544 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9541.7 | 3.3251 | 16.654 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20662 | 10930. | 2.9241 | 12.32 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18082 | 9593.6 | 3.3086 | 16.465 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18139 | 9633.0 | 3.2962 | 16.323 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31863 | 14209. | 2.2365 | 5.4534 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 304 | 83573 | 10498. | -0.16445 | -1.1653 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4726 | 31638 | 14370. | 2.3308 | 5.76 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4726 | 34842 | 16225. | 1.8842 | 3.3124 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4726 | 31734 | 14439. | 2.3142 | 5.6577 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4726 | 31807 | 14492. | 2.3017 | 5.5808 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1722 | 55953 | 18288. | 0.69748 | -0.5008 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 406 | 60795 | 16777. | 0.58666 | -0.60355 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8872 | 18007 | 9539.5 | 3.3209 | 16.612 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8872 | 20738 | 10959. | 2.9128 | 12.207 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8872 | 18083 | 9592.2 | 3.3042 | 16.421 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8872 | 18141 | 9632.2 | 3.2916 | 16.277 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32071 | 14277. | 2.2179 | 5.3201 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 283 | 83741 | 10350. | -0.16349 | -1.1648 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4699 | 31761 | 14472. | 2.3097 | 5.6238 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4697 | 34958 | 16296. | 1.8722 | 3.2475 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4699 | 31858 | 14541. | 2.2931 | 5.5223 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4699 | 31933 | 14594. | 2.2805 | 5.446 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1619 | 56178 | 18224. | 0.68899 | -0.51183 | +RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | + | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 28855 |-1.5206e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 676243 | 3.9301e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 845024 | 2.8851e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 212606 | 3.3911e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39496 | 1.0725 | 0.90049 | 0.3454 | -0.41294 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39047 | 0.048658 | 0.0067284 | -2.5633 | 6.3475 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 29119 | 5.6522e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 386919 | 3.1935e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 461281 |-3.1212e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 116245 |-6.3101e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21722 | 1.2016 | 1.0254 | 0.54545 | -0.091614 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21210 | 0.028147 | 0.0033289 | -2.3474 | 5.1959 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2143200 | 27.432 | 266.86 | -0.0051534 | -0.71064 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 2232500 | 27.389 | 267.54 | -0.0088903 | -0.79086 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 25.143 | 448.59 | 0.017971 | -1.461 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2232500 | 40.082 | 211.89 | 0.0042584 | 1.0749 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 2232500 | 25.362 | 448.18 | 0.016157 | -1.4445 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14480 | 1.6814 | 0.51037 | 0.19205 | -0.64462 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14480 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12949 | 0.10504 | 0.10306 | 1.0467 | 0.11002 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14329 | 21427 | 13159. | 2.5925 | 8.778 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14412 | 957.31 | 745.24 | 2.7861 | 12.022 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.x86_64_v3-opt new file mode 100644 index 0000000000000000000000000000000000000000..dff36dea178e782972aa07a38b56b31a12b26ac1 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_MC_trunk_geom.ref.x86_64_v3-opt @@ -0,0 +1,1962 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_ab47e101 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 893 | 18760 | 21.008 | + | "nTracksSelected" | 893 | 18760 | 21.008 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 1000 | + | "Nb events removed" | 107 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 1000 | +PrForwardTrackingVelo_5399212b INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 892 | 94155 | 105.55 | + | "Created long tracks" | 892 | 1008 | 1.1300 | + | "Empty input tracks" | 1 | + | "Input tracks" | 892 | 99807 | 111.89 | + | "Number of candidate bins per track" | 94155 | 49174 | 0.52227 | 1.1845 | 0.0000 | 19.000 | + | "Number of complete candidates/track 1st Loop" | 25543 | 770 | 0.030145 | 0.17236 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 24988 | 254 | 0.010165 | 0.10071 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 25543 | 5702 | 0.22323 | 0.48713 | + | "Number of x candidates per track 2nd Loop" | 24988 | 19514 | 0.78093 | 1.0434 | + | "Percentage second loop execution" | 25543 | 24988 | 0.97827 | + | "Removed duplicates" | 892 | 13 | 0.014574 | +PrForwardTrackingVelo_5399212b.P... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 606 | 2429 | 4.0083 | + | "#tracks with hits added" | 606 | +PrHybridSeeding_46e539c7 INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 449083 | 251721 | 0.56052 | 0.54375 | 0.0000 | 3.0000 | + | "Created T2x1 three-hit combinations in case 1" | 211637 | 117001 | 0.55284 | 0.54899 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 191515 | 102460 | 0.53500 | 0.56101 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 2679 | 32219 | 12.027 | 12.271 | 0.0000 | 99.000 | + | "Created XZ tracks (part 1)" | 2679 | 31216 | 11.652 | 12.221 | 0.0000 | 89.000 | + | "Created XZ tracks in case 0" | 1786 | 36342 | 20.348 | 14.965 | 0.0000 | 99.000 | + | "Created XZ tracks in case 1" | 1786 | 18571 | 10.398 | 8.5913 | 0.0000 | 59.000 | + | "Created XZ tracks in case 2" | 1786 | 8522 | 4.7716 | 5.2740 | 0.0000 | 40.000 | + | "Created full hit combinations in case 0" | 50085 | 50085 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 20174 | 20174 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 10815 | 10815 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 1786 | 35404 | 19.823 | 10.647 | 0.0000 | 65.000 | + | "Created seed tracks (part 0)" | 893 | 19832 | 22.208 | 11.956 | 0.0000 | 60.000 | + | "Created seed tracks (part 1)" | 893 | 18907 | 21.172 | 11.841 | 0.0000 | 74.000 | + | "Created seed tracks in case 0" | 1786 | 23630 | 13.231 | 7.4624 | 0.0000 | 47.000 | + | "Created seed tracks in case 1" | 1786 | 34315 | 19.213 | 10.350 | 0.0000 | 60.000 | + | "Created seed tracks in case 2" | 1786 | 37881 | 21.210 | 11.549 | 0.0000 | 70.000 | + | "Created seed tracks in recovery step" | 893 | 858 | 0.96081 | 1.3308 | 0.0000 | 9.0000 | + | "Created two-hit combinations in case 0" | 271633 | 2636456 | 9.7059 | 7.4519 | 0.0000 | 97.000 | + | "Created two-hit combinations in case 1" | 258894 | 1453665 | 5.6149 | 4.2931 | 0.0000 | 82.000 | + | "Created two-hit combinations in case 2" | 243182 | 1454837 | 5.9825 | 4.6460 | 0.0000 | 83.000 | +PrKalmanFilterForward_9d8f7cf7 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 137 | + | "chi2 cut" | 348 | + | "nIterations" | 1008 | 2337 | 2.3185 | + | "nOutlierIterations" | 871 | 915 | 1.0505 | + | "nTracksInput" | 893 | 1008 | 1.1288 | + | "nTracksOutput" | 893 | 523 | 0.58567 | +PrKalmanFilterMatch_a719d5c1 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 214 | + | "chi2 cut" | 4093 | + | "nIterations" | 18760 | 37834 | 2.0167 | + | "nOutlierIterations" | 18546 | 17205 | 0.92769 | + | "nTracksInput" | 893 | 18760 | 21.008 | + | "nTracksOutput" | 893 | 14453 | 16.185 | +PrLHCbID2MCParticle_d0bb6bbd INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#removed null MCParticles" | 5912045 | 0 | 0.0000 | +PrMatchNN_959da4d3 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 888 | 227734.6 | 256.46 | + | "#MatchingMLP" | 26141 | 23314.76 | 0.89188 | + | "#MatchingTracks" | 888 | 18760 | 21.126 | +PrMatchNN_959da4d3.PrAddUTHitsTool INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 14824 | 60046 | 4.0506 | + | "#tracks with hits added" | 14824 | +PrResidualSciFiHits_f6ac1107 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 10 | +PrStoreSciFiHits_fb0eba02 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 274382 | -8571736 | -31.240 | 1234.1 | -2656.2 | 2656.4 | + | "Average X in T1V" | 275897 | -7056664 | -25.577 | 1218.9 | -2656.3 | 2656.4 | + | "Average X in T1X1" | 271633 |-1.243158e+07 | -45.766 | 1250.5 | -2646.1 | 2646.2 | + | "Average X in T1X2" | 279246 | -4452248 | -15.944 | 1209.1 | -2646.2 | 2646.1 | + | "Average X in T2U" | 265423 | -5165696 | -19.462 | 1223.3 | -2656.3 | 2656.2 | + | "Average X in T2V" | 272034 | -4357348 | -16.018 | 1218.0 | -2656.3 | 2656.4 | + | "Average X in T2X1" | 256665 | -4753668 | -18.521 | 1229.9 | -2646.2 | 2646.2 | + | "Average X in T2X2" | 279569 | -3914927 | -14.003 | 1210.8 | -2646.2 | 2646.2 | + | "Average X in T3U" | 293751 | 889011.2 | 3.0264 | 1460.1 | -3188.2 | 3188.4 | + | "Average X in T3V" | 301199 | -1827591 | -6.0677 | 1451.9 | -3188.4 | 3188.4 | + | "Average X in T3X1" | 283940 | -541994 | -1.9088 | 1462.7 | -3176.2 | 3176.2 | + | "Average X in T3X2" | 311558 | -3325860 | -10.675 | 1443.9 | -3176.2 | 3176.2 | + | "Hits in T1U" | 3572 | 274382 | 76.815 | 28.250 | 11.000 | 288.00 | + | "Hits in T1V" | 3572 | 275897 | 77.239 | 28.670 | 10.000 | 243.00 | + | "Hits in T1X1" | 3572 | 271633 | 76.045 | 28.322 | 12.000 | 319.00 | + | "Hits in T1X2" | 3572 | 279246 | 78.176 | 28.523 | 14.000 | 190.00 | + | "Hits in T2U" | 3572 | 265423 | 74.307 | 27.286 | 10.000 | 209.00 | + | "Hits in T2V" | 3572 | 272034 | 76.157 | 27.929 | 13.000 | 197.00 | + | "Hits in T2X1" | 3572 | 256665 | 71.855 | 26.544 | 12.000 | 232.00 | + | "Hits in T2X2" | 3572 | 279569 | 78.267 | 28.560 | 12.000 | 185.00 | + | "Hits in T3U" | 3572 | 293751 | 82.237 | 28.795 | 16.000 | 289.00 | + | "Hits in T3V" | 3572 | 301199 | 84.322 | 29.598 | 17.000 | 247.00 | + | "Hits in T3X1" | 3572 | 283940 | 79.490 | 27.334 | 18.000 | 181.00 | + | "Hits in T3X2" | 3572 | 311558 | 87.222 | 30.652 | 16.000 | 215.00 | + | "Total number of hits" | 893 | 3365297 | 3768.5 | 1185.8 | 1170.0 | 6478.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 893 | 192888 | 216.00 | + | "# RawBank::UTError banks" | 893 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 893 | 0 |( 0.000000 +- 0.000000)% | +PrTrackAssociator_825c239a INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Efficiency" | 14480 | 13889 |( 95.91851 +- 0.1644282)% | + | "MC particles per track" | 13889 | 16247 | 1.1698 | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | +RiMCOpticalPhotonsLong INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"Charge mis-match between reco track and matched MCParticle"| 272887 | 2 |(0.0007329041 +- 0.0005182396)% | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 893 | 4037336 | 4521.1 | 4086.1 | 0.0000 | 22184. | + | "# Rich1Gas Segments" | 893 | 8922 | 9.9910 | 6.1366 | 0.0000 | 35.000 | + | "# Rich2Gas Photons" | 893 | 1171086 | 1311.4 | 1200.6 | 0.0000 | 7025.0 | + | "# Rich2Gas Segments" | 893 | 4849 | 5.4300 | 3.6555 | 0.0000 | 20.000 | + | "# Selected Tracks" | 893 | 11366 | 12.728 | 7.3149 | 0.0000 | 36.000 | + |*"RICH selection efficiency" | 14480 | 11366 |( 78.49448 +- 0.3414368)% | +TBTCMatch_e6402d48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 13963 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 13963 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 13963 | +TBTC_Forward_c95b0b3d INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 517 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 517 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 517 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +UTHitClustersToUTHitHandlerConve... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 837869 | 938.26 | +Unpack__Event_MC_Rich_DigitSumma... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 5711615 | 6396.0 | 2827.6 | 560.00 | 14534. | +Unpack__Event_MC_Rich_Hits INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6185524 | 6926.7 | 3312.3 | 0.0000 | 16143. | +Unpack__Event_MC_Rich_OpticalPho... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 6169536 | 6908.8 | 3303.4 | 0.0000 | 16106. | +Unpack__Event_MC_Rich_Segments INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 312457 | 349.90 | 164.04 | 0.0000 | 803.00 | +Unpack__Event_MC_Rich_Tracks INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnPackedData" | 893 | 259112 | 290.16 | 135.00 | 0.0000 | 641.00 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 893 | 1708879 | 1913.6 | +VPRetinaFullClusterDecoder_f6227b4b INFO Number of counters : 13 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Number of banks" | 893 | 92872 | 104.00 | + | "Number of clusters" | 893 | 1708879 | 1913.6 | + | "Number of clusters - Mod14" | 893 | 35071 | 39.273 | + | "Number of clusters - Mod15" | 893 | 35186 | 39.402 | + | "Number of clusters - Mod16" | 893 | 34883 | 39.063 | + | "Number of clusters at matrix edge" | 893 | 173379 | 194.15 | + | "Number of clusters from SPs w/ neighbors" | 893 | 363392 | 406.93 | + | "Number of clusters from isolated SPs" | 893 | 1343257 | 1504.2 | + | "Number of clusters from overflowing SPs" | 893 | 2230 | 2.4972 | + | "Number of clusters from overflowing SPs - Mod 14"| 893 | 122 | 0.13662 | + | "Number of clusters from overflowing SPs - Mod 15"| 893 | 137 | 0.15342 | + | "Number of clusters from overflowing SPs - Mod 16"| 893 | 180 | 0.20157 | + | "Number of clusters not self contained" | 893 | 61517 | 68.888 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 893 | 1708879 | 1913.6 | + | "Nb of Produced Tracks" | 893 | 187893 | 210.41 | +RiCKMCResLong INFO 1D histograms in directory "RiCKMCResLong" : 35 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - True Type;del..." | 4180853 | 5.9265e-05 | 0.0013711 | -0.046527 | -0.97252 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - True Type - 0..." | 3183651 | 5.7992e-05 | 0.0013669 | -0.046238 | -0.96484 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPion | "Rich1Gas Rec-Exp CKTheta - Pion Type;del..." | 3594935 | 5.5692e-05 | 0.0013931 | -0.047973 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResAllPionBeta | "Rich1Gas Rec-Exp CKTheta - Pion Type - 0..." | 3594935 | 5.5692e-05 | 0.0013931 | -0.047973 | -1.011 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFake | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3935238 | 8.753e-06 | 0.0015275 |-0.00043984 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakeBetaCut | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 2971670 | 1.3329e-06 | 0.0015270 | 0.0065692 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePion | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3349324 | 2.1235e-05 | 0.0015279 | -0.014526 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResFakePionBet | "Rich1Gas Rec-Exp CKTheta - MC fake photo..." | 3349324 | 2.1235e-05 | 0.0015279 | -0.014526 | -1.2459 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrue | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245615 | 0.00014928 | 0.0010291 | 0.011722 | -0.50969 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueBetaCut | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 211981 | 0.00015715 | 0.0010208 | 0.016298 | -0.50468 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueInner | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245615 | 0.00014928 | 0.0010291 | 0.011722 | -0.50969 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePion | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245611 | 0.00012883 | 0.0010472 | -0.020642 | -0.48913 | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTruePionBet | "Rich1Gas Rec-Exp CKTheta - MC true photo..." | 245611 | 0.00012883 | 0.0010472 | -0.020642 | -0.48913 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecFake | "Rich1Gas Reconstructed CKPhi - MC fake p..." | 3935238 | 3.1315 | 1.8200 | 0.010309 | -1.1947 | + | /RICH/RiCKMCResLong/Rich1Gas/phiRecTrue | "Rich1Gas Reconstructed CKPhi - MC true p..." | 245615 | 3.1258 | 1.8118 | 0.013536 | -1.1892 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecFake | "Rich1Gas Reconstructed CKTheta - MC fake..." | 3935238 | 0.039779 | 0.011084 | -0.54645 | -0.53053 | + | /RICH/RiCKMCResLong/Rich1Gas/thetaRecTrue | "Rich1Gas Reconstructed CKTheta - MC true..." | 245615 | 0.049953 | 0.0047068 | -3.5154 | 14.358 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - True Type;del..." | 1326853 | 1.6611e-05 | 0.0010193 | -0.001428 | -0.8244 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - True Type - 0..." | 1094808 | 1.4706e-05 | 0.0010172 | 0.0010188 | -0.81661 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPion | "Rich2Gas Rec-Exp CKTheta - Pion Type;del..." | 1135479 | 1.3595e-05 | 0.0010422 | -0.0041053 | -0.89367 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResAllPionBeta | "Rich2Gas Rec-Exp CKTheta - Pion Type - 0..." | 1135479 | 1.3595e-05 | 0.0010422 | -0.0041053 | -0.89367 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFake | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1226351 | 2.0043e-05 | 0.0011532 | -0.012288 | -1.1997 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakeBetaCut | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1003010 | 1.7004e-05 | 0.0011527 | -0.007546 | -1.1994 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePion | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1034977 | 2.8769e-05 | 0.0011582 | -0.026505 | -1.2111 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResFakePionBet | "Rich2Gas Rec-Exp CKTheta - MC fake photo..." | 1034977 | 2.8769e-05 | 0.0011582 | -0.026505 | -1.2111 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrue | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 | 8.8494e-06 | 0.00061758 | 0.06622 | 0.17351 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueBetaCut | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 91798 | 9.5577e-06 | 0.00061289 | 0.06364 | 0.19967 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueInner | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 85326 | 4.7566e-06 | 0.00060849 | 0.072336 | 0.24928 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueOuter | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 15176 | 3.1558e-05 | 0.00066532 | 0.023007 | -0.1887 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePion | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 |-2.5721e-05 | 0.00065026 | -0.066517 | 0.23747 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTruePionBet | "Rich2Gas Rec-Exp CKTheta - MC true photo..." | 100502 |-2.5721e-05 | 0.00065026 | -0.066517 | 0.23747 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecFake | "Rich2Gas Reconstructed CKPhi - MC fake p..." | 1226351 | 3.1509 | 1.8138 | -0.008666 | -1.1876 | + | /RICH/RiCKMCResLong/Rich2Gas/phiRecTrue | "Rich2Gas Reconstructed CKPhi - MC true p..." | 100502 | 3.1463 | 1.8161 | -0.0023176 | -1.2018 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecFake | "Rich2Gas Reconstructed CKTheta - MC fake..." | 1226351 | 0.024617 | 0.0055230 | -0.43782 | -0.68364 | + | /RICH/RiCKMCResLong/Rich2Gas/thetaRecTrue | "Rich2Gas Reconstructed CKTheta - MC true..." | 100502 | 0.028819 | 0.0022799 | -3.1805 | 12.157 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1727922 | 0.00010847 | 0.0029468 | -0.043328 | -0.94462 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 270 |-5.3514e-05 | 0.0021226 | 0.11675 | 0.36747 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113300 | 0.00047481 | 0.0028638 | -0.22749 | -0.81642 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 992 |-0.00022406 | 0.0020897 | 0.20649 | 0.36329 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2856 |-0.00012467 | 0.0023202 | 0.19806 | 0.016613 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9295 | 6.8966e-05 | 0.0025528 | 0.024392 | -0.37442 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31913 | 0.00030094 | 0.0026993 | -0.10241 | -0.58721 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152717 | 0.00040996 | 0.0028902 | -0.12617 | -0.85731 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 482695 | 7.6677e-05 | 0.0029828 | -0.021896 | -0.98982 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 546259 |-2.2905e-05 | 0.0029766 | 0.016768 | -0.98068 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 387559 | 1.1487e-05 | 0.0029415 | -0.027063 | -0.9386 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 270 |-5.3514e-05 | 0.0021226 | 0.11675 | 0.36747 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113300 | 0.00047481 | 0.0028638 | -0.22749 | -0.81642 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 992 |-0.00022406 | 0.0020897 | 0.20649 | 0.36329 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2856 |-0.00012467 | 0.0023202 | 0.19806 | 0.016613 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 9295 | 6.8966e-05 | 0.0025528 | 0.024392 | -0.37442 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 31913 | 0.00030094 | 0.0026993 | -0.10241 | -0.58721 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152717 | 0.00040996 | 0.0028902 | -0.12617 | -0.85731 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 482695 | 7.6677e-05 | 0.0029828 | -0.021896 | -0.98982 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 546259 |-2.2905e-05 | 0.0029766 | 0.016768 | -0.98068 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 387559 | 1.1487e-05 | 0.0029415 | -0.027063 | -0.9386 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 3594935 | 0.00011671 | 0.0029522 | -0.049623 | -0.95625 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 3594935 | 3.1311 | 1.8195 | 0.010518 | -1.1943 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 3594935 | 0.04062 | 0.011062 | -0.64955 | -0.45444 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1867013 | 0.00012432 | 0.0029572 | -0.055433 | -0.96678 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 312 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 133485 | 0.00024358 | 0.0028939 | -0.049459 | -0.87917 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1137 | 0.00039639 | 0.0022026 | -0.40381 | 0.66214 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2875 | 0.00032267 | 0.0024641 | -0.22517 | -0.17321 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7364 | 0.00034162 | 0.0025748 | -0.12245 | -0.43333 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27925 | 0.00048213 | 0.0026828 | -0.3057 | -0.53821 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 152032 | 0.0005867 | 0.0028810 | -0.26997 | -0.81141 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 515234 | 0.00017888 | 0.0029849 | -0.09669 | -1.0003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 589354 | 6.6603e-06 | 0.0029861 | -0.0093879 | -1.0033 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 437275 |-9.3081e-05 | 0.0029496 | 0.063371 | -0.94982 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20 | 0.002255 | 0.0012021 | 0.88397 | -0.32005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 312 | 0.00014526 | 0.0023286 | -0.33686 | 0.29062 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 133485 | 0.00024358 | 0.0028939 | -0.049459 | -0.87917 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1137 | 0.00039639 | 0.0022026 | -0.40381 | 0.66214 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2875 | 0.00032267 | 0.0024641 | -0.22517 | -0.17321 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7364 | 0.00034162 | 0.0025748 | -0.12245 | -0.43333 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27925 | 0.00048213 | 0.0026828 | -0.3057 | -0.53821 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 152032 | 0.0005867 | 0.0028810 | -0.26997 | -0.81141 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 515234 | 0.00017888 | 0.0029849 | -0.09669 | -1.0003 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 589354 | 6.6603e-06 | 0.0029861 | -0.0093879 | -1.0033 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 437275 |-9.3081e-05 | 0.0029496 | 0.063371 | -0.94982 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 575321 | 5.1575e-05 | 0.0018626 | -0.019856 | -0.91839 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 575321 | 5.1575e-05 | 0.0018626 | -0.019856 | -0.91839 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 540636 | 4.3126e-05 | 0.0018750 | -0.014812 | -0.9432 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34685 | 0.00015627 | 0.0016984 | -0.063561 | -0.54761 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6050 | 1.4731e-05 | 0.0017884 | 0.0059079 | -0.77797 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15271 | 0.00036258 | 0.0018195 | -0.17453 | -0.85344 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4400 | 0.00026593 | 0.0018468 | -0.14059 | -0.85145 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1923 | 7.977e-05 | 0.0017409 | -0.0084694 | -0.62931 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13164 | 6.6249e-05 | 0.0018200 | 0.033947 | -0.87212 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32290 | 0.00010082 | 0.0018669 | -0.021227 | -0.93442 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 58062 | 8.6664e-05 | 0.0018670 | -0.035012 | -0.92685 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 88448 |-1.1963e-05 | 0.0018627 | 0.017834 | -0.90538 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 99414 |-4.2199e-05 | 0.0018856 | 0.031074 | -0.94762 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 103449 |-5.2753e-05 | 0.0018997 | 0.029258 | -0.98923 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 78864 | 8.3753e-05 | 0.0018839 | -0.054446 | -0.97458 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 39301 | 0.00016413 | 0.0018604 | -0.073575 | -0.92523 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 900 | 0.00012991 | 0.0016715 | -0.0088747 | -0.51657 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1333 | 9.9533e-05 | 0.0017406 | -0.076272 | -0.64485 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 716 | 5.6762e-05 | 0.0017855 | -0.044364 | -0.67437 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 398 | 0.00011408 | 0.0015564 | 0.038773 | -0.072407 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1442 | 5.6297e-05 | 0.0016843 | 0.0097411 | -0.49437 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2690 | 0.0001815 | 0.0017182 | -0.087279 | -0.57256 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3637 | 0.00018343 | 0.0017294 | -0.12952 | -0.60496 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4948 | 0.0001547 | 0.0016957 | -0.056751 | -0.53364 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6060 | 0.00017559 | 0.0016764 | -0.032793 | -0.50151 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5973 | 0.00014242 | 0.0017160 | -0.078443 | -0.56003 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4096 | 0.0002139 | 0.0017007 | -0.10649 | -0.58336 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2492 | 0.00011464 | 0.0016195 | 0.034705 | -0.47387 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6950 | 3.2759e-05 | 0.0017712 | 0.00066663 | -0.74053 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16604 | 0.00034079 | 0.0018146 | -0.16434 | -0.84035 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5116 | 0.00023223 | 0.0018386 | -0.12316 | -0.82857 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2321 | 8.6755e-05 | 0.0017050 | -0.003224 | -0.53322 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14606 | 6.512e-05 | 0.0018051 | 0.031988 | -0.83503 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 34980 | 0.00010839 | 0.0018536 | -0.027886 | -0.90567 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61699 | 9.3369e-05 | 0.0018579 | -0.041738 | -0.90809 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 93396 |-5.9525e-07 | 0.0018522 | 0.010999 | -0.88452 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 105474 |-2.5003e-05 | 0.0018709 | 0.02213 | -0.91921 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 109422 |-3.8998e-05 | 0.0018880 | 0.019831 | -0.9657 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 82960 | 9.1237e-05 | 0.0018741 | -0.058796 | -0.9556 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 41793 | 0.00016096 | 0.0018460 | -0.067799 | -0.90115 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 560158 | 6.3555e-05 | 0.0018578 | -0.02468 | -0.90395 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 560158 | 6.3555e-05 | 0.0018578 | -0.02468 | -0.90395 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 528960 | 5.5063e-05 | 0.0018693 | -0.020712 | -0.92686 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 31198 | 0.00017805 | 0.0016907 | -0.051914 | -0.5374 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1412 | 0.00011413 | 0.0018201 | 0.029627 | -0.75077 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 30551 | 9.5221e-05 | 0.0018698 | -0.020865 | -0.90624 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11839 | 0.00013746 | 0.0017863 | -0.036648 | -0.76401 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5215 |-2.4389e-05 | 0.0018227 | -0.0081077 | -0.82145 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3597 | 0.00024282 | 0.0018046 | -0.095063 | -0.86224 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14710 | 0.00038331 | 0.0018323 | -0.17129 | -0.8706 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41508 | 0.00015405 | 0.0018778 | -0.065133 | -0.94561 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79293 | 8.3077e-05 | 0.0018889 | -0.035592 | -0.97349 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101821 |-3.5254e-05 | 0.0018806 | 0.017402 | -0.96017 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 98293 |-3.4106e-05 | 0.0018826 | 0.022748 | -0.93831 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86920 | 2.81e-06 | 0.0018533 | -0.0069874 | -0.89634 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53801 | 0.000131 | 0.0018396 | -0.046314 | -0.87124 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 338 | -5.457e-05 | 0.0014953 | 0.013543 | -0.27221 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2434 | 0.00026306 | 0.0017449 | -0.11734 | -0.59205 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1346 | 5.2329e-05 | 0.0017142 | 0.072203 | -0.61327 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 937 | 4.6497e-05 | 0.0016269 | 0.011146 | -0.32901 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 561 | 0.00028353 | 0.0015550 | 0.0069407 | -0.51486 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1345 | 4.1571e-05 | 0.0016974 | 0.076492 | -0.53098 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2205 | 0.0001631 | 0.0016812 | -0.048693 | -0.49937 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3627 | 0.00019943 | 0.0017245 | -0.069361 | -0.62205 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5198 | 0.00014395 | 0.0016586 | -0.071333 | -0.4809 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5271 | 0.00021698 | 0.0017083 | -0.067483 | -0.57619 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4414 | 0.00024386 | 0.0016645 | -0.10115 | -0.47685 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3522 | 0.00014923 | 0.0017064 | -0.011451 | -0.54712 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1750 | 7.6325e-05 | 0.0017539 | 0.045042 | -0.64401 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 32985 | 0.00010961 | 0.0018600 | -0.030406 | -0.88398 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13185 | 0.00012786 | 0.0017785 | -0.024517 | -0.7496 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6152 |-1.1872e-05 | 0.0017899 | -0.0092085 | -0.74744 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4158 | 0.00024904 | 0.0017688 | -0.087208 | -0.8094 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16055 | 0.00035315 | 0.0018233 | -0.14699 | -0.85581 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43713 | 0.00015456 | 0.0018673 | -0.064666 | -0.92464 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 82920 | 8.9161e-05 | 0.0018808 | -0.038496 | -0.95769 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 107019 |-2.3758e-05 | 0.0018677 | 0.0095753 | -0.93598 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 103564 |-1.5815e-05 | 0.0018716 | 0.013009 | -0.91707 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 91334 | 1.7723e-05 | 0.0018431 | -0.015613 | -0.87569 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 57323 | 0.00013221 | 0.0018310 | -0.044715 | -0.8522 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1135479 | 5.7494e-05 | 0.0018602 | -0.022255 | -0.91129 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1135479 | 5.7494e-05 | 0.0018602 | -0.022255 | -0.91129 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1069596 | 4.9042e-05 | 0.0018722 | -0.017751 | -0.93515 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 65883 | 0.00016661 | 0.0016948 | -0.058157 | -0.54256 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1135479 | 3.1505 | 1.8140 | -0.0081382 | -1.1888 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1135479 | 0.025019 | 0.0054416 | -0.57538 | -0.57008 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 979943 | 0.00010907 | 0.0029242 | -0.044602 | -0.91364 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 |-4.3462e-05 | 0.0021442 | 0.10508 | 0.33855 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 50865 | 0.00052893 | 0.0028302 | -0.25434 | -0.73997 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 929 |-0.00023285 | 0.0020877 | 0.19963 | 0.32449 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2771 |-0.00011561 | 0.0023320 | 0.19243 | -0.013363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8922 | 6.595e-05 | 0.0025586 | 0.022179 | -0.37967 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28951 | 0.00028909 | 0.0026986 | -0.09845 | -0.5911 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113765 | 0.00029586 | 0.0028798 | -0.091429 | -0.8466 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 275732 | 4.0854e-05 | 0.0029701 | -0.0089732 | -0.97033 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 298730 |-8.1036e-06 | 0.0029617 | 0.0066095 | -0.96458 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 198949 | 7.3085e-05 | 0.0029247 | -0.051286 | -0.91311 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 66 | 0.00014789 | 0.0013981 | 1.3283 | 2.8001 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 263 |-4.3462e-05 | 0.0021442 | 0.10508 | 0.33855 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 50865 | 0.00052893 | 0.0028302 | -0.25434 | -0.73997 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 929 |-0.00023285 | 0.0020877 | 0.19963 | 0.32449 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2771 |-0.00011561 | 0.0023320 | 0.19243 | -0.013363 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8922 | 6.595e-05 | 0.0025586 | 0.022179 | -0.37967 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 28951 | 0.00028909 | 0.0026986 | -0.09845 | -0.5911 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 113765 | 0.00029586 | 0.0028798 | -0.091429 | -0.8466 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 275732 | 4.0854e-05 | 0.0029701 | -0.0089732 | -0.97033 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 298730 |-8.1036e-06 | 0.0029617 | 0.0066095 | -0.96458 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 198949 | 7.3085e-05 | 0.0029247 | -0.051286 | -0.91311 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 2004743 | 0.00011818 | 0.0029306 | -0.051642 | -0.92693 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 2004743 | 3.1346 | 1.8181 | 0.0072273 | -1.1915 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 2004743 | 0.040597 | 0.011083 | -0.64669 | -0.46941 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1024800 | 0.00012682 | 0.0029367 | -0.058305 | -0.93925 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 58028 | 0.00027362 | 0.0028521 | -0.044405 | -0.82386 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 0.00040503 | 0.0021919 | -0.41609 | 0.70999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2699 | 0.00034423 | 0.0024610 | -0.24684 | -0.15841 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6935 | 0.00032427 | 0.0026013 | -0.12305 | -0.46825 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25033 | 0.00048742 | 0.0026810 | -0.31122 | -0.53071 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 112946 | 0.0004652 | 0.0028872 | -0.22744 | -0.83772 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285608 | 0.00014392 | 0.0029770 | -0.082311 | -0.98928 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313550 |-6.9877e-06 | 0.0029754 | -0.0017084 | -0.98567 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218620 |-3.9738e-05 | 0.0029259 | 0.045005 | -0.92291 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13 | 0.001815 | 0.0000 | 0 | 0 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 | 8.4926e-05 | 0.0023380 | -0.28785 | 0.29753 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 58028 | 0.00027362 | 0.0028521 | -0.044405 | -0.82386 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 0.00040503 | 0.0021919 | -0.41609 | 0.70999 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2699 | 0.00034423 | 0.0024610 | -0.24684 | -0.15841 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6935 | 0.00032427 | 0.0026013 | -0.12305 | -0.46825 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 25033 | 0.00048742 | 0.0026810 | -0.31122 | -0.53071 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 112946 | 0.0004652 | 0.0028872 | -0.22744 | -0.83772 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 285608 | 0.00014392 | 0.0029770 | -0.082311 | -0.98928 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 313550 |-6.9877e-06 | 0.0029754 | -0.0017084 | -0.98567 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 218620 |-3.9738e-05 | 0.0029259 | 0.045005 | -0.92291 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 163850 | 4.0293e-05 | 0.0018576 | -0.0074363 | -0.9132 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 163850 | 4.0293e-05 | 0.0018576 | -0.0074363 | -0.9132 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 148007 | 3.2139e-05 | 0.0018752 | -0.0021893 | -0.9491 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15843 | 0.00010436 | 0.0017113 | -0.039113 | -0.5776 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3445 |-9.1672e-06 | 0.0017723 | 0.037423 | -0.75275 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5458 | 0.00017467 | 0.0018189 | -0.071614 | -0.83269 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2570 | 0.00021368 | 0.0018447 | -0.11197 | -0.8762 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1341 | 3.1951e-05 | 0.0017384 | -0.01663 | -0.62633 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7715 | 7.1065e-05 | 0.0018221 | 0.024563 | -0.88421 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14465 |-5.9089e-05 | 0.0018444 | 0.073125 | -0.88944 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19251 |-5.3285e-05 | 0.0018629 | 0.039232 | -0.91033 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22215 |-4.7206e-06 | 0.0018836 | 0.015574 | -0.95205 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25261 | 3.0693e-05 | 0.0019021 | -0.01498 | -0.99337 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24011 | 7.2062e-05 | 0.0019085 | -0.031863 | -1.0152 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13502 | 0.00012882 | 0.0018947 | -0.063281 | -0.9917 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8773 | 3.4888e-05 | 0.0018717 | -0.010253 | -0.95444 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 393 | 0.00017538 | 0.0017991 | -0.092901 | -0.62169 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 888 | 0.00012874 | 0.0017586 | -0.091772 | -0.68638 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 526 |-0.00012072 | 0.0018347 | 0.078323 | -0.71465 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 296 | 0.0001337 | 0.0015940 | 0.032019 | -0.17703 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 688 |-5.3161e-05 | 0.0016837 | 0.07148 | -0.53382 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1446 | 0.00022711 | 0.0017135 | -0.093701 | -0.58638 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1639 | 0.00014821 | 0.0017158 | -0.093849 | -0.62561 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1929 | 0.00012683 | 0.0017100 | -0.090158 | -0.56731 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2225 | 9.8741e-05 | 0.0016889 | 0.032464 | -0.52586 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2427 | 8.2862e-05 | 0.0017384 | -0.057516 | -0.56472 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1994 | 0.00010834 | 0.0017300 | -0.05604 | -0.67052 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1392 | 3.4277e-05 | 0.0015754 | 0.075043 | -0.37403 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3838 | 1.0824e-05 | 0.0017761 | 0.023692 | -0.74125 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6346 | 0.00016758 | 0.0018098 | -0.073821 | -0.81107 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3096 | 0.00014582 | 0.0018476 | -0.072888 | -0.85724 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1637 | 5.4238e-05 | 0.0017084 | -0.013009 | -0.53849 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8403 | 5.9439e-05 | 0.0018099 | 0.030665 | -0.85605 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15911 |-2.6897e-05 | 0.0018323 | 0.051374 | -0.86597 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20890 |-3.2196e-05 | 0.0018490 | 0.023451 | -0.88708 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24144 | 8.3443e-06 | 0.0018675 | 0.0041629 | -0.92101 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27486 | 3.7171e-05 | 0.0018829 | -0.013754 | -0.95591 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26438 | 7.3063e-05 | 0.0018933 | -0.033983 | -0.98052 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15496 | 0.00012575 | 0.0018710 | -0.061797 | -0.94913 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10165 | 3.4794e-05 | 0.0018293 | -0.001895 | -0.88066 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 169979 | 5.4036e-05 | 0.0018480 | -0.0054886 | -0.88774 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 169979 | 5.4036e-05 | 0.0018480 | -0.0054886 | -0.88774 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 155415 | 4.5168e-05 | 0.0018666 | -0.0018686 | -0.92448 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14564 | 0.00013265 | 0.0016714 | -0.015324 | -0.49715 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1089 |-3.2555e-05 | 0.0017899 | 0.096692 | -0.68107 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15519 |-5.7935e-05 | 0.0018379 | 0.084468 | -0.84681 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6894 | 0.00018468 | 0.0017615 | -0.03216 | -0.7394 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2544 |-1.4262e-05 | 0.0018091 | 0.0055643 | -0.78479 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2078 | 0.00019692 | 0.0017649 | -0.077998 | -0.76271 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4958 | 0.00014714 | 0.0018051 | -0.053628 | -0.79102 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8425 | 6.0226e-05 | 0.0018851 | -0.02817 | -0.91461 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13834 | 0.00029174 | 0.0018883 | -0.15174 | -0.95354 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27715 | 5.9278e-05 | 0.0018888 | -0.026069 | -0.98119 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27966 |-2.9448e-05 | 0.0018889 | 0.02515 | -0.97171 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24207 | 2.8242e-05 | 0.0018665 | 0.0017033 | -0.92558 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20186 |-4.2864e-05 | 0.0018642 | 0.0756 | -0.91013 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 259 | 1.4583e-05 | 0.0014754 | 0.15644 | -0.19132 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1406 | 0.00024173 | 0.0017216 | -0.10314 | -0.58127 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 804 | 1.657e-05 | 0.0016953 | 0.19647 | -0.56511 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 478 |-4.9631e-05 | 0.0015759 | -0.019417 | -0.056238 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 376 | 0.00029085 | 0.0015295 | 0.069171 | -0.32074 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 839 |-2.9466e-06 | 0.0016538 | 0.16817 | -0.42891 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1176 | 0.00016159 | 0.0016983 | 0.0071104 | -0.55705 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1617 | 9.7178e-05 | 0.0016674 | -0.064026 | -0.55282 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2001 | 5.9706e-05 | 0.0016534 | -0.079083 | -0.46984 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2002 | 0.00013886 | 0.0016894 | -0.020141 | -0.5153 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1888 | 0.00020934 | 0.0016661 | -0.10672 | -0.4446 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1718 | 0.00020244 | 0.0016801 | 0.022673 | -0.52889 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1348 |-2.1279e-05 | 0.0017200 | 0.10133 | -0.56697 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16925 |-2.8375e-05 | 0.0018290 | 0.063678 | -0.83067 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7698 | 0.00016657 | 0.0017553 | -0.0079399 | -0.72857 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3022 | -2.057e-05 | 0.0017698 | 0.0046518 | -0.68221 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2454 | 0.00021361 | 0.0017258 | -0.066242 | -0.68772 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5797 | 0.0001223 | 0.0017818 | -0.018571 | -0.74619 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9601 | 7.5204e-05 | 0.0018590 | -0.028206 | -0.86662 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15451 | 0.00026733 | 0.0018632 | -0.13622 | -0.91386 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29716 | 5.9309e-05 | 0.0018726 | -0.028775 | -0.95087 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 29968 |-1.5614e-05 | 0.0018739 | 0.018342 | -0.94113 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26095 | 4.5034e-05 | 0.0018496 | -0.010694 | -0.89069 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21904 |-2.0659e-05 | 0.0018497 | 0.065842 | -0.88173 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 333829 | 4.7331e-05 | 0.0018527 | -0.0065043 | -0.9002 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 333829 | 4.7331e-05 | 0.0018527 | -0.0065043 | -0.9002 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 303422 | 3.8853e-05 | 0.0018708 | -0.0020732 | -0.93646 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 30407 | 0.00011809 | 0.0016921 | -0.028584 | -0.53859 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 333829 | 3.1617 | 1.8139 | -0.016966 | -1.1883 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 333829 | 0.025251 | 0.0053286 | -0.61665 | -0.48409 | +RiCKTkMCResLong INFO 1D histograms in directory "RiCKTkMCResLong" : 741 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/expCK | "Rich1Gas deuteron Expected CK angle;Cher..." | 25883 | 0.034195 | 0.011809 | -0.37409 | -1.0586 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 47 | -0.16277 | 1.3931 | 0.327 | -0.57735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 69 | 0.19783 | 1.7372 | 0.31633 | -0.4347 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 278 | 0.41318 | 1.4810 | 0.10736 | -0.33018 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 286 | 0.30743 | 1.6981 | 0.18957 | -0.11157 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 162 | 0.33012 | 1.6393 | 0.096955 | -0.55248 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 211 | 0.15429 | 1.4825 | 0.15722 | 0.013931 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 128 | 0.37656 | 1.6290 | -0.036076 | -0.33892 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 118 | 0.20763 | 1.3480 | 0.4073 | 0.24585 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 120 | 0.0375 | 1.7327 | 0.089179 | -0.35049 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 76 | 0.068421 | 1.8457 | -0.017884 | -0.30392 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 125 | 0.37327 | 1.7030 | 0.2675 | -0.44998 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 50 | -0.49 | 1.7384 | 0.41521 | -0.39336 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 48 | 0.16667 | 1.3966 | -0.37029 | -0.4259 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 172 | 0.40149 | 1.4839 | 0.19578 | -0.12471 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 53 | -0.25189 | 1.7024 | 0.071899 | -0.76061 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 105 | 0.17981 | 1.6670 | -0.010306 | -0.5513 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 85 | 0.42882 | 1.6659 | -0.075162 | -0.53605 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 63 | 0.16452 | 1.6250 | 0.26103 | -0.70996 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 49 | 0.45 | 1.5607 | 0.080101 | 0.60598 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 159 | 0.28333 | 1.5531 | 0.26929 | -0.27231 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.12368 | 1.5367 | 0.13729 | -0.39296 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 59 | 0.17712 | 1.5152 | 0.22871 | -0.39801 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 70 | 0.12 | 1.6626 | 0.26341 | -0.24334 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.8125 | 1.3503 | 0.34895 | -0.51606 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.16481 | 1.5941 | 0.41352 | -1.0069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 36 | 0.75833 | 1.5768 | 0.12884 | -0.66308 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 37 | -0.10676 | 2.0810 | -0.0045216 | -1.1646 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 18 | 0.27222 | 0.85346 | 0.6268 | -0.058272 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.32917 | 1.6899 | -0.21031 | -0.84326 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/Pulls | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 46 | 0.53043 | 1.6093 | -0.30767 | -0.82497 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/expCK | "Rich1Gas electron Expected CK angle;Cher..." | 507233 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.045833 | 1.5304 | 0.42554 | -0.67328 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.068 | 1.3352 | -0.038102 | -0.71284 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.16923 | 1.4866 | 1.2465 | 1.7757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.13 | 1.7408 | 0.23854 | -0.96125 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.53833 | 1.3878 | 0.098272 | -0.64472 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.047368 | 1.3470 | 0.07768 | -0.94694 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.018966 | 1.4631 | 0.0044908 | -0.17652 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.19038 | 1.5563 | -0.4285 | 0.0054129 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | -0.61452 | 1.2288 | -0.194 | -0.9295 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.53182 | 1.6422 | -0.19756 | -0.43453 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | -0.12838 | 1.1629 | 0.12874 | -1.1398 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 0.38333 | 2.1895 | 0.23107 | -0.77716 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.1774 | 1.5221 | 0.15139 | -0.81126 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 639 | 0.081699 | 1.4196 | 0.32703 | -0.046622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | 0.094737 | 1.4992 | -0.40643 | -0.30119 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 12 | 1.3 | 1.2480 | -0.04926 | -1.3492 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.33387 | 1.4826 | 0.42503 | -0.0084735 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 953 | 0.12211 | 1.3804 | 0.28196 | 0.010151 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | -0.17222 | 1.3306 | 0.92053 | 0.28484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1085 | 0.15094 | 1.5168 | 0.21168 | -0.28581 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1266 | 0.096061 | 1.5987 | 0.2134 | -0.25969 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.27394 | 1.5455 | 0.31985 | -0.55725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 75 | 0.16081 | 1.7629 | 0.21758 | -0.59177 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1066 | 0.2127 | 1.6954 | 0.074628 | -0.42655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1322 | 0.14974 | 1.6529 | 0.17813 | -0.31394 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1140 | 0.21613 | 1.6166 | 0.12512 | -0.26547 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1008 | 0.24374 | 1.4702 | 0.20203 | -0.2494 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1254 | 0.2172 | 1.5568 | 0.18625 | -0.12125 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 981 | 0.17322 | 1.5227 | 0.13086 | -0.15626 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 1063 | 0.27231 | 1.5535 | 0.13491 | -0.22601 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 846 | 0.086966 | 1.6890 | 0.15235 | -0.40752 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 777 | 0.12663 | 1.6034 | 0.15364 | -0.21463 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 915 | 0.19744 | 1.6077 | 0.081685 | -0.27387 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 740 | 0.23898 | 1.6377 | 0.1299 | -0.16929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 911 | 0.28814 | 1.6103 | 0.073389 | -0.24816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 861 | 0.15303 | 1.5989 | 0.18914 | -0.153 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 545 | 0.24267 | 1.6690 | 0.063885 | -0.42752 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 520 | 0.30034 | 1.7229 | 0.13633 | -0.58833 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 535 | 0.32932 | 1.7869 | 0.077775 | -0.46677 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 715 | 0.16463 | 1.6101 | 0.13791 | -0.14658 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 437 | 0.079407 | 1.6266 | 0.19124 | -0.17206 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 528 | 0.24458 | 1.6741 | 0.11118 | -0.25565 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 393 | 0.23493 | 1.6288 | 0.27852 | -0.31048 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.31523 | 1.7093 | 0.31719 | -0.26998 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 611 | 0.22916 | 1.6140 | 0.095356 | -0.21843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.20502 | 1.6556 | -0.038498 | -0.52491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 404 | 0.32079 | 1.6266 | 0.18544 | -0.41092 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 356 | 0.3632 | 1.5757 | -0.029273 | -0.31344 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.25612 | 1.6275 | 0.294 | -0.19787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 187 | -0.039021 | 1.6869 | 0.11975 | -0.13981 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 359 | 0.29513 | 1.7014 | 0.17336 | -0.31575 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 246 | 0.382 | 1.5010 | 0.14137 | -0.13101 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 226 | 0.50369 | 1.5175 | 0.12653 | -0.85675 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.1991 | 1.6695 | 0.14881 | -0.49511 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 203 | 0.016667 | 1.7620 | 0.25013 | -0.38515 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.3345 | 1.6182 | -0.17699 | -0.44408 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.22222 | 1.5463 | 0.18585 | -0.24679 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 151 | 0.678 | 1.8480 | -0.2102 | -0.14974 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 189 | 0.29866 | 1.6903 | 0.16563 | -0.57044 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 385 | 0.29855 | 1.7243 | 0.13134 | -0.38579 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.016154 | 1.4624 | 0.53577 | 0.37024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 155 | 0.50536 | 1.6430 | 0.097847 | -0.6631 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 124 | 0.36855 | 1.4627 | 0.16295 | 0.40742 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | 0.31174 | 1.7980 | 0.11917 | -0.41323 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.062821 | 1.8153 | 0.22788 | -0.4877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.35789 | 1.7027 | 0.26746 | -0.81395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.312 | 1.9486 | -0.0062181 | -0.91483 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.51111 | 1.5120 | 0.063044 | -0.50076 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.15494 | 1.5373 | 0.1541 | -0.3149 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.70238 | 1.6704 | -0.32193 | 0.061069 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.34394 | 1.5910 | 0.33781 | -0.37387 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 92 | 0.063043 | 1.4052 | -0.081295 | -0.71369 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.17816 | 1.5311 | -0.171 | -0.40228 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 98 | 0.32449 | 1.6049 | 0.23465 | -0.56305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | -0.044872 | 1.4169 | 0.90768 | 0.21774 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.76875 | 1.6007 | -0.048859 | -0.92748 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.41545 | 1.4359 | 0.14635 | 0.60923 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.585 | 1.4989 | 0.24218 | -0.42071 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.3898 | -0.12417 | -1.028 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.195 | 1.5848 | 0.05333 | -0.62788 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.98571 | 1.4867 | 0.039315 | -0.72143 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.10652 | 1.5116 | 0.25676 | -0.96303 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.58448 | 1.6426 | 0.28059 | -1.0169 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.1378 | 1.4047 | 0.46536 | -0.21536 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.36356 | 1.3541 | 0.40372 | -0.30091 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.26053 | 1.3062 | 0.55256 | -0.2855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.2803 | 1.5870 | 0.65552 | -0.11744 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 90 | 0.23359 | 1.5405 | -0.076177 | -0.23327 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/Pulls/Pto | "Rich1Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.10333 | 1.0544 | 0.66644 | 0.38759 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckres | "Rich1Gas kaon Calculated CKres;Delta(Che..." | 507233 | 0.0009871 | 0.00019065 | 0.55517 | -0.869 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/expCKang | "Rich1Gas kaon Expected CK angle;Cherenko..." | 507233 | 0.038939 | 0.0088879 | -0.56514 | -0.74191 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.66481 | 2.0918 | 0.1145 | -0.92235 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.091026 | 2.0112 | 0.37032 | -0.67871 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.92083 | 1.7610 | 0.2229 | -0.60967 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 99 | 0.058163 | 1.5368 | -0.073383 | -0.58866 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.91364 | 1.6013 | -0.74125 | 0.15378 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.66622 | 1.1098 | 0.35562 | 0.15808 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.8881 | 2.2979 | -0.15501 | -0.7812 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.20517 | 1.8049 | -0.11775 | -1.3102 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.084 | 1.3912 | -0.1318 | -0.33493 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/Pulls/Pto | "Rich1Gas muon (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.3575 | 1.9422 | -0.37335 | -0.7097 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/expCKang | "Rich1Gas muon Expected CK angle;Cherenko..." | 507233 | 0.051597 | 0.00033041 | 0.10732 | -1.0596 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.3375 | 1.2913 | 0.91628 | 0.5081 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.38056 | 1.5753 | 0.49813 | 0.011698 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | -0.043651 | 1.5697 | 0.42889 | 0.54952 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.18594 | 1.4740 | -0.053315 | -0.030914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.085366 | 1.7453 | 0.2357 | -0.48539 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.45909 | 1.2501 | -0.066309 | -0.41464 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.092857 | 0.99765 | 0.7168 | -0.52307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | 0.29078 | 1.4960 | 0.22626 | -0.36675 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.32273 | 1.5689 | 0.95336 | 0.8499 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.56976 | 1.5518 | -0.057371 | -0.77686 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.0037037 | 1.5220 | 0.41611 | 0.48699 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.11333 | 1.2727 | 0.33758 | -0.74399 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | 0.12727 | 1.3271 | 0.41723 | -0.25088 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 86 | 0.71209 | 1.7110 | 0.14936 | -0.80772 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.13551 | 1.5190 | 0.31105 | 0.094294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.074242 | 1.3196 | -0.17969 | -0.37057 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 56 | 0.59464 | 1.4631 | 0.46549 | -0.29485 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.38913 | 1.6097 | 0.13477 | -0.30687 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.41087 | 1.4079 | -0.012807 | -0.905 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.34545 | 1.5657 | 0.37515 | -0.63107 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.3878 | 1.5584 | 0.14932 | -0.57613 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.54677 | 1.5767 | 0.019016 | -0.83685 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.13548 | 1.3911 | 0.2549 | -0.12183 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.458 | 1.3395 | 0.15396 | -0.97024 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16 | -0.61875 | 1.4898 | 1.4427 | 2.5245 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 19 | 1.2289 | 1.8326 | 0.56336 | -0.82816 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 977 | 0.37536 | 1.5524 | 0.064539 | -0.066318 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.15 | 1.3721 | 0.20722 | -0.63508 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.16071 | 1.6536 | -0.13324 | 0.013982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.34688 | 1.4117 | 0.089943 | -0.28637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11 | 0.65 | 1.3212 | 0.51163 | -0.84673 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.014286 | 1.1010 | 0.19864 | -0.7843 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 15427 | 0.27401 | 1.5842 | 0.096156 | -0.15525 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.47941 | 1.1620 | 0.11175 | -0.59122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.24362 | 1.3709 | -0.033615 | -0.37275 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.43148 | 0.90433 | -0.15906 | -0.74622 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 16993 | 0.29858 | 1.6154 | 0.10664 | -0.25894 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | 0.62391 | 1.8842 | 0.27939 | -1.1182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 17 | -0.13235 | 1.6103 | 0.14228 | -1.2535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | 0.5487 | 1.6982 | 0.20272 | -0.05032 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.45217 | 1.7551 | -0.40412 | -0.38983 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.58871 | 1.5485 | 0.00088544 | -0.72415 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14037 | 0.28257 | 1.6047 | 0.076966 | -0.28145 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 14071 | 0.30066 | 1.6133 | 0.065518 | -0.28249 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.32 | 1.6140 | 0.0296 | -0.77761 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 1.0043 | 1.3054 | 0.073761 | -0.55059 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 453 | 0.23239 | 1.5942 | 0.20149 | -0.53278 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 11689 | 0.26154 | 1.6247 | 0.081823 | -0.35168 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9901 | 0.28952 | 1.6473 | 0.12519 | -0.33856 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9780 | 0.26708 | 1.6103 | 0.098005 | -0.31954 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 9416 | 0.31026 | 1.6627 | 0.050017 | -0.30988 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8833 | 0.29621 | 1.6541 | 0.088594 | -0.3299 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7643 | 0.25279 | 1.6360 | 0.10966 | -0.30358 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 7122 | 0.23751 | 1.6613 | 0.14776 | -0.31124 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 6206 | 0.33449 | 1.6383 | 0.11502 | -0.33064 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5902 | 0.29969 | 1.6574 | 0.08824 | -0.24771 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4882 | 0.2879 | 1.6788 | 0.087983 | -0.38484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4922 | 0.26114 | 1.6885 | 0.12418 | -0.41185 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4139 | 0.24009 | 1.6848 | 0.12782 | -0.38677 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3699 | 0.30269 | 1.6410 | 0.10473 | -0.36488 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3894 | 0.32653 | 1.6508 | 0.13524 | -0.34832 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3626 | 0.30808 | 1.6285 | 0.11976 | -0.3836 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2780 | 0.21071 | 1.5901 | 0.083395 | -0.29653 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2595 | 0.31542 | 1.6432 | 0.12192 | -0.4169 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2792 | 0.31437 | 1.6531 | 0.12931 | -0.38535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2739 | 0.2852 | 1.6401 | 0.12218 | -0.26929 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2090 | 0.33206 | 1.5715 | 0.062223 | -0.36637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1925 | 0.32902 | 1.6544 | 0.080032 | -0.27433 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2424 | 0.26951 | 1.6049 | 0.13174 | -0.29939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2064 | 0.36395 | 1.5705 | 0.078054 | -0.41688 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1738 | 0.26128 | 1.6854 | 0.17716 | -0.30481 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1678 | 0.32383 | 1.6284 | 0.036496 | -0.13351 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1729 | 0.28519 | 1.6115 | 0.10354 | -0.2648 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1159 | 0.34277 | 1.6253 | 0.10903 | -0.36219 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1038 | 0.31998 | 1.5593 | 0.068972 | -0.19442 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1382 | 0.2635 | 1.6651 | 0.14389 | -0.21132 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 965 | 0.21424 | 1.6274 | 0.17006 | -0.28396 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1014 | 0.34927 | 1.6111 | -0.0619 | -0.21655 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 725 | 0.2293 | 1.6686 | 0.10917 | -0.27054 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 498 | 0.22185 | 1.7091 | 0.17999 | -0.52875 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 758 | 0.1997 | 1.5172 | 0.13364 | -0.37649 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 366 | 0.19874 | 1.6443 | 0.076488 | -0.42495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 546 | 0.14728 | 1.5883 | 0.25877 | -0.23728 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 766 | 0.1886 | 1.6214 | 0.23995 | -0.19668 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 665 | 0.21266 | 1.6021 | 0.15716 | -0.37422 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.48282 | 1.5812 | -0.072567 | -0.052192 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 389 | 0.27385 | 1.6242 | 0.14487 | -0.51659 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 292 | 0.21838 | 1.5920 | 0.05014 | -0.44412 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 388 | 0.21248 | 1.5062 | 0.049603 | -0.30674 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 328 | 0.24693 | 1.7293 | 0.1675 | -0.77721 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 265 | 0.029545 | 1.6037 | 0.0046675 | -0.57182 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 109 | 0.47202 | 1.5229 | 0.31747 | 0.11373 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 290 | 0.25657 | 1.7121 | 0.16775 | -0.32864 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.13962 | 1.4408 | 0.102 | -0.57953 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 147 | 0.35136 | 1.7811 | 0.20861 | -0.50305 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 89 | 0.04635 | 1.3904 | 0.057785 | 0.021867 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 200 | 0.12731 | 1.6485 | 0.1831 | -0.48672 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 81 | 0.29074 | 1.5028 | -0.082058 | 0.011692 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 71 | 0.2951 | 1.4414 | 0.19338 | 0.044117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 100 | 0.286 | 1.5754 | -0.089435 | -0.4776 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 79 | 0.13354 | 1.7212 | 0.37426 | -0.26768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 149 | 0.19161 | 1.6842 | 0.33571 | -0.27986 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.54649 | 1.7802 | 0.12941 | -0.86745 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.096667 | 1.5231 | 0.18368 | -0.41482 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.21271 | 1.5080 | 0.33922 | -0.057901 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 123 | 0.48577 | 1.5249 | 0.29054 | -0.59967 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.36149 | 1.5819 | 0.1971 | -0.061244 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 206 | 0.21865 | 1.5840 | 0.20432 | -0.18456 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 77 | 0.17857 | 1.2756 | 0.27811 | -0.39243 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.045556 | 1.3768 | 0.096113 | -0.21421 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 43 | 0.37326 | 1.8879 | 0.068673 | -0.84391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 140 | -0.090714 | 1.3871 | 0.34139 | 0.099898 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | 0.63359 | 1.3689 | 0.079111 | -0.8425 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 187 | 0.44572 | 1.4784 | 0.31489 | 0.0015237 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.024286 | 1.4119 | -0.055894 | -0.62381 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.042308 | 1.5818 | 0.69141 | 0.57976 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.46892 | 1.8004 | 0.19791 | -0.88849 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 84 | 0.31047 | 1.6936 | 0.24573 | -0.4629 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.29068 | 1.4544 | 0.2178 | -0.36339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 120 | 0.34323 | 1.6544 | 0.18691 | -0.36247 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | 0.28939 | 1.3868 | 0.06276 | -0.30288 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 185 | 0.44168 | 1.7261 | -0.030094 | -0.19787 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.10156 | 1.5088 | 0.51097 | -0.19122 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/Pulls/Pto | "Rich1Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.002381 | 1.1558 | -0.24842 | -0.56544 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/expCKang | "Rich1Gas pion Expected CK angle;Cherenko..." | 507233 | 0.051212 | 0.00053404 | -0.22345 | -0.89192 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.38333 | 1.3685 | 0.37511 | -1.1294 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.71977 | 1.3931 | -0.098087 | -0.9551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.39737 | 1.1740 | 0.10342 | -0.88391 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.045238 | 1.5677 | 0.043362 | -0.79201 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | -0.1431 | 1.6086 | 0.30951 | -0.76319 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.10517 | 1.7545 | 0.076162 | -1.0345 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.061111 | 1.7550 | 0.54533 | -0.7468 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.54412 | 1.3629 | 0.14933 | -0.76495 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | -0.25556 | 1.5346 | 0.60406 | -0.10839 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.322 | 1.4896 | 0.84535 | 0.28727 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.05 | 1.4414 | -0.059547 | 0.4304 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45938 | 1.3480 | 0.51195 | 0.070767 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.32895 | 1.6018 | 0.079019 | -1.1376 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.18333 | 1.2636 | 0.69707 | 0.19491 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.29222 | 1.6267 | 0.67929 | 0.03176 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.32 | 1.2075 | 0.048302 | 0.44948 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | -0.255 | 1.2408 | -0.19164 | -0.99174 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 1.38 | 1.6153 | -0.019492 | -0.47077 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 64 | 0.017188 | 1.4147 | 0.19068 | -0.93666 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | -0.14375 | 1.2843 | 0.65198 | -0.2046 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 0.088889 | 1.2842 | 0.46756 | 0.052338 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | -0.68 | 1.1100 | -0.17752 | -1.1339 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.60238 | 1.4692 | 0.019553 | -0.46279 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 29 | 0.1569 | 1.0099 | -0.18633 | -0.68982 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 123 | 0.14917 | 1.5133 | 0.098795 | -0.34094 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 36 | 1.5542 | 1.8389 | -0.51654 | -0.79535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 90 | 0.46656 | 1.4921 | 0.38852 | 0.12713 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.22309 | 1.5774 | 0.21111 | -0.26673 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 218 | 0.21455 | 1.6005 | 0.10558 | -0.55509 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 185 | 0.079981 | 1.6164 | 0.29705 | -0.078851 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 203 | 0.044533 | 1.8408 | 0.31942 | -0.068836 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 335 | -0.18603 | 1.8409 | 0.26645 | -0.52221 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 205 | 0.10665 | 1.6410 | 0.053939 | -0.1283 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 308 | 0.32989 | 1.7790 | 0.057564 | -0.54784 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 358 | 0.0375 | 1.7081 | 0.1811 | -0.4616 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 256 | -0.27818 | 1.8535 | 0.30923 | -0.36171 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 496 | 0.24652 | 1.6987 | -0.03312 | -0.40993 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 226 | 0.10745 | 1.5820 | 0.05933 | -0.39239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 357 | 0.21703 | 1.7376 | 0.049961 | -0.58861 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 245 | 0.082346 | 1.6050 | 0.36752 | -0.19443 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 328 | 0.31373 | 1.5650 | -0.04847 | -0.24301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 297 | 0.38179 | 1.5954 | -0.062554 | -0.50903 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 139 | 0.57569 | 1.7047 | 0.17549 | -0.40578 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 418 | 0.33302 | 1.6113 | 0.13836 | -0.41792 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 240 | 0.15295 | 1.6407 | -0.013233 | -0.044684 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 244 | 0.65581 | 1.7599 | 0.0071212 | -0.10976 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 167 | 0.35843 | 1.7844 | -0.081385 | -0.52355 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 178 | -0.2236 | 1.7780 | 0.10034 | -0.60725 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 161 | 0.077675 | 1.6204 | 0.064597 | -0.64268 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.85909 | 1.4872 | -0.14627 | -0.37856 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 98 | 0.29082 | 1.7317 | -0.023016 | -0.83614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 142 | 0.36479 | 1.6274 | -0.13257 | -0.3575 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 204 | 0.72192 | 1.5941 | 0.073747 | -0.60939 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | -0.25769 | 1.5140 | -0.5321 | -0.89062 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 129 | -0.056504 | 1.5937 | 0.13897 | -0.79723 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 138 | 0.058182 | 1.6749 | 0.14326 | -0.17216 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 57 | 0.35 | 1.5675 | 0.31176 | 0.16777 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 86 | 0.45361 | 1.7783 | 0.060961 | -0.57465 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.063043 | 1.7257 | -0.078439 | -0.60768 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 63 | 0.035714 | 1.6341 | -0.058004 | -0.20603 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | 0.77597 | 1.6790 | 0.28968 | -0.18365 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 94 | 0.56915 | 1.7559 | -0.067132 | -0.74564 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.47333 | 1.7460 | -0.14955 | -1.0002 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | -0.42246 | 1.7991 | 0.011139 | -0.69614 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.0094937 | 1.3227 | 0.2219 | 0.28138 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 70 | 0.16351 | 1.7744 | 0.12625 | -0.60876 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | 0.72778 | 1.9963 | 0.35113 | -0.90135 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 41 | 1.1817 | 1.2112 | -0.093692 | -0.66263 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.45313 | 1.2223 | 0.29492 | -1.0047 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 1.0033 | 1.5275 | -0.1506 | -0.78618 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.302 | 1.4607 | -0.30504 | -1.0115 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 60 | 0.46167 | 1.3284 | 0.17483 | -0.21647 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 47 | 0.62021 | 1.5146 | 0.15989 | 0.055015 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 37 | 1.0365 | 1.3696 | 0.19853 | 0.22388 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 76 | 0.53158 | 1.4861 | 0.070757 | -0.66558 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 40 | 0.575 | 1.9005 | -0.015152 | -0.7073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 111 | 0.068018 | 1.6184 | 0.05034 | -0.51884 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.40455 | 1.4788 | 0.017377 | 0.18269 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 26 | 0.088462 | 1.2413 | 0.63585 | -0.0826 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 55 | 0.56091 | 1.5981 | 0.36746 | -0.57393 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.21316 | 1.7033 | -0.41617 | -1.1073 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.55 | 1.3184 | 0.032896 | 0.4336 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 59 | 0.33644 | 1.2040 | 0.40019 | -0.36847 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/Pulls/P | "Rich1Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | -0.51364 | 1.5622 | 1.3987 | 1.1645 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckres | "Rich1Gas proton Calculated CKres;Delta(C..." | 191734 | 0.0011015 | 0.00027319 | 0.16005 | -1.5963 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/expCKan | "Rich1Gas proton Expected CK angle;Cheren..." | 191734 | 0.033079 | 0.010493 | -0.244 | -0.83445 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres;Delta..." | 17243 | 0.00043534 | 4.4586e-06 | -0.31676 | -1.0334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/expCK | "Rich2Gas deuteron Expected CK angle;Cher..." | 17243 | 0.020956 | 0.0049564 | -0.40067 | -0.85002 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | -0.28913 | 1.3091 | 0.016732 | -0.76703 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | -0.042593 | 1.4391 | 1.1121 | 2.1047 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 106 | 0.099038 | 1.3706 | 0.19427 | -0.063263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 254 | -0.068105 | 1.3971 | 0.17549 | 0.10607 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 31 | 0.053333 | 1.4673 | -0.40844 | -0.96634 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 21 | 0.25 | 1.7992 | -0.23488 | -0.4712 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 54 | -0.15 | 1.4859 | -0.61645 | 0.30753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 180 | 0.14611 | 1.3034 | 0.11232 | 0.012411 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 52 | 0.31923 | 1.2730 | 0.084512 | -0.50688 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 32 | 0.0625 | 1.0741 | -0.31341 | 0.84992 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 15 | 0.56333 | 0.84606 | -0.79603 | -0.38777 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 38 | 0.17368 | 1.4767 | 0.34522 | -0.53906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 27 | 0.45769 | 1.1307 | 0.56254 | -0.52082 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | 0.20758 | 1.1073 | 0.30928 | -0.24523 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 39 | -0.26282 | 1.1097 | -0.78644 | 1.3517 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.42917 | 1.4936 | 0.46054 | 0.88465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 5 | -2.15 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | 0.47308 | 1.3585 | 0.31277 | -0.33128 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 33 | -0.5629 | 2.1080 | 0.0015307 | -0.8353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 26 | -0.28077 | 1.4204 | 0.30656 | -0.74059 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 24 | 0.070833 | 1.1188 | 0.00051504 | -1.1434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/Pulls | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 25 | -0.15909 | 2.3653 | 0.22223 | -0.75096 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres;Delta..." | 195393 | 0.00047306 | 1.3639e-05 | 0.051353 | -0.98668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/expCK | "Rich2Gas electron Expected CK angle;Cher..." | 195393 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.078169 | 1.3504 | -0.33876 | 0.1486 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.59286 | 0.86055 | 0.098195 | -0.94628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | 0.17333 | 1.2709 | 0.28927 | -0.39808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.12143 | 1.4408 | 0.69322 | 0.77721 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 47 | 0.23696 | 1.2256 | 0.13226 | -0.18146 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.11706 | 1.2252 | -0.074952 | 0.068798 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.13588 | 1.3971 | -0.11807 | -0.75404 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.254 | 1.3425 | -0.35394 | -0.078737 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.05 | 1.5094 | 0.13578 | -0.76136 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 53 | 0.021698 | 1.2603 | 0.1399 | -0.71431 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 56 | -0.13571 | 1.2415 | 0.36767 | -0.63797 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 69 | 0.062871 | 1.2248 | 0.082352 | -0.30141 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 19 | 0.18529 | 1.1494 | 0.13401 | -0.53628 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | 0.53621 | 1.4112 | 0.1966 | 0.88881 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.088462 | 1.0164 | 0.32703 | -0.69894 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 14 | -0.35714 | 0.71959 | -0.087732 | -1.5986 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.26481 | 1.2975 | 0.10184 | -0.86697 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.082787 | 1.3241 | 0.52304 | 0.88588 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.08 | 1.7413 | -0.17937 | -0.69148 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.043333 | 1.2369 | 0.060205 | -0.26176 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.39783 | 1.4803 | 0.94114 | 0.23432 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 87 | -0.11118 | 1.2580 | 0.28478 | 0.74223 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | -0.019444 | 1.1180 | 0.16223 | 0.46825 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.44565 | 1.3017 | 0.57256 | 0.010865 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.05 | 1.1832 | -0.26338 | -0.71163 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 29 | -0.074138 | 1.2984 | 0.53663 | 0.15682 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 67 | -0.13587 | 1.3833 | -0.53241 | 0.96334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.18167 | 1.3712 | 0.19723 | -0.20692 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.066 | 1.0920 | 0.69627 | 0.247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.29375 | 1.3879 | 0.18835 | -0.82632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 0.146 | 1.3875 | -1.0564 | 0.62675 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.034615 | 1.4686 | 0.55974 | 0.6581 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | 0.395 | 1.6794 | 0.32269 | -1.1798 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 36 | 0.31667 | 1.1355 | 0.2314 | -0.79893 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.08913 | 1.3386 | 0.41784 | -0.53386 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 20 | -0.015 | 1.4301 | 0.81807 | -0.15424 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.19783 | 1.6657 | -0.10195 | -0.7808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.32778 | 1.1365 | -0.19851 | -0.32561 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.30424 | 1.3310 | -0.11951 | -0.39965 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.059677 | 1.1160 | -0.49303 | -0.56543 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 13 | -0.31154 | 0.82977 | -0.044771 | -0.047866 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 26 | 0.86538 | 1.4057 | -0.0082697 | -0.83172 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | -0.087037 | 1.1700 | -0.16078 | 0.55247 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.27 | 1.3809 | -0.16231 | -0.53953 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.019697 | 1.1408 | -0.38998 | 0.91954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 102 | 0.12255 | 1.3303 | 0.64121 | 0.431 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 50 | -0.11883 | 1.2498 | 0.51138 | 0.0098555 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 340 | -0.16326 | 1.4750 | 0.18887 | 0.080004 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 130 | 0.1583 | 1.4099 | 0.090684 | -0.13574 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 278 | 0.044011 | 1.3425 | -0.11172 | -0.39184 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 299 | -0.031019 | 1.3905 | 0.32501 | 0.12547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 304 | 0.068848 | 1.3807 | -0.057034 | 0.33621 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 384 | -0.033494 | 1.4022 | 0.11991 | 0.053126 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 323 | -0.013883 | 1.4333 | 0.07052 | 0.022152 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 447 | -0.094719 | 1.4004 | 0.41508 | 0.48876 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 347 | 0.16088 | 1.2914 | 0.29041 | 0.51472 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 317 | 0.28488 | 1.4803 | -0.048623 | -0.3252 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 416 | 0.24619 | 1.3838 | 0.27828 | 0.23739 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 230 | 0.13 | 1.5395 | 0.0022364 | 0.45131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 467 | -0.079815 | 1.2904 | 0.33285 | 0.11324 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 313 | 0.04547 | 1.4715 | 0.32171 | 0.16566 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | 0.14521 | 1.4142 | 0.081452 | -0.0097607 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.23857 | 1.3337 | 0.36415 | 0.047377 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 375 | -0.093597 | 1.4204 | 0.26204 | 0.2239 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 274 | -0.12014 | 1.4684 | 0.26808 | -0.26102 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 237 | -0.113 | 1.3111 | -0.081816 | -0.05149 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 166 | -0.13248 | 1.1992 | 0.23613 | -0.21624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 224 | 0.046623 | 1.5278 | 0.050595 | 0.71635 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 229 | 0.05093 | 1.2729 | 0.32334 | -0.26775 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 108 | 0.030556 | 1.3912 | -0.056598 | 0.010132 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 145 | 0.012222 | 1.3595 | 0.30983 | -0.20547 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 247 | -0.23178 | 1.4258 | 0.30797 | 0.63209 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 260 | 0.20323 | 1.4405 | 0.15323 | -0.0083506 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 111 | -0.01359 | 1.4601 | 0.44249 | -0.18912 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 147 | -0.11344 | 1.2802 | -0.23664 | -0.21643 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 153 | -0.21934 | 1.3179 | 0.25659 | 0.13343 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 242 | 0.048347 | 1.2001 | -0.027737 | 0.041604 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 85 | 0.14214 | 1.3931 | -0.024034 | -0.81738 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.09898 | 1.1666 | 0.3383 | -0.30996 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 106 | 0.04619 | 1.3858 | 0.27409 | -0.088025 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.22813 | 1.3035 | 0.11787 | 0.047461 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 96 | -0.10636 | 1.2685 | -0.050508 | -0.27448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 105 | -0.30294 | 1.3319 | 0.049975 | 0.22465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 59 | 0.065254 | 1.4153 | 0.3661 | 1.4182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 101 | -0.2302 | 1.1874 | -0.12859 | -0.37015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.40217 | 1.2054 | 0.16798 | -0.13864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 119 | -0.07043 | 1.3929 | -0.35001 | 0.62748 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.091964 | 1.4959 | 0.43745 | 0.86283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 42 | -0.25238 | 1.1226 | 0.67472 | -0.21564 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 38 | -0.26892 | 1.4025 | 0.13975 | 0.19776 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | -0.3123 | 1.2098 | 0.012558 | -0.32212 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 34 | 0.42059 | 0.96939 | 0.043071 | -0.59042 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.0063265 | 1.3702 | -0.27903 | 0.20625 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 55 | 0.22358 | 1.2681 | 0.22222 | 0.19041 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.018116 | 1.4544 | -0.12826 | -0.56274 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 27 | 3.7577e-16 | 1.4996 | 0.19546 | -0.87122 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.016667 | 1.3892 | 0.28172 | -0.13334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.14844 | 1.0123 | 0.09397 | -0.47964 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 28 | 0.15357 | 1.3018 | -0.11487 | -0.51942 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 32 | -0.74375 | 1.2609 | -0.42017 | 0.012395 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.16765 | 1.3594 | 0.26018 | -0.13904 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.15909 | 1.1766 | 0.46344 | -0.97546 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 31 | 0.027419 | 1.0850 | -0.0063757 | -0.19742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 21 | -0.0071429 | 1.2894 | 0.33485 | -1.1498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 49 | -0.29375 | 1.4065 | -0.28255 | -0.26242 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 33 | -0.10312 | 1.3752 | 0.25805 | -0.58306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 39 | 0.0089744 | 1.0504 | -0.24481 | -0.15492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 79 | -0.080657 | 1.1802 | 0.13393 | -0.44114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 23 | 0.041304 | 1.5773 | 0.33072 | -0.24887 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.14684 | 1.5697 | 0.81769 | 0.46294 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 99 | -0.026531 | 1.2628 | -0.45503 | 0.54924 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 72 | -0.024576 | 1.2579 | 0.070905 | -0.27437 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.085 | 1.3336 | -0.2324 | 0.56343 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/Pulls/Pto | "Rich2Gas kaon (Rec-Exp)/Res CKtheta - MC..." | 77 | -0.10354 | 1.2452 | -0.15157 | 0.046372 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckres | "Rich2Gas kaon Calculated CKres;Delta(Che..." | 195391 | 0.00047156 | 3.2967e-05 | 1.224 | 0.50814 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/expCKang | "Rich2Gas kaon Expected CK angle;Cherenko..." | 195391 | 0.023702 | 0.0036077 | -0.086029 | -1.0712 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 65 | -0.13835 | 0.92288 | -0.051066 | -0.1504 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.12385 | 1.6771 | -0.69408 | -0.21999 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 23 | -0.41957 | 1.8145 | 0.07273 | -1.3529 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.066667 | 0.76293 | 0.92477 | 0.85454 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 29 | -1.5017 | 1.5156 | -0.085468 | -1.0179 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 45 | 0.042784 | 1.0610 | -0.18999 | 0.38222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.13571 | 1.3434 | 0.36231 | -0.12119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.15 | 1.3879 | 0.49584 | 0.0052614 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.18846 | 1.1939 | 0.21781 | -1.1439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 22 | 0.35 | 1.1457 | -0.50101 | -0.37436 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 62 | 0.21935 | 1.3721 | -0.56857 | 0.76916 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 24 | 0.67174 | 1.4832 | -0.058377 | -0.13949 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/Pulls/Pto | "Rich2Gas muon (Rec-Exp)/Res CKtheta - MC..." | 32 | 0.14333 | 0.81932 | 0.1472 | -0.60394 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckres | "Rich2Gas muon Calculated CKres;Delta(Che..." | 195393 | 0.00051339 | 2.5292e-05 | -0.72402 | -0.5835 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/expCKang | "Rich2Gas muon Expected CK angle;Cherenko..." | 195393 | 0.029684 | 0.00015448 | -0.10083 | -0.79297 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | 0.20205 | 1.3525 | 0.36593 | 0.12277 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 194 | 0.042521 | 1.4994 | 0.14394 | -0.043641 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.056189 | 1.3939 | 0.04595 | 1.202 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | 0.24388 | 2.0100 | -0.019036 | -0.058334 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | 0.11981 | 1.4304 | 0.2992 | -0.12373 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 72 | 0.27523 | 1.6655 | 0.22763 | 0.097513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | -0.81964 | 2.2894 | 0.53471 | 0.29469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 136 | 0.03806 | 1.1712 | 0.013511 | -0.23053 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 117 | 0.11792 | 1.3058 | 0.17174 | -0.63151 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 143 | 0.016901 | 1.3608 | -0.098029 | 0.18097 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 52 | 0.038462 | 1.6043 | 0.25204 | -0.14831 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 78 | -0.025325 | 1.3101 | -0.10602 | -0.50126 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.01 | 1.6066 | -0.3327 | -0.20678 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 70 | 0.2693 | 1.7190 | 0.065768 | 0.31218 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.11111 | 1.4253 | 0.69884 | 1.9919 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | -0.36667 | 1.4845 | -0.19951 | 0.78161 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 24 | -0.20833 | 1.7905 | -0.029422 | -0.41083 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 65 | 0.15615 | 1.2349 | 0.37803 | 0.35114 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 96 | 0.14664 | 1.3661 | -0.31527 | 0.089899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.31364 | 1.2629 | -0.36159 | 0.2148 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 85 | -0.11689 | 1.2505 | 0.061172 | -0.094448 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 76 | -0.2637 | 1.5871 | 0.087329 | -0.48441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 87 | 0.24674 | 1.2045 | 0.51167 | 1.5998 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.013014 | 1.2339 | -0.2356 | 0.33475 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | -0.28103 | 1.1897 | 0.056302 | 0.27976 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 64 | 0.010606 | 1.2742 | 0.48529 | 0.045969 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 66 | -0.18385 | 1.5397 | -0.47382 | -0.11537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.023874 | 1.2447 | 0.24918 | 0.35802 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.0045455 | 1.1309 | 0.16329 | -0.94287 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.176 | 1.3862 | -0.042212 | -0.15467 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 22 | -0.21818 | 1.4493 | 0.069789 | -0.6458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 103 | -0.0014563 | 1.7224 | -0.048944 | -0.2254 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | 0.17105 | 1.3196 | -0.072466 | 0.30073 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | 0.1378 | 1.3772 | 0.34513 | 0.53099 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 48 | -0.10417 | 1.3022 | -0.088103 | -0.16062 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 50 | 0.22294 | 1.6269 | 0.23432 | -0.081624 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.093243 | 1.4330 | -0.55072 | 1.3788 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 46 | -0.074444 | 0.99402 | 0.65118 | 0.88702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 40 | 0.055128 | 1.3510 | 0.36476 | -0.1814 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 73 | -0.027391 | 1.5409 | 0.10844 | 0.62333 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 20 | 0.295 | 1.1569 | 0.36052 | -0.64619 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 74 | -0.25 | 1.2361 | 0.23373 | 0.71468 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 82 | -0.09878 | 1.4623 | 0.32497 | 1.0796 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 60 | -0.028333 | 1.3536 | -0.083373 | -0.5263 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | -0.226 | 1.5143 | -0.60196 | 0.55374 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.252 | 1.2321 | 0.14682 | -0.32556 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 47 | -0.19894 | 1.5174 | -0.39579 | -0.96604 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | 0.61 | 1.1473 | 0.74209 | -0.55037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 57 | -0.086782 | 1.2683 | -0.41865 | 0.2946 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 83 | 0.037952 | 1.3214 | 0.40104 | -0.031381 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 26 | -0.30385 | 1.4905 | 0.11697 | -0.69498 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.14815 | 1.2660 | 0.25293 | 1.1864 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 110 | 0.058247 | 1.4819 | 0.092558 | -0.36836 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 54 | 0.21792 | 1.3412 | 0.39626 | 0.20979 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 41 | 0.01 | 1.5868 | -0.018956 | -0.50396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 67 | 0.25308 | 1.5931 | 0.028918 | -0.61793 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 93 | -0.10161 | 1.3518 | 0.31993 | 0.68351 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.16852 | 1.1146 | -0.17595 | -0.48295 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 63 | 0.20714 | 1.2610 | 0.048398 | -0.5136 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 18 | 0.43333 | 1.3700 | 0.29621 | -0.85938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 44 | -0.39168 | 1.9068 | 0.24089 | 0.32745 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 160 | 0.017763 | 1.3524 | 0.052802 | 0.057283 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 30 | -0.0033333 | 1.2969 | 0.71759 | -0.41391 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 94 | 0.088961 | 1.1814 | 0.063416 | -0.44385 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 112 | -0.015445 | 1.4234 | -0.33155 | 0.48686 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | -0.14189 | 1.3253 | 0.34393 | 1.0312 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 25 | 0.182 | 1.1418 | -0.65797 | -0.41921 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 59 | -0.14153 | 1.3324 | 0.93904 | 1.718 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 51 | 0.14216 | 1.3998 | -0.11703 | -0.4019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 35 | 0.59857 | 1.1269 | 0.15378 | -0.22203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 68 | 0.13529 | 1.3580 | 0.25848 | -0.32116 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 42 | 0.10476 | 1.5157 | -0.30022 | -0.78135 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 80 | 0.014234 | 1.2693 | -0.053422 | -0.54499 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 27 | -0.29815 | 1.2937 | -0.3549 | 0.25246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 8 | -0.1625 | 1.4564 | -0.24305 | -0.75469 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 58 | 0.0063636 | 1.3241 | 0.16759 | -0.54721 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 34 | -0.055882 | 1.0079 | -0.0034036 | -1.0625 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 37 | 0.21486 | 1.1454 | 0.87467 | 2.1396 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1166 | 0.10535 | 1.4389 | 0.15443 | 0.402 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2074 | 0.036475 | 1.3831 | 0.10933 | 0.2284 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 5258 | 0.034592 | 1.3412 | 0.028039 | 0.5311 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4450 | 0.015964 | 1.3580 | 0.077843 | 0.5465 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3713 | -0.0090474 | 1.3692 | -0.074592 | 0.42392 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3618 | 0.027589 | 1.3763 | 0.03888 | 0.49182 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 4143 | 0.025494 | 1.3396 | 0.084894 | 0.40868 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3869 | 0.057019 | 1.3359 | 0.10607 | 0.47422 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2975 | -0.016933 | 1.3480 | 0.16002 | 0.54412 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2826 | 0.044801 | 1.4565 | 0.086929 | 0.53314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 3541 | 0.016585 | 1.3569 | 0.13088 | 0.63938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2851 | 0.032377 | 1.3723 | 0.1647 | 0.3855 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2616 | 0.070362 | 1.3426 | 0.059947 | 0.76444 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2497 | 0.0020726 | 1.4042 | 0.086725 | 0.46111 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2572 | 0.014014 | 1.3567 | 0.10455 | 0.33652 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1671 | 0.080485 | 1.3335 | 0.12942 | 0.20265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2084 | 0.05679 | 1.3933 | 0.046992 | 0.45711 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 2040 | 0.094418 | 1.4166 | 0.16273 | 0.26372 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1856 | 0.030557 | 1.4240 | 0.23275 | 0.36808 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1509 | 0.024305 | 1.3500 | 0.063002 | 0.2665 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1272 | -0.043632 | 1.3629 | 0.1365 | 0.41207 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1205 | -0.046321 | 1.2970 | 0.030037 | 0.026195 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1086 | 0.031244 | 1.4507 | 0.15607 | 0.34521 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 826 | 0.046962 | 1.4462 | 0.06189 | 0.55948 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1126 | -0.019571 | 1.3218 | 0.18387 | 0.1632 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 1373 | 0.047998 | 1.3262 | 0.075608 | 0.16837 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 997 | 0.014539 | 1.4168 | -0.014641 | 0.13353 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 859 | 0.011382 | 1.3518 | 0.22844 | 0.18931 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 691 | 0.073203 | 1.3437 | 0.11481 | -0.13995 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 618 | 0.060485 | 1.4386 | 0.053485 | 0.81545 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 819 | 0.0017928 | 1.3976 | 0.12096 | 0.34926 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 515 | 0.11236 | 1.3438 | -0.029507 | 0.34753 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 601 | 0.10998 | 1.5639 | -0.059437 | 0.097268 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 413 | 0.047266 | 1.5464 | 0.013839 | 0.27641 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 585 | -0.027279 | 1.5442 | 0.068099 | 0.74203 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 516 | 0.021865 | 1.4301 | 0.05337 | 0.45267 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 406 | -0.04825 | 1.3887 | -0.095169 | 0.48354 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 484 | -0.17917 | 1.4651 | 0.073398 | 1.1121 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 394 | 0.053537 | 1.3738 | 0.058017 | -0.058925 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 193 | -0.031921 | 1.2561 | 0.1169 | -0.37854 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 282 | 0.11554 | 1.3669 | 0.30377 | 0.59149 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 351 | 0.045613 | 1.2986 | 0.069631 | 0.17013 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 275 | 0.069414 | 1.3836 | 0.0071098 | 0.089119 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 234 | -0.074883 | 1.5795 | 0.026771 | 0.97978 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 196 | 0.031232 | 1.3372 | 0.069406 | -0.10578 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 213 | 0.15859 | 1.2771 | -0.092534 | 0.63111 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 150 | -0.26165 | 1.2660 | 0.31285 | 0.021425 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 177 | -0.28091 | 1.4041 | 0.36188 | 0.095458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 248 | -0.0089499 | 1.5129 | 0.32941 | 0.24157 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 284 | 0.19688 | 1.4571 | 0.26025 | 0.29071 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 208 | 0.15611 | 1.2685 | 0.023342 | -0.32336 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 220 | -0.10623 | 1.2418 | 0.13371 | 0.34276 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 176 | 0.086254 | 1.3350 | 0.16763 | 1.0137 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 182 | 0.12874 | 1.3256 | 0.11194 | 0.11656 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 221 | 0.11253 | 1.2889 | 0.24439 | 0.016892 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 231 | 0.021396 | 1.2938 | -0.072601 | 0.10779 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 211 | -0.051905 | 1.4409 | -0.31094 | 0.49349 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 165 | -0.039091 | 1.2181 | 0.21102 | -0.15673 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 148 | -0.1221 | 1.3210 | 0.28147 | 0.48256 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 154 | 0.10263 | 1.2796 | 0.071635 | 0.26015 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 230 | -0.050714 | 1.2236 | -0.26439 | -0.22348 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 164 | -0.035971 | 1.4131 | 0.17555 | -0.31591 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 321 | 0.25066 | 1.2306 | 0.33272 | 0.03129 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 141 | 0.024689 | 1.4935 | 0.074293 | -0.15173 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 218 | 0.13018 | 1.3435 | 0.13134 | 0.4674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 205 | 0.10857 | 1.1677 | 0.011236 | 0.20713 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 155 | -0.031935 | 1.2560 | -0.063219 | 0.38504 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 145 | -0.058392 | 1.5020 | -0.0051542 | 0.40271 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/Pulls/Pto | "Rich2Gas pion (Rec-Exp)/Res CKtheta - MC..." | 207 | 0.16684 | 1.4829 | 0.3909 | 0.42229 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckres | "Rich2Gas pion Calculated CKres;Delta(Che..." | 195393 | 0.00045367 | 8.9071e-06 | 0.47307 | -0.92702 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/expCKang | "Rich2Gas pion Expected CK angle;Cherenko..." | 195393 | 0.029507 | 0.00023674 | 0.1974 | -1.1187 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 49 | -0.22143 | 1.2182 | 0.33744 | 0.030037 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.49815 | 2.0115 | 0.21819 | 0.30456 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.73636 | 1.5107 | -0.090357 | -1.2057 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.25 | 1.0965 | 0.42938 | -0.82315 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.096429 | 1.3497 | 0.29914 | -0.42255 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | -0.14318 | 1.3491 | 0.57365 | -0.065421 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 65 | 0.085938 | 1.4079 | 0.058135 | -0.048441 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | -0.20667 | 1.3401 | 1.1926 | 1.8734 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.23333 | 1.2217 | 0.80248 | 0.047537 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.41522 | 1.3223 | -0.37079 | -0.76987 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.28696 | 1.1981 | 0.50588 | -0.025306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.45732 | 1.5627 | 0.029379 | -0.50055 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 42 | -0.096875 | 1.2800 | -0.048156 | -0.15131 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | 0.275 | 0.91754 | 0.58292 | -0.2513 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.49286 | 1.3963 | 0.35045 | -0.15411 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.38529 | 1.4824 | 0.12517 | 0.14956 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 32 | -0.028125 | 1.3462 | 0.46977 | 0.06325 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | -0.2537 | 1.3409 | -0.32969 | -0.293 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | -0.17105 | 1.1496 | -0.31826 | -0.17285 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.25727 | 1.3316 | -0.37016 | 0.17899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.0375 | 1.4715 | -0.21839 | -0.91115 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 14 | 0.44286 | 1.4621 | 1.3624 | 1.3897 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.065 | 1.4005 | 0.43518 | -0.40731 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 25 | 0.70217 | 2.4286 | -0.37144 | -0.98709 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 45 | 0.12813 | 1.9108 | -0.41373 | -0.1732 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.09 | 0.91400 | -0.36305 | -0.46276 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | 0.32727 | 1.5556 | 0.35204 | -0.92548 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.47222 | 1.2484 | -0.74618 | 0.78883 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | 0.078947 | 1.6835 | 0.38265 | -0.2269 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.26957 | 1.3024 | 0.64208 | 1.694 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 10 | 0.73 | 0.97139 | 0.79928 | -0.85505 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.066667 | 1.1357 | -0.17661 | -1.0941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 73 | 0.11575 | 1.2808 | -0.12865 | 0.42451 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.12742 | 1.0883 | 0.20432 | 0.52524 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 52 | 0.35 | 1.4968 | 0.019682 | -0.47202 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.095455 | 0.90958 | -0.7757 | 0.48492 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | -0.32391 | 1.1983 | -0.51064 | -0.15802 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.30217 | 1.4631 | -0.55069 | -0.11266 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 19 | 0.097368 | 1.8285 | 0.37962 | -0.39659 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.016667 | 1.3163 | 0.65559 | 0.07439 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | -0.075926 | 1.4764 | -0.44514 | -0.1905 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 50 | -0.222 | 1.4182 | 0.41732 | 1.6714 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | -0.044444 | 1.3062 | 0.094665 | -0.12742 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 20 | 0.35 | 1.1567 | 0.18221 | -1.3858 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 293 | 0.25314 | 1.4446 | 0.048112 | 0.18938 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 2 | -0.61667 | 0.047140 | 0.70711 | -1.5 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | -0.23 | 1.5833 | -0.49556 | -0.35038 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 11 | 0.78636 | 2.2596 | -0.95572 | 0.53655 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 31 | -0.87 | 1.7936 | -0.049495 | -0.44914 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 1.525 | 1.3131 | 0.054304 | -0.12314 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 44 | 0.32209 | 1.9550 | -0.053943 | -0.83379 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.4902 | 1.7951 | 0.51457 | 0.2572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.85 | 1.8248 | 0.22167 | -0.54405 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.25 | 1.3740 | -0.18005 | -0.9204 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.15357 | 1.7691 | -0.59632 | -0.56382 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 28 | 0.55217 | 1.5890 | -0.49206 | -0.54899 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | -0.97895 | 1.8707 | -0.12217 | -0.88046 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.31182 | 1.6666 | 0.36 | 0.63617 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 34 | 0.95 | 1.6811 | -0.078952 | -0.28025 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | -0.58429 | 1.2081 | -0.20615 | -0.97647 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.46026 | 1.7650 | 0.040871 | -0.55529 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 56 | 0.46789 | 1.5522 | -0.3819 | -0.40504 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 22 | -0.41818 | 1.1479 | 0.40371 | -0.98508 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 35 | 0.85571 | 1.4010 | -0.55849 | -0.50917 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 15 | 0.60333 | 1.4037 | -1.3986 | 2.0433 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 23 | 0.21522 | 1.0809 | -0.38439 | -1.0079 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | 0.48478 | 1.5153 | -0.093516 | -0.96806 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 9 | -0.47857 | 0.89077 | 0.04492 | -0.7763 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 18 | 0.061765 | 1.6313 | 0.22906 | -0.49994 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 74 | -0.031081 | 1.5673 | 0.019245 | -0.39941 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 33 | 0.16515 | 1.5578 | 0.19421 | -0.27751 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 38 | -0.35789 | 1.2970 | 0.12018 | -0.066865 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -0.19691 | 1.3650 | 0.53361 | 0.069819 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | 0.01087 | 1.2957 | 0.11551 | -0.3927 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 46 | -1.0053 | 1.2296 | 0.024809 | -0.36402 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 51 | 0.014706 | 1.4296 | -0.40421 | -0.23914 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 39 | 0.055128 | 1.4578 | 0.34568 | 0.68906 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 30 | 0.49894 | 1.3979 | 0.33595 | -0.38313 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 16 | 1.6375 | 1.3033 | 0.18947 | -0.84084 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 72 | -0.11901 | 1.2339 | 0.50366 | 0.43954 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 66 | -0.16875 | 1.5068 | 0.031166 | -0.37222 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 43 | 0.0047619 | 2.1314 | -0.023749 | -0.3842 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 27 | 0.1775 | 1.9503 | 0.47931 | -0.86019 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 24 | -0.27083 | 1.3705 | 0.14245 | -0.0062807 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 54 | -0.25185 | 1.3313 | 0.42292 | -0.44177 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 21 | 0.135 | 1.1042 | 0.92148 | 0.47301 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 53 | 0.19151 | 1.2063 | 0.52603 | 0.043091 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/Pulls/P | "Rich2Gas proton (Rec-Exp)/Res CKtheta - ..." | 69 | 0.21308 | 1.1380 | 0.14799 | -0.47242 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckres | "Rich2Gas proton Calculated CKres;Delta(C..." | 72104 | 0.00049445 | 7.1238e-05 | 0.68829 | -1.2595 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/expCKan | "Rich2Gas proton Expected CK angle;Cheren..." | 72104 | 0.021135 | 0.0057983 | -0.25797 | -1.2383 | +RiMCOpticalPhotonsLong INFO 1D histograms in directory "RiMCOpticalPhotonsLong" : 112 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXGloShi | "Rich1 Reco-MC Global X hit position;Reco..." | 270062 |-0.00042731 | 0.83191 |-0.00062497 | -1.1857 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixXLocShi | "Rich1 Reco-MC Local X hit position;Reco-..." | 270062 |-0.00042731 | 0.83191 |-0.00062497 | -1.1857 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYGloShi | "Rich1 Reco-MC Global Y hit position;Reco..." | 270062 | -0.022625 | 0.80953 | 0.040016 | -1.0687 | + | /RICH/RiMCOpticalPhotonsLong/Rich1/pixYLocShi | "Rich1 Reco-MC Local Y hit position;Reco-..." | 270062 | -0.001102 | 0.83203 | 0.00064594 | -1.1887 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Angle between TkNeg Reco and MC..." | 135288 | 0.70489 | 0.29998 | 0.30632 | -0.024485 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas X Projection of angle between T..." | 135288 | -0.66979 | 0.32136 | 0.024101 | 0.39978 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Y Projection of angle between T..." | 135288 | -0.046077 | 0.18520 | 0.053358 | 2.5423 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | -0.52138 | 17.579 | 0.019715 | 4.5281 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | -0.42816 | 18.117 | -0.021886 | 4.1596 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas Reco-MC TkNeg Track Photon Emis..." | 135288 | 6.5863 | 332.02 | 0.1025 | -1.1576 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | -1.0207 | 77.543 | -0.044077 | 1.7692 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | 1.5992 | 79.687 | -0.11571 | 1.5835 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Track Photon Emission ..." | 135288 | 1502.5 | 331.86 | -0.099432 | -1.1613 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks X Slope;MC X Sl..." | 135288 | -0.001696 | 0.047468 | 0.0093741 | 0.27637 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 135288 | -0.001696 | 0.047468 | 0.0093741 | 0.27637 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | -1.6203 | 78.473 | -0.050209 | 1.5622 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | 1.0345 | 81.407 | -0.13156 | 1.4941 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Track Photon Emissio..." | 135288 | 1509.4 | 13.248 | 10.872 | 184.53 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks X Slope;Reco ..." | 135288 | -0.0010154 | 0.047446 | 0.0056607 | 0.27799 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg Reco Tracks Y Slope;Reco ..." | 135288 | -0.0010154 | 0.047446 | 0.0056607 | 0.27799 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Angle between TkPos Reco and MC..." | 134774 | 0.62917 | 0.28046 | 0.70732 | 5.2216 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas X Projection of angle between T..." | 134774 | -0.57974 | 0.31894 | 0.74595 | 5.5258 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Y Projection of angle between T..." | 134774 | -0.047104 | 0.19010 | -0.48375 | 10.31 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | -0.54212 | 17.312 | 0.058516 | 4.5161 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | -0.43674 | 17.796 | -0.01023 | 4.0956 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas Reco-MC TkPos Track Photon Emis..." | 134774 | 7.2141 | 331.17 | 0.098215 | -1.1504 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 7.7066 | 76.452 | -0.11347 | 1.8567 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 1.1611 | 78.354 | -0.056882 | 1.5687 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Track Photon Emission ..." | 134774 | 1502.1 | 330.97 | -0.096031 | -1.1536 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks X Slope;MC X Sl..." | 134774 | 0.0050224 | 0.046404 | -0.091742 | 0.2016 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 134774 | 0.0050224 | 0.046404 | -0.091742 | 0.2016 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 7.2302 | 77.627 | -0.14776 | 1.7778 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 0.85376 | 79.868 | -0.018321 | 1.5054 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Track Photon Emissio..." | 134774 | 1509.7 | 14.406 | 9.982 | 148.83 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks X Slope;Reco ..." | 134774 | 0.0055993 | 0.046404 | -0.092477 | 0.19782 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos Reco Tracks Y Slope;Reco ..." | 134774 | 0.0055993 | 0.046404 | -0.092477 | 0.19782 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0);P..." | 85 | 50.035 | 10.108 | -0.054251 | -0.42086 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 8.6529 | 10.482 | 0.20257 | -0.22531 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | 30.886 | 12.015 | 0.023622 | -0.19138 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1011 | 26.99 | 11.028 | -0.25867 | -0.37989 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0);Photo..." | 71 | 50.859 | 12.732 | -0.6959 | 1.1273 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 4.7958 | 12.156 | 0.31302 | 0.037004 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0);Pho..." | 71 | 33.817 | 11.406 | -0.032149 | -0.5859 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 21.838 | 10.825 | -0.13735 | -1.0127 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0);Photo..." | 11 | 49.727 | 13.322 | -1.4252 | 1.4323 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 8.5909 | 12.595 | 1.009 | 0.33883 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0);Pho..." | 46 | 34.239 | 11.310 | 0.14778 | -0.63762 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 24.196 | 11.479 | -0.065503 | -0.85017 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0);Photo..." | 6064 | 51.36 | 11.553 | -0.17394 | -0.1302 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6064 | 5.3992 | 11.454 | 0.09848 | -0.15171 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0);Pho..." | 6227 | 33.566 | 10.649 | 0.21886 | -0.24352 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6227 | 23.249 | 10.581 | -0.16582 | -0.31119 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0);Pho..." | 8 | 47.375 | 5.9569 | 0.78487 | -0.89872 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 6.625 | 7.0256 | -0.53315 | -1.1496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0);P..." | 9 | 27.333 | 6.0736 | -0.29425 | -1.094 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 26.722 | 6.6630 | 0.34465 | -1.4965 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXGloShi | "Rich2 Reco-MC Global X hit position;Reco..." | 2825 | -43.678 | 24.216 | -0.90591 | -1.1724 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixXLocShi | "Rich2 Reco-MC Local X hit position;Reco-..." | 2825 | -56.387 | 1.2535 | 0.29557 | 0.10965 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYGloShi | "Rich2 Reco-MC Global Y hit position;Reco..." | 2825 | 0.016018 | 1.1751 | -0.063185 | 0.037049 | + | /RICH/RiMCOpticalPhotonsLong/Rich2/pixYLocShi | "Rich2 Reco-MC Local Y hit position;Reco-..." | 2825 | -0.019027 | 1.1473 | 0.011172 | -0.04651 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Angle between TkNeg Reco and MC..." | 964 | 0.28691 | 0.28123 | 5.6218 | 49.387 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas X Projection of angle between T..." | 964 | 0.016747 | 0.28414 | -1.9506 | 23.096 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Y Projection of angle between T..." | 964 | -0.075171 | 0.27676 | -3.9453 | 47.314 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | -1.6557 | 30.126 | -0.035206 | 0.087022 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | -0.34172 | 15.277 | -0.18715 | 3.8616 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas Reco-MC TkNeg Track Photon Emis..." | 964 | 27.941 | 539.84 | -0.024878 | -1.1931 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | -233.79 | 329.08 | 0.93032 | 2.095 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | 5.4143 | 300.07 | 0.14238 | 1.6301 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Track Photon Emission ..." | 964 | 10413 | 539.52 | 0.037839 | -1.1727 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks X Slope;MC X Sl..." | 964 | -0.044489 | 0.033723 | 0.77104 | 1.211 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg MC Tracks Y Slope;MC Y Sl..." | 964 | -0.044489 | 0.033723 | 0.77104 | 1.211 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | -234.82 | 329.62 | 0.9628 | 2.0511 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | 4.8074 | 299.53 | 0.1243 | 1.4388 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Track Photon Emissio..." | 964 | 10441 | 39.416 | 0.47871 | 0.67033 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks X Slope;Reco ..." | 964 | -0.04456 | 0.033761 | 0.76981 | 1.1935 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg Reco Tracks Y Slope;Reco ..." | 964 | -0.04456 | 0.033761 | 0.76981 | 1.1935 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Angle between TkPos Reco and MC..." | 1834 | 0.30882 | 0.30827 | 6.9352 | 69.596 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas X Projection of angle between T..." | 1834 | 0.037434 | 0.28119 | 2.4009 | 27.286 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Y Projection of angle between T..." | 1834 | -0.063699 | 0.32727 | 1.8692 | 63.007 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | -0.80789 | 33.441 | -0.018611 | -0.071723 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | 0.12486 | 14.290 | -0.21011 | 3.7102 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas Reco-MC TkPos Track Photon Emis..." | 1834 | -13.711 | 549.48 | 0.045469 | -1.1632 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | 347.31 | 242.50 | -0.090952 | 4.1824 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | -1.0094 | 281.65 | -0.1219 | 1.5924 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Track Photon Emission ..." | 1834 | 10460 | 550.68 | -0.028372 | -1.1489 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks X Slope;MC X Sl..." | 1834 | 0.055861 | 0.025340 | -0.11721 | 2.2254 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos MC Tracks Y Slope;MC Y Sl..." | 1834 | 0.055861 | 0.025340 | -0.11721 | 2.2254 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | 346.01 | 237.70 | -0.19327 | 4.2228 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | -0.58613 | 281.37 | -0.15077 | 1.5584 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Track Photon Emissio..." | 1834 | 10446 | 38.738 | 0.75532 | 1.055 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks X Slope;Reco ..." | 1834 | 0.055823 | 0.025263 | -0.11954 | 2.2465 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos Reco Tracks Y Slope;Reco ..." | 1834 | 0.055823 | 0.025263 | -0.11954 | 2.2465 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0);P..." | 50 | 27.62 | 11.016 | -0.88557 | 0.002351 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 50 | 9.08 | 11.878 | 1.0972 | 0.44213 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 1.4549 | 0.74796 | 2.2109 | 6.7987 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 244 | 35.057 | 4.3918 | -1.0221 | 2.2356 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0);Photo..." | 195 | 28.236 | 6.8437 | 0.060379 | 0.23369 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 195 | 4.0436 | 6.2431 | -0.098921 | 0.18069 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0);Pho..." | 89 | 1.4831 | 0.87554 | 2.3115 | 6.8234 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 89 | 31.579 | 3.9781 | -0.26475 | 0.45691 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0);Photo..." | 21 | 28.476 | 7.5632 | -0.40663 | 0.39457 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 7.0714 | 7.1950 | 0.48535 | 2.0594 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0);Pho..." | 10 | 1.4 | 0.80000 | 1.5 | 0.25 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 34.1 | 5.8344 | -0.098126 | -0.76382 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0);Photo..." | 3143 | 30.343 | 7.3059 | -0.41156 | 1.105 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3143 | 4.7937 | 6.6187 | 0.30104 | 1.0311 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0);Pho..." | 1460 | 1.5411 | 0.84421 | 1.7868 | 3.3508 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1460 | 34.147 | 3.9322 | -0.9131 | 2.9353 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0);Pho..." | 49 | 25.469 | 6.6979 | -0.079024 | -0.27268 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 49 | 5.3163 | 6.8888 | -0.17788 | -0.59643 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0);P..." | 25 | 1.16 | 0.46303 | 2.9513 | 7.8533 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 25 | 29.58 | 2.7118 | 0.36079 | 0.31047 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 457 | 35.83 | 25.594 | 0.13096 | -1.3607 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 61.412 | 12.317 | -0.2264 | -1.3816 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 50.388 | 18.949 | -0.24486 | -1.1129 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 60.429 | 12.146 | -0.22753 | -1.3605 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 59.706 | 12.007 | -0.2186 | -1.3246 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 35.143 | 21.808 | 0.098438 | -1.0386 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 435 | 25.042 | 13.921 | -0.13404 | -1.0572 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 4849 | 54.76 | 2.5389 | 0.90627 | 1.7085 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4847 | 35.548 | 9.5072 | 0.087848 | -1.0293 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4849 | 53.876 | 2.3963 | 0.91096 | 2.0893 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4849 | 53.224 | 2.3482 | 0.81173 | 2.1307 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 1772 | 24.83 | 16.066 | 0.073758 | -1.3374 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 499 | 242.57 | 187.74 | 0.21451 | -1.3676 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 596.98 | 21.399 | -8.9282 | 110.84 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 361.92 | 134.95 | -0.22422 | -1.0795 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 586.2 | 21.541 | -8.254 | 99.235 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 578.2 | 22.741 | -6.6762 | 74.257 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 3506 | 245.8 | 161.42 | 0.19489 | -0.96844 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 456 | 152.28 | 90.554 | -0.103 | -1.1201 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 4876 | 344.83 | 16.615 | 1.0791 | 2.8943 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4876 | 225.01 | 59.296 | 0.091165 | -1.0184 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4876 | 339.43 | 15.760 | 1.0851 | 3.296 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4876 | 335.23 | 15.515 | 0.98664 | 3.3103 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 1874 | 150.24 | 103.27 | 0.12173 | -1.3509 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 2150 | 1075.3 | 24.240 | 0.87636 | 1.1933 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 2839 | 1905.9 | 94.220 | 0.55696 | 1.6639 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 457 | 25.701 | 18.317 | 0.1607 | -1.2602 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 8922 | 58.822 | 3.9953 | -1.2584 | 8.3483 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 8922 | 35.247 | 13.825 | -0.13863 | -1.0206 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 8922 | 57.751 | 3.9517 | -1.2251 | 8.0684 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 8922 | 56.948 | 3.9815 | -1.1277 | 7.2347 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 3356 | 24.737 | 15.767 | 0.22973 | -0.85693 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 435 | 16.948 | 9.5679 | -0.07231 | -1.0191 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 4849 | 35.956 | 4.9278 | -1.3029 | 3.3306 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 4847 | 23.581 | 6.9436 | 0.069325 | -0.71896 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 4849 | 35.371 | 4.8338 | -1.3427 | 3.5016 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 4849 | 34.953 | 4.7779 | -1.357 | 3.561 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 1772 | 16.714 | 10.882 | 0.11025 | -1.2754 | +RichMCHits INFO 1D histograms in directory "RichMCHits" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/nDigitsPerChanID | "Rich1 # digitised hits per channel ID (t..." | 3038860 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich1/nHitsPerChanID | "Rich1 # hits per channel ID (total nHits>0)" | 3038860 | 1.1185 | 0.71905 | 16.292 | 392.79 | + | /RICH/RichMCHits/Rich1/nSignalHitsPerChanID | "Rich1 # signal hits per channel ID (tota..." | 3038860 | 0.89952 | 0.55517 | 0.52015 | 3.1577 | + | /RICH/RichMCHits/Rich2/nDigitsPerChanID | "Rich2 # digitised hits per channel ID (t..." | 2107884 | 1 | 0.0000 | 0 | 0 | + | /RICH/RichMCHits/Rich2/nHitsPerChanID | "Rich2 # hits per channel ID (total nHits>0)" | 2107884 | 1.0905 | 1.0585 | 14.691 | 279.46 | + | /RICH/RichMCHits/Rich2/nSignalHitsPerChanID | "Rich2 # signal hits per channel ID (tota..." | 2107884 | 0.76003 | 0.52500 | -0.013602 | 0.95977 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27184 | -0.015391 | 0.22590 | 0.16786 | -0.27257 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 643536 | -0.010099 | 0.24035 | -0.50007 | 32.028 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 785136 | -0.0095727 | 0.29322 | -0.71409 | 38.997 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 200376 | -0.012361 | 0.22870 | -2.7724 | 236.58 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 27384 | -0.0042729 | 7.5053 | 0.85997 | 0.3607 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 365952 | -0.058169 | 7.0054 | 0.71822 | 1.2886 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 428536 | -0.37777 | 8.1967 | -0.098434 | 2.5523 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 108952 | 0.0022572 | 6.9113 | 0.9435 | 1.1712 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 3038860 | 0.074994 | 0.057637 | 1.1675 | 1.3307 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 2107884 | 0.062886 | 0.048315 | 1.8007 | 4.0176 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 2397538 | 1.2675 | 0.84973 | 6.8342 | 90.349 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 1745733 | 1.2074 | 0.82314 | 10.482 | 199.91 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 1509488 | -3.2045 | 253.90 | -0.025906 | -0.14044 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 1509488 | -1362.1 | 73.355 | -0.71394 | -0.14702 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 893 | 1001.4 | 232.83 | -0.44644 | -0.23243 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 893 | 3403.1 | 1485.8 | 0.26965 | -0.39534 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 894232 | 3.3983 | 3.4434 | 2.3492 | 7.1927 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 3038860 | -5.2725 | 253.71 | -0.014686 | -0.14522 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 3038860 | 0.28001 | 263.95 | -0.0094217 | -0.72254 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 1529372 | -7.3058 | 254.15 | -0.003478 | -0.14002 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 1529372 | 1360.8 | 73.073 | 0.73306 | -0.10629 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1039366 | 3897 | 85.560 | -0.059328 | -0.97114 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1039366 | 8.5165 | 250.90 |-0.00017712 | 0.33918 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1068518 | -3900.2 | 85.860 | 0.088552 | -0.97161 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1068518 | 8.6563 | 251.07 | -0.0036305 | 0.35295 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 893 | 788.21 | 151.97 | -0.85772 | 0.39121 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 893 | 2360.6 | 952.66 | 0.17043 | -0.55956 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 490435 | 2.9822 | 2.4337 | 2.4357 | 10.827 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 213433 | 3.0234 | 3.1363 | 3.1555 | 15.245 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 703868 | 2.9947 | 2.6665 | 2.8528 | 14.318 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 2107884 | -7.5365 | 449.70 | 0.021231 | -1.4678 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 2107884 | 8.5712 | 250.82 | 0.0012699 | 0.34731 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 3594935 | 0.051213 | 0.00051207 | -0.23812 | -1.0937 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 3594935 | 0.052292 | 0.0066062 | 0.0022134 | -0.97891 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3594935 | 0.00011676 | 0.0029522 | -0.049655 | -0.95605 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 965507 | 0.00010683 | 0.0029537 | -0.038559 | -0.9639 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 899988 | 0.00013306 | 0.0029608 | -0.06591 | -0.97005 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 897501 | 0.00011132 | 0.0029447 | -0.043772 | -0.94241 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 831939 | 0.00011666 | 0.0029494 | -0.051385 | -0.94573 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 1135479 | 0.029497 | 0.00023187 | 0.13784 | -1.0789 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 1135479 | 0.028101 | 0.0040960 | -0.221 | -0.99832 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 1135479 | 5.7508e-05 | 0.0018603 | -0.022234 | -0.91118 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 299733 | 4.9e-05 | 0.0018595 | -0.021211 | -0.91181 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 277696 | 5.8479e-05 | 0.0018592 | -0.021933 | -0.9093 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 275476 | 5.65e-05 | 0.0018628 | -0.019238 | -0.91977 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 282574 | 6.6597e-05 | 0.0018596 | -0.026546 | -0.90394 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 8922 | 974.9 | 33.292 | 12.936 | 177.93 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 8922 | 2045.7 | 14.730 | 1.2483 | 3.2557 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 8922 | 1075.2 | 38.649 | -8.8446 | 109.41 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 4876 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 4876 | 11382 | 86.512 | 0.90174 | 2.1415 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 4876 | 1888.9 | 91.041 | 1.074 | 2.8242 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 893 | 12.728 | 7.3149 | 0.4877 | -0.15593 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 893 | 16.215 | 8.6662 | 0.37382 | -0.34535 | +RiCKMCResLong INFO 1D profile histograms in directory "RiCKMCResLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKMCResLong/Rich1Gas/ckResTrueVP | "Rich1Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 245615 | 18434 | 10501. | 3.8604 | 22.853 | + | /RICH/RiCKMCResLong/Rich1Gas/deuteron/ckexpVp | "Rich1Gas deuteron Expected CK theta V tr..." | 8898 | 62683 | 22106. | 0.8867 | -0.20159 | + | /RICH/RiCKMCResLong/Rich1Gas/electron/ckexpVp | "Rich1Gas electron Expected CK theta V tr..." | 8898 | 18302 | 10721. | 4.034 | 24.011 | + | /RICH/RiCKMCResLong/Rich1Gas/kaon/ckexpVptot | "Rich1Gas kaon Expected CK theta V track ..." | 8898 | 19894 | 11738. | 3.724 | 19.892 | + | /RICH/RiCKMCResLong/Rich1Gas/muon/ckexpVptot | "Rich1Gas muon Expected CK theta V track ..." | 8898 | 18344 | 10754. | 4.023 | 23.86 | + | /RICH/RiCKMCResLong/Rich1Gas/pion/ckexpVptot | "Rich1Gas pion Expected CK theta V track ..." | 8898 | 18377 | 10780. | 4.0147 | 23.745 | + | /RICH/RiCKMCResLong/Rich1Gas/proton/ckexpVpto | "Rich1Gas proton Expected CK theta V trac..." | 8898 | 31021 | 15821. | 2.8522 | 9.3327 | + | /RICH/RiCKMCResLong/Rich2Gas/ckResTrueVP | "Rich2Gas <|Rec-Exp CKTheta|> V P - MC tr..." | 100502 | 33707 | 17842. | 2.4141 | 6.1032 | + | /RICH/RiCKMCResLong/Rich2Gas/deuteron/ckexpVp | "Rich2Gas deuteron Expected CK theta V tr..." | 4798 | 89997 | 15662. | 0.12162 | -1.0667 | + | /RICH/RiCKMCResLong/Rich2Gas/electron/ckexpVp | "Rich2Gas electron Expected CK theta V tr..." | 4798 | 33018 | 17297. | 2.5261 | 6.7835 | + | /RICH/RiCKMCResLong/Rich2Gas/kaon/ckexpVptot | "Rich2Gas kaon Expected CK theta V track ..." | 4798 | 35014 | 18619. | 2.2467 | 5.0783 | + | /RICH/RiCKMCResLong/Rich2Gas/muon/ckexpVptot | "Rich2Gas muon Expected CK theta V track ..." | 4798 | 33078 | 17344. | 2.5163 | 6.7196 | + | /RICH/RiCKMCResLong/Rich2Gas/pion/ckexpVptot | "Rich2Gas pion Expected CK theta V track ..." | 4798 | 33124 | 17379. | 2.5089 | 6.6713 | + | /RICH/RiCKMCResLong/Rich2Gas/proton/ckexpVpto | "Rich2Gas proton Expected CK theta V trac..." | 4798 | 56836 | 22554. | 1.0151 | 0.066434 | +RiCKTkMCResLong INFO 1D profile histograms in directory "RiCKTkMCResLong" : 170 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V CKa..." | 22998 | 0.034062 | 0.011818 | -0.35856 | -1.0757 | + | /RICH/RiCKTkMCResLong/Rich1Gas/deuteron/ckres | "Rich1Gas deuteron Calculated CKres V pto..." | 24583 | 53230 | 19760. | 1.4879 | 1.5332 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 16397 | 6938.5 | -0.3595 | -22.834 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckPul | "Rich1Gas electron (Rec-Exp)/Res CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V CKa..." | 507233 | 0.051975 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/ckres | "Rich1Gas electron Calculated CKres V pto..." | 505933 | 18218 | 10481. | 3.9182 | 23.199 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6899.8 | -0.24849 | -22.108 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V ptot..." | 2783 | 16248 | 6899.8 | -0.24849 | -22.108 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/diffc | "Rich1Gas electron Rec-Exp CKtheta V CKth..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 17608 | 10147. | 3.0419 | 11.451 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsC | "Rich1Gas electron fabs((Rec-Exp)/Res) CK..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10011. | 3.0824 | 11.827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 17436 | 10011. | 3.0824 | 11.827 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/electron/fabsd | "Rich1Gas electron fabs(Rec-Exp) CKtheta ..." | 2783 | 0.05209 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVPt | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 28210 | 23860 | 13886. | 3.0952 | 14.016 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckPullVck | "Rich1Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 28210 | 0.044112 | 0.0062910 | -1.1938 | 1.2438 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVckt | "Rich1Gas kaon Calculated CKres V CKangle..." | 507233 | 0.036998 | 0.0095669 | -0.31782 | -1.1133 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/ckresVpto | "Rich1Gas kaon Calculated CKres V ptot;Mo..." | 505933 | 17178 | 9931.7 | 4.1392 | 26.117 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28210 | 23034 | 13547. | 3.1547 | 14.73 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVPt | "Rich1Gas kaon Rec-Exp CKtheta V ptot - M..." | 28210 | 23034 | 13547. | 3.1547 | 14.73 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28210 | 0.043372 | 0.0068871 | -1.1534 | 0.99484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/diffckVck | "Rich1Gas kaon Rec-Exp CKtheta V CKtheta ..." | 28210 | 0.043372 | 0.0068871 | -1.1534 | 0.99484 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28210 | 22156 | 13390. | 3.2607 | 14.866 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsCkPul | "Rich1Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 28210 | 0.042729 | 0.0071750 | -1.0521 | 0.57395 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28210 | 21165 | 12925. | 3.3667 | 16.074 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 28210 | 21165 | 12925. | 3.3667 | 16.074 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28210 | 0.041647 | 0.0079118 | -0.93217 | 0.10873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/kaon/fabsdiffc | "Rich1Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 28210 | 0.041647 | 0.0079118 | -0.93217 | 0.10873 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVPt | "Rich1Gas muon (Rec-Exp)/Res CKtheta V pt..." | 404 | 17392 | 6621.9 | 0.94823 | 0.006479 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckPullVck | "Rich1Gas muon (Rec-Exp)/Res CKtheta V CK..." | 404 | 0.051596 | 0.00038866 | 0.13952 | -1.5855 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVckt | "Rich1Gas muon Calculated CKres V CKangle..." | 507233 | 0.051576 | 0.00029904 | -0.22335 | -1.0877 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/ckresVpto | "Rich1Gas muon Calculated CKres V ptot;Mo..." | 505933 | 18099 | 10439. | 3.9971 | 24.056 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.0 | 1.0035 | 0.13239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVPt | "Rich1Gas muon Rec-Exp CKtheta V ptot - M..." | 404 | 17137 | 6559.0 | 1.0035 | 0.13239 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.2064 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/diffckVck | "Rich1Gas muon Rec-Exp CKtheta V CKtheta ..." | 404 | 0.05158 | 0.00038784 | 0.2064 | -1.5632 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 19153 | 8418.3 | 0.46684 | -1.4307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsCkPul | "Rich1Gas muon fabs((Rec-Exp)/Res) CKthet..." | 404 | 0.051615 | 0.00043747 | 0.063341 | -1.8914 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.542 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V pt..." | 404 | 18798 | 8365.8 | 0.542 | -1.3551 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.1466 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/muon/fabsdiffc | "Rich1Gas muon fabs(Rec-Exp) CKtheta V CK..." | 404 | 0.051596 | 0.00043656 | 0.1466 | -1.8737 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVPt | "Rich1Gas pion (Rec-Exp)/Res CKtheta V pt..." | 205317 | 17560 | 9636.0 | 4.4308 | 30.535 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckPullVck | "Rich1Gas pion (Rec-Exp)/Res CKtheta V CK..." | 205317 | 0.051177 | 0.00051855 | -0.20345 | -0.87637 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVckt | "Rich1Gas pion Calculated CKres V CKangle..." | 507233 | 0.051201 | 0.00051425 | -0.22351 | -1.1063 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/ckresVpto | "Rich1Gas pion Calculated CKres V ptot;Mo..." | 505933 | 18183 | 10472. | 3.9344 | 23.37 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205317 | 17384 | 9481.4 | 4.4729 | 31.322 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVPt | "Rich1Gas pion Rec-Exp CKtheta V ptot - M..." | 205317 | 17384 | 9481.4 | 4.4729 | 31.322 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205317 | 0.051163 | 0.00052029 | -0.17663 | -0.90014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/diffckVck | "Rich1Gas pion Rec-Exp CKtheta V CKtheta ..." | 205317 | 0.051163 | 0.00052029 | -0.17663 | -0.90014 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205317 | 17571 | 9315.4 | 4.0849 | 26.845 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsCkPul | "Rich1Gas pion fabs((Rec-Exp)/Res) CKthet..." | 205317 | 0.051182 | 0.00051964 | -0.18632 | -0.85078 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205317 | 17397 | 9174.0 | 4.1216 | 27.486 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V pt..." | 205317 | 17397 | 9174.0 | 4.1216 | 27.486 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205317 | 0.051168 | 0.00052132 | -0.1605 | -0.87301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/pion/fabsdiffc | "Rich1Gas pion fabs(Rec-Exp) CKtheta V CK..." | 205317 | 0.051168 | 0.00052132 | -0.1605 | -0.87301 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8886 | 35271 | 15365. | 2.3983 | 7.7833 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckPullV | "Rich1Gas proton (Rec-Exp)/Res CKtheta V ..." | 8886 | 0.041068 | 0.0081498 | -1.6128 | 2.8307 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVc | "Rich1Gas proton Calculated CKres V CKang..." | 178336 | 0.030244 | 0.011038 | 0.032136 | -1.0494 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/ckresVp | "Rich1Gas proton Calculated CKres V ptot;..." | 190434 | 25034 | 11491. | 4.0017 | 20.681 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8886 | 33455 | 15090. | 2.4123 | 8.1682 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V ptot -..." | 8886 | 33455 | 15090. | 2.4123 | 8.1682 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8886 | 0.039339 | 0.0097799 | -1.3297 | 1.0447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/diffckV | "Rich1Gas proton Rec-Exp CKtheta V CKthet..." | 8886 | 0.039339 | 0.0097799 | -1.3297 | 1.0447 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8886 | 33093 | 16194. | 2.6647 | 8.0163 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsCkP | "Rich1Gas proton fabs((Rec-Exp)/Res) CKth..." | 8886 | 0.039018 | 0.0081368 | -0.71663 | 0.25512 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 31657 | 15515. | 2.8227 | 9.2659 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 31657 | 15515. | 2.8227 | 9.2659 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 0.037649 | 0.0089342 | -0.6608 | -0.061434 | + | /RICH/RiCKTkMCResLong/Rich1Gas/proton/fabsdif | "Rich1Gas proton fabs(Rec-Exp) CKtheta V ..." | 8886 | 0.037649 | 0.0089342 | -0.6608 | -0.061434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckPul | "Rich2Gas deuteron (Rec-Exp)/Res CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V CKa..." | 15370 | 0.020995 | 0.0049504 | -0.40894 | -0.84265 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/ckres | "Rich2Gas deuteron Calculated CKres V pto..." | 14221 | 84512 | 16036. | 0.46898 | -0.89422 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/diffc | "Rich2Gas deuteron Rec-Exp CKtheta V ptot..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsC | "Rich2Gas deuteron fabs((Rec-Exp)/Res) CK..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/deuteron/fabsd | "Rich2Gas deuteron fabs(Rec-Exp) CKtheta ..." | 1 | 21412 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 35357 | 17800. | 0.9814 | -0.46936 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckPul | "Rich2Gas electron (Rec-Exp)/Res CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V CKa..." | 195393 | 0.029952 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/ckres | "Rich2Gas electron Calculated CKres V pto..." | 192371 | 32959 | 17143. | 2.4962 | 6.6674 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 1096 | 34828 | 17592. | 1.0451 | -0.33499 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 903 | 33511 | 15021. | 1.4558 | 1.19 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V ptot..." | 193 | 56647 | 34552. | -1.3457 | -1.211 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 903 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/diffc | "Rich2Gas electron Rec-Exp CKtheta V CKth..." | 193 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 30754 | 12357. | 1.4339 | 1.286 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsC | "Rich2Gas electron fabs((Rec-Exp)/Res) CK..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 30444 | 12211. | 1.4841 | 1.4573 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 30894 | 12195. | 1.4223 | 1.2575 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 28363 | 12068. | 1.8538 | 2.7955 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 1096 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 903 | 0.029895 | 3.2927e-10 |-1.2968e+08 | 1.9959e+16 | + | /RICH/RiCKTkMCResLong/Rich2Gas/electron/fabsd | "Rich2Gas electron fabs(Rec-Exp) CKtheta ..." | 193 | 0.029895 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVPt | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V pt..." | 12055 | 32958 | 32390. | 2.0575 | 1.8572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckPullVck | "Rich2Gas kaon (Rec-Exp)/Res CKtheta V CK..." | 12055 | 0.019797 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVckt | "Rich2Gas kaon Calculated CKres V CKangle..." | 195391 | 0.023473 | 0.0036536 | -0.021701 | -1.1033 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/ckresVpto | "Rich2Gas kaon Calculated CKres V ptot;Mo..." | 192369 | 32675 | 17095. | 2.5271 | 6.834 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 12055 | 31985 | 31011. | 2.2139 | 2.5044 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 10109 | 31054 | 27353. | 2.341 | 3.286 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVPt | "Rich2Gas kaon Rec-Exp CKtheta V ptot - M..." | 1946 | 19825 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 12055 | 0.019822 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 10109 | 0.019938 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/diffckVck | "Rich2Gas kaon Rec-Exp CKtheta V CKtheta ..." | 1946 | 0.021536 | 0.0044875 | 0.048179 | -3.5677 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12055 | 39951 | 22190. | 1.7514 | 2.5434 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsCkPul | "Rich2Gas kaon fabs((Rec-Exp)/Res) CKthet..." | 12055 | 0.025151 | 0.0033875 | -0.45762 | -0.77375 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 12055 | 39289 | 21971. | 1.7996 | 2.7446 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 10109 | 40232 | 22712. | 1.6969 | 2.3191 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V pt..." | 1946 | 34918 | 17492. | 2.3789 | 5.6458 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 12055 | 0.024981 | 0.0034582 | -0.41397 | -0.84246 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 10109 | 0.025084 | 0.0035317 | -0.45108 | -0.8835 | + | /RICH/RiCKTkMCResLong/Rich2Gas/kaon/fabsdiffc | "Rich2Gas kaon fabs(Rec-Exp) CKtheta V CK..." | 1946 | 0.024491 | 0.0030358 | -0.31008 | -0.47306 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVPt | "Rich2Gas muon (Rec-Exp)/Res CKtheta V pt..." | 492 | 18845 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckPullVck | "Rich2Gas muon (Rec-Exp)/Res CKtheta V CK..." | 492 | 0.029398 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVckt | "Rich2Gas muon Calculated CKres V CKangle..." | 195393 | 0.029682 | 0.00013598 | 0.24343 | -0.85572 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/ckresVpto | "Rich2Gas muon Calculated CKres V ptot;Mo..." | 192371 | 32598 | 16780. | 2.5738 | 7.1943 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 492 | 19104 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 416 | 16810 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVPt | "Rich2Gas muon Rec-Exp CKtheta V ptot - M..." | 76 | 21074 | 1353.2 | 20.331 | 228.88 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 492 | 0.029403 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 416 | 0.029407 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/diffckVck | "Rich2Gas muon Rec-Exp CKtheta V CKtheta ..." | 76 | 0.029401 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 26726 | 7454.3 | 1.462 | 1.2501 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsCkPul | "Rich2Gas muon fabs((Rec-Exp)/Res) CKthet..." | 492 | 0.029595 | 0.00015332 | 0.43664 | -0.77606 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 492 | 26444 | 7250.9 | 1.5361 | 1.5501 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 416 | 27799 | 7882.3 | 1.1971 | 0.43587 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V pt..." | 76 | 22887 | 3161.8 | 2.0878 | 3.4767 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 492 | 0.02959 | 0.00015152 | 0.46635 | -0.73911 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 416 | 0.029627 | 0.00015147 | 0.19025 | -0.74029 | + | /RICH/RiCKTkMCResLong/Rich2Gas/muon/fabsdiffc | "Rich2Gas muon fabs(Rec-Exp) CKtheta V CK..." | 76 | 0.029493 | 9.9692e-05 | 1.1501 | -0.67722 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVPt | "Rich2Gas pion (Rec-Exp)/Res CKtheta V pt..." | 83580 | 35445 | 20915. | 2.3696 | 5.3007 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckPullVck | "Rich2Gas pion (Rec-Exp)/Res CKtheta V CK..." | 83580 | 0.029557 | 0.00023077 | 0.19011 | -1.0983 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVckt | "Rich2Gas pion Calculated CKres V CKangle..." | 195393 | 0.029498 | 0.00023427 | 0.16218 | -1.03 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/ckresVpto | "Rich2Gas pion Calculated CKres V ptot;Mo..." | 192371 | 33140 | 17343. | 2.468 | 6.4621 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 83580 | 35236 | 20794. | 2.3966 | 5.449 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 71033 | 41557 | 24878. | 1.6269 | 1.9061 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVPt | "Rich2Gas pion Rec-Exp CKtheta V ptot - M..." | 12547 | 28864 | 12787. | 4.4568 | 22.594 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 83580 | 0.029554 | 0.00023096 | 0.20509 | -1.088 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 71033 | 0.029639 | 0.00023686 | -0.28123 | -1.2511 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/diffckVck | "Rich2Gas pion Rec-Exp CKtheta V CKtheta ..." | 12547 | 0.029462 | 0.00018507 | 0.53438 | 0.0016034 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83580 | 32064 | 15856. | 2.6908 | 8.1158 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsCkPul | "Rich2Gas pion fabs((Rec-Exp)/Res) CKthet..." | 83580 | 0.029494 | 0.00022802 | 0.25358 | -1.0009 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 83580 | 31879 | 15757. | 2.7202 | 8.3109 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 71033 | 32444 | 16251. | 2.6199 | 7.5858 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V pt..." | 12547 | 28925 | 12451. | 3.3883 | 14.278 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 83580 | 0.02949 | 0.00022806 | 0.27416 | -0.9934 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 71033 | 0.029499 | 0.00022953 | 0.2285 | -1.0274 | + | /RICH/RiCKTkMCResLong/Rich2Gas/pion/fabsdiffc | "Rich2Gas pion fabs(Rec-Exp) CKtheta V CK..." | 12547 | 0.029443 | 0.00021402 | 0.50539 | -0.69217 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 84175 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckPullV | "Rich2Gas proton (Rec-Exp)/Res CKtheta V ..." | 3215 | 0.03008 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVc | "Rich2Gas proton Calculated CKres V CKang..." | 60883 | 0.020524 | 0.0059738 | -0.12025 | -1.3442 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/ckresVp | "Rich2Gas proton Calculated CKres V ptot;..." | 69082 | 47534 | 20022. | 1.6609 | 2.0611 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 3215 | 82980 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 2805 | 67674 | 17894. | -0.49397 | -2.3977 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V ptot -..." | 410 | 38451 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 3215 | 0.03012 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 2805 | 0.026425 | 0.0034618 | -3.2475 | 13.341 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/diffckV | "Rich2Gas proton Rec-Exp CKtheta V CKthet..." | 410 | 0.014063 | 0.0000 | 0 | 0 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 61465 | 22657. | 0.775 | -0.47639 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsCkP | "Rich2Gas proton fabs((Rec-Exp)/Res) CKth..." | 3215 | 0.024034 | 0.0048281 | -0.98613 | 0.086668 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 60378 | 22833. | 0.80928 | -0.43159 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 61739 | 23059. | 0.74597 | -0.52836 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 52378 | 19634. | 1.2529 | 0.4845 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 3215 | 0.0237 | 0.0050976 | -0.90335 | -0.2101 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 2805 | 0.024048 | 0.0049639 | -1.0553 | 0.1883 | + | /RICH/RiCKTkMCResLong/Rich2Gas/proton/fabsdif | "Rich2Gas proton fabs(Rec-Exp) CKtheta V ..." | 410 | 0.021618 | 0.0053817 | -0.17689 | -1.1655 | +RiMCOpticalPhotonsLong INFO 1D profile histograms in directory "RiMCOpticalPhotonsLong" : 184 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | 16948 | 7034.7 | 2.2407 | 8.6611 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | -1.7546 | 79.003 | -0.018294 | 1.6928 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Angle between TkNeg Reco and M..." | 135288 | 1.9879 | 81.697 | -0.11226 | 1.4566 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | 17033 | 7012.6 | 2.1639 | 8.0908 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | -5.0118 | 76.549 | 0.26982 | 1.679 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <X Projection of angle between ..." | 135288 | -0.97453 | 88.167 | 0.18933 | 1.6242 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | 15034 | 7552.9 | 4.4959 | 26.711 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | -5.0118 | 76.549 | 0.26982 | 1.679 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Y Projection of angle between ..." | 135288 | -0.97453 | 88.167 | 0.18933 | 1.6242 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 132.57 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 26.21 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 1167.9 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 26.435 | 93.687 | 2.4563 | -4.3868 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 248.78 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 1684 | 270.62 | -0.54609 | -0.17308 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | 20.588 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | -16.069 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas <Reco-MC TkNeg Track Photon Emi..." | 135288 | -15189 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks X Slope> Versu..." | 135288 | -2099.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <MC Tracks Y Slope> Versu..." | 135288 | -7.9623 | 123.55 | 0.71519 | 1.6756 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks X Slope> Ver..." | 135288 | -3276.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkNeg/t | "Rich1Gas TkNeg <Reco Tracks Y Slope> Ver..." | 135288 | -12.859 | 139.25 | 0.82258 | 1.162 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 17379 | 7488.2 | 2.1511 | 7.5772 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 7.2296 | 69.425 | -0.1465 | 2.1071 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Angle between TkPos Reco and M..." | 134774 | 1.2216 | 71.996 | -0.053503 | 1.7986 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | 17601 | 7502.3 | 2.0696 | 7.1086 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | 1.8542 | 74.007 | -0.59634 | 1.4905 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <X Projection of angle between ..." | 134774 | -3.5114 | 84.397 | -0.35341 | 1.2545 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | 15175 | 7374.4 | 3.4748 | 16.756 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | 1.8542 | 74.007 | -0.59634 | 1.4905 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Y Projection of angle between ..." | 134774 | -3.5114 | 84.397 | -0.35341 | 1.2545 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 138.41 | 118.16 | 3.5078 | -17.885 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 12.117 | 102.53 | 0.80622 | -0.070725 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 2297.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 3.7518 | 90.055 | 0.32023 | 4.1183 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 191.53 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 1741.6 | 75.725 | 110.37 | -1536.2 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | -68.642 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | 1.3734 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas <Reco-MC TkPos Track Photon Emi..." | 134774 | -13611 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks X Slope> Versu..." | 134774 | 793.04 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <MC Tracks Y Slope> Versu..." | 134774 | -2.8073 | 52.860 | -5.442 | -4.5809 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks X Slope> Ver..." | 134774 | 708.68 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/TkPos/t | "Rich1Gas TkPos <Reco Tracks Y Slope> Ver..." | 134774 | -2.2788 | 55.155 | -4.2347 | -2.5366 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Expected-MC Photon ..." | 85 | 17636 | 7963.4 | 2.5746 | 12.505 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 17240 | 9479.8 | 3.1003 | 12.426 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | -0.13908 | 36.807 | 0.51564 | -0.10633 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron MC Photon Yield (>0) V..." | 85 | 0.73489 | 37.027 | -0.49768 | 0.2307 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Expected-MC Photo..." | 1011 | 18546 | 8738.9 | 2.2136 | 7.5839 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | 18453 | 8998.7 | 2.4798 | 8.9545 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | -1.6109 | 50.485 | -0.48345 | 3.792 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/electro | "Rich1Gas electron Reco Photon Yield (>0)..." | 1011 | -1.6947 | 52.807 | -0.48533 | 2.4552 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Expected-MC Photon Yiel..." | 71 | 49833 | 7762.2 | 0.63589 | 0.42375 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V P (..." | 71 | 47565 | 12614. | 0.96814 | -0.37496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 12.946 | 45.537 | -0.63152 | 0.93484 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/mc | "Rich1Gas kaon MC Photon Yield (>0) V Pan..." | 71 | 0.47978 | 35.919 | -0.33207 | 0.15211 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Expected-MC Photon Yi..." | 71 | 47184 | 10930. | 0.96431 | 0.0012975 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 48139 | 13058. | 0.89563 | -0.56898 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 13.156 | 46.703 | -0.68045 | 1.0384 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/kaon/re | "Rich1Gas kaon Reco Photon Yield (>0) V P..." | 71 | 0.49417 | 37.160 | -0.27667 | 0.0037292 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Expected-MC Photon Yiel..." | 11 | 17730 | 3991.1 | 0.51028 | -1.7773 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V P (..." | 11 | 18382 | 8252.3 | 0.61648 | -1.2435 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | -39.767 | 106.34 | -0.67916 | -1.3099 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/mc | "Rich1Gas muon MC Photon Yield (>0) V Pan..." | 11 | 26.445 | 61.702 | -0.81536 | -0.03403 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Expected-MC Photon Yi..." | 46 | 16553 | 5986.9 | 0.90033 | -0.10712 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | 17201 | 6753.8 | 0.93785 | -0.19685 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -15.002 | 67.322 | -1.2765 | 2.8496 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/muon/re | "Rich1Gas muon Reco Photon Yield (>0) V P..." | 46 | -4.3844 | 65.776 | -0.85733 | 0.49736 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Expected-MC Photon Yiel..." | 6064 | 19127 | 9536.5 | 2.4661 | 8.0908 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V P (..." | 6064 | 17337 | 8126.8 | 2.7594 | 11.446 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6064 | 1.512 | 48.939 | -0.19658 | 2.9746 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/mc | "Rich1Gas pion MC Photon Yield (>0) V Pan..." | 6064 | 0.88652 | 49.564 | -0.12805 | 1.6866 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Expected-MC Photon Yi..." | 6227 | 17875 | 8550.7 | 2.6612 | 10.283 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 17280 | 8027.6 | 2.7438 | 11.482 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 1.496 | 51.814 | -0.22628 | 2.9615 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/pion/re | "Rich1Gas pion Reco Photon Yield (>0) V P..." | 6227 | 0.66149 | 51.814 | -0.12352 | 1.7516 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Expected-MC Photon Yi..." | 8 | 73240 | 3829.3 | -0.4713 | -1.5697 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 73260 | 4019.9 | -0.3728 | -1.3305 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | 5.3654 | 24.719 | 0.74848 | -0.63467 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton MC Photon Yield (>0) V P..." | 8 | -8.1544 | 33.233 | 0.49495 | -1.5322 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Expected-MC Photon ..." | 9 | 72657 | 3740.5 | -0.0096908 | -1.5867 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 73061 | 3973.1 | -0.29245 | -1.3721 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | 3.2724 | 24.264 | 0.85544 | -0.38475 | + | /RICH/RiMCOpticalPhotonsLong/Rich1Gas/proton/ | "Rich1Gas proton Reco Photon Yield (>0) V..." | 9 | -7.0285 | 33.319 | 0.42458 | -1.6197 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | 31628 | 16066. | 2.5742 | 7.1384 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | -252.2 | 312.02 | 0.74345 | 1.9019 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Angle between TkNeg Reco and M..." | 964 | 0.27666 | 287.56 | 0.20392 | 2.075 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -15452 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -264.23 | 299.18 | 0.47703 | 0.49798 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <X Projection of angle between ..." | 964 | -54.121 | 294.16 | 0.27526 | 2.1575 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | 30147 | 11714. | 0.41498 | -9.8106 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | -264.23 | 299.18 | 0.47703 | 0.49798 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Y Projection of angle between ..." | 964 | -54.121 | 294.16 | 0.27526 | 2.1575 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -72.74 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 21.428 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 2887.5 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 400.7 | 607.12 | -0.69179 | -0.98527 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 1133.4 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 9015.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | 68.672 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -128.12 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas <Reco-MC TkNeg Track Photon Emi..." | 964 | -30.872 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks X Slope> Versu..." | 964 | -476.96 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <MC Tracks Y Slope> Versu..." | 964 | 8.1423 | 246.81 | 0.6626 | 2.9528 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks X Slope> Ver..." | 964 | -476.93 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkNeg/t | "Rich2Gas TkNeg <Reco Tracks Y Slope> Ver..." | 964 | 8.1639 | 246.72 | 0.66356 | 2.9443 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 29972 | 13789. | 3.3003 | 13.639 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 357.31 | 232.51 | -0.088118 | 4.2848 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Angle between TkPos Reco and M..." | 1834 | 13.258 | 269.78 | -0.097059 | 1.3226 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 22286 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 314.15 | 133.38 | -3.1119 | 17.171 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <X Projection of angle between ..." | 1834 | 8.2119 | 236.52 | -0.66002 | 6.1808 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 30629 | 11774. | 1.897 | 0.72965 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 314.15 | 133.38 | -3.1119 | 17.171 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Y Projection of angle between ..." | 1834 | 8.2119 | 236.52 | -0.66002 | 6.1808 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 2257.3 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 92.7 | 527.19 | 0.94621 | -2.1421 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 35682 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -719.78 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -851.12 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 9034.7 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 1466.7 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | -5.4692 | 499.96 | 1.1839 | -0.10917 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas <Reco-MC TkPos Track Photon Emi..." | 1834 | 32425 | 0.0000 | 0 | 0 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks X Slope> Versu..." | 1834 | 451.43 | 212.62 | 2.5952 | -4.9424 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <MC Tracks Y Slope> Versu..." | 1834 | -6.2572 | 290.68 | -0.34044 | 1.8715 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks X Slope> Ver..." | 1834 | 451.53 | 212.51 | 2.5992 | -4.9727 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/TkPos/t | "Rich2Gas TkPos <Reco Tracks Y Slope> Ver..." | 1834 | -6.3527 | 290.54 | -0.34064 | 1.8749 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Expected-MC Photon ..." | 49 | 27904 | 9632.1 | 2.7909 | 7.6177 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | 30058 | 13461. | 2.9173 | 11.818 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -27.629 | 316.57 | 0.32385 | -1.017 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron MC Photon Yield (>0) V..." | 50 | -23.938 | 241.91 | -0.13349 | 0.36441 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Expected-MC Photo..." | 243 | 32408 | 15319. | 2.2916 | 5.0218 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 32861 | 16044. | 2.3737 | 5.3854 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 106.45 | 318.06 | -0.33263 | -0.61089 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/electro | "Rich2Gas electron Reco Photon Yield (>0)..." | 244 | 1.5014 | 277.48 | -0.41501 | 1.5076 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Expected-MC Photon Yiel..." | 179 | 55462 | 16674. | 0.78999 | -0.34657 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V P (..." | 195 | 60349 | 23307. | 0.97587 | -0.035912 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 52.165 | 311.38 | 0.4146 | 0.85514 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/mc | "Rich2Gas kaon MC Photon Yield (>0) V Pan..." | 195 | 20.135 | 220.75 | -0.2133 | 2.31 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Expected-MC Photon Yi..." | 83 | 56620 | 19114. | 0.72237 | -0.77267 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 60137 | 23777. | 0.90664 | -0.20996 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 207.8 | 330.48 | 0.55039 | 0.84658 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/kaon/re | "Rich2Gas kaon Reco Photon Yield (>0) V P..." | 89 | 19.106 | 256.25 | -1.5006 | 5.476 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Expected-MC Photon Yiel..." | 21 | 26728 | 6831.8 | 1.4543 | 1.4694 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V P (..." | 21 | 27527 | 6805.3 | 1.27 | 1.1934 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | -30.739 | 354.73 | 0.27836 | -1.1855 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/mc | "Rich2Gas muon MC Photon Yield (>0) V Pan..." | 21 | 69.217 | 211.20 | -0.63623 | -0.015324 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Expected-MC Photon Yi..." | 10 | 27346 | 8208.2 | 1.5211 | 1.1821 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 26771 | 7171.6 | 1.4615 | 1.5525 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 163.43 | 356.79 | -0.84765 | -0.48014 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/muon/re | "Rich2Gas muon Reco Photon Yield (>0) V P..." | 10 | 94.714 | 167.60 | -0.49639 | -0.83233 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Expected-MC Photon Yiel..." | 3100 | 32194 | 15465. | 2.2854 | 5.0593 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V P (..." | 3143 | 32017 | 15923. | 2.7068 | 8.1804 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 6.8629 | 357.77 | 0.012442 | -0.30945 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/mc | "Rich2Gas pion MC Photon Yield (>0) V Pan..." | 3143 | 5.2593 | 254.30 | 0.049272 | 1.4062 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Expected-MC Photon Yi..." | 1444 | 31002 | 13703. | 2.5087 | 6.9782 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 31630 | 15802. | 2.7885 | 8.616 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 126.38 | 334.73 | -0.39252 | -0.01247 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/pion/re | "Rich2Gas pion Reco Photon Yield (>0) V P..." | 1460 | 1.4676 | 255.15 | -0.026631 | 1.5354 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Expected-MC Photon Yi..." | 37 | 85172 | 11720. | -0.47264 | -1.3887 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 89018 | 14766. | 0.053146 | -1.2529 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 38.979 | 178.92 | -0.16562 | -0.6415 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton MC Photon Yield (>0) V P..." | 49 | 7.7708 | 198.39 | 0.13622 | -0.79402 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Expected-MC Photon ..." | 17 | 81083 | 10105. | 0.43689 | -1.0014 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | 88567 | 14654. | 0.10968 | -1.2961 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | 30.034 | 171.69 | 0.31512 | 0.75682 | + | /RICH/RiMCOpticalPhotonsLong/Rich2Gas/proton/ | "Rich2Gas proton Reco Photon Yield (>0) V..." | 25 | -3.1379 | 221.61 | -0.0053464 | -1.3473 | +RiMCTkResLong INFO 1D profile histograms in directory "RiMCTkResLong" : 24 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/mcpVrec | "Rich1Gas deuteron MC V Reco Track Moment..." | 27 | 17425 | 4129.6 | 0.4242 | 0.09476 | + | /RICH/RiMCTkResLong/Rich1Gas/deuteron/pdiffVr | "Rich1Gas deuteron (Rec-MC) V Reco Track ..." | 27 | 18598 | 4697.4 | 0.36617 | -0.45104 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/mcpVrec | "Rich1Gas electron MC V Reco Track Moment..." | 1114 | 22005 | 13480. | 2.111 | 4.6145 | + | /RICH/RiMCTkResLong/Rich1Gas/electron/pdiffVr | "Rich1Gas electron (Rec-MC) V Reco Track ..." | 1114 | 25967 | 20560. | 2.665 | 7.3674 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/mcpVrecop | "Rich1Gas kaon MC V Reco Track Momentum;R..." | 1331 | 26754 | 21023. | 2.4358 | 6.1983 | + | /RICH/RiMCTkResLong/Rich1Gas/kaon/pdiffVrecop | "Rich1Gas kaon (Rec-MC) V Reco Track Mome..." | 1331 | 14925 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/mcpVrecop | "Rich1Gas muon MC V Reco Track Momentum;R..." | 46 | 20439 | 7576.6 | 0.25523 | -1.2747 | + | /RICH/RiMCTkResLong/Rich1Gas/muon/pdiffVrecop | "Rich1Gas muon (Rec-MC) V Reco Track Mome..." | 46 | 17938 | 4463.2 | -0.59957 | -1.3817 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/mcpVrecop | "Rich1Gas pion MC V Reco Track Momentum;R..." | 6277 | 23219 | 16856. | 2.8817 | 9.6389 | + | /RICH/RiMCTkResLong/Rich1Gas/pion/pdiffVrecop | "Rich1Gas pion (Rec-MC) V Reco Track Mome..." | 6277 | 20424 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/mcpVrecop | "Rich1Gas proton MC V Reco Track Momentum..." | 1389 | 28083 | 21897. | 2.2971 | 4.9871 | + | /RICH/RiMCTkResLong/Rich1Gas/proton/pdiffVrec | "Rich1Gas proton (Rec-MC) V Reco Track Mo..." | 1389 | 16773 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/mcpVrec | "Rich2Gas deuteron MC V Reco Track Moment..." | 16 | 26307 | 7974.7 | 1.9926 | 4.2679 | + | /RICH/RiMCTkResLong/Rich2Gas/deuteron/pdiffVr | "Rich2Gas deuteron (Rec-MC) V Reco Track ..." | 16 | 29787 | 10213. | 1.4138 | 1.3919 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/mcpVrec | "Rich2Gas electron MC V Reco Track Moment..." | 625 | 33795 | 14116. | 1.1405 | 0.37808 | + | /RICH/RiMCTkResLong/Rich2Gas/electron/pdiffVr | "Rich2Gas electron (Rec-MC) V Reco Track ..." | 625 | 43117 | 25097. | 1.3443 | 0.76921 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/mcpVrecop | "Rich2Gas kaon MC V Reco Track Momentum;R..." | 702 | 46341 | 27167. | 1.1851 | 0.34205 | + | /RICH/RiMCTkResLong/Rich2Gas/kaon/pdiffVrecop | "Rich2Gas kaon (Rec-MC) V Reco Track Mome..." | 702 | 16477 | 0.0000 | 0 | 0 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/mcpVrecop | "Rich2Gas muon MC V Reco Track Momentum;R..." | 22 | 30176 | 7960.8 | 0.94278 | 0.17709 | + | /RICH/RiMCTkResLong/Rich2Gas/muon/pdiffVrecop | "Rich2Gas muon (Rec-MC) V Reco Track Mome..." | 22 | 24763 | 4647.0 | 2.0767 | 4.5028 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/mcpVrecop | "Rich2Gas pion MC V Reco Track Momentum;R..." | 3387 | 40553 | 23737. | 1.5848 | 1.6158 | + | /RICH/RiMCTkResLong/Rich2Gas/pion/pdiffVrecop | "Rich2Gas pion (Rec-MC) V Reco Track Mome..." | 3387 | 42310 | 22382. | 1.3771 | 0.13748 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/mcpVrecop | "Rich2Gas proton MC V Reco Track Momentum..." | 718 | 45453 | 26972. | 1.1734 | 0.15441 | + | /RICH/RiMCTkResLong/Rich2Gas/proton/pdiffVrec | "Rich2Gas proton (Rec-MC) V Reco Track Mo..." | 718 | 40276 | 25180. | 1.1667 | -0.34064 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 408 | 60859 | 16752. | 0.57635 | -0.60836 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18011 | 9552.2 | 3.3233 | 16.609 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20734 | 10967. | 2.9153 | 12.211 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18087 | 9605.1 | 3.3066 | 16.418 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18145 | 9645.1 | 3.2939 | 16.274 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32085 | 14282. | 2.2156 | 5.3117 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 284 | 83830 | 10372. | -0.17318 | -1.1672 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 4698 | 31668 | 14395. | 2.3257 | 5.7278 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4696 | 34930 | 16271. | 1.8741 | 3.2634 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4698 | 31765 | 14465. | 2.309 | 5.6249 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4698 | 31839 | 14518. | 2.2963 | 5.5476 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1621 | 56226 | 18259. | 0.68878 | -0.51511 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 450 | 60445 | 16851. | 0.5828 | -0.59625 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18011 | 9552.2 | 3.3233 | 16.609 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20668 | 10944. | 2.9209 | 12.273 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18085 | 9604.3 | 3.3068 | 16.42 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18143 | 9643.8 | 3.2943 | 16.279 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3457 | 31885 | 14227. | 2.229 | 5.4078 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 305 | 83567 | 10503. | -0.16489 | -1.1645 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 4725 | 31650 | 14377. | 2.3274 | 5.7405 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4725 | 34856 | 16230. | 1.8813 | 3.2997 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4725 | 31745 | 14446. | 2.3108 | 5.6384 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4725 | 31819 | 14499. | 2.2983 | 5.5618 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1723 | 55951 | 18279. | 0.69727 | -0.49903 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 408 | 60742 | 16743. | 0.58999 | -0.59293 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 8873 | 18010 | 9547.4 | 3.3196 | 16.575 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 8873 | 20747 | 10970. | 2.9084 | 12.158 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 8873 | 18086 | 9600.1 | 3.3028 | 16.385 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 8873 | 18144 | 9640.2 | 3.2902 | 16.241 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 3307 | 32079 | 14282. | 2.2144 | 5.3013 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 284 | 83734 | 10325. | -0.16802 | -1.1596 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 4698 | 31767 | 14474. | 2.3094 | 5.6217 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 4696 | 34970 | 16301. | 1.8712 | 3.2434 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 4698 | 31865 | 14544. | 2.2927 | 5.5202 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 4698 | 31940 | 14597. | 2.2801 | 5.444 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 1621 | 56187 | 18226. | 0.68739 | -0.5119 | +RichMCHits INFO 1D profile histograms in directory "RichMCHits" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMCHits/Rich1/sigFracVOcc | "Rich1 Signal fraction versus occupancy (..." | 3038779 | 1.1204 | 0.37761 | 3.9194 | 33.184 | + | /RICH/RichMCHits/Rich2/sigFracVOcc | "Rich2 Signal fraction versus occupancy (..." | 2107603 | 1.0672 | 0.33242 | 20.23 | 1105.7 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 27184 |-2.3752e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 643536 | 2.2184e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 785136 | 8.978e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 200376 |-1.4983e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 39501 | 1.0727 | 0.90075 | 0.34616 | -0.41123 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 39052 | 0.048658 | 0.0067279 | -2.5636 | 6.3494 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 27384 | 1.0004e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 365952 |-1.4326e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 428536 |-1.0566e+16 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 108952 |-3.3233e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 21721 | 1.2018 | 1.0255 | 0.54533 | -0.09223 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 21208 | 0.028147 | 0.0033293 | -2.3476 | 5.1966 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2143200 | 27.432 | 266.86 | -0.0051534 | -0.71064 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 2232500 | 20.517 | 255.89 | -0.013686 | -0.15605 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 2232500 | 27.389 | 267.54 | -0.0088903 | -0.79086 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 2232500 | 25.143 | 448.59 | 0.017971 | -1.461 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 2232500 | 40.082 | 211.89 | 0.0042584 | 1.0749 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 2232500 | 25.362 | 448.18 | 0.016157 | -1.4445 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 2232500 | 37.542 | 304.85 | 0.016946 | -0.64532 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 14480 | 1.6812 | 0.51035 | 0.19133 | -0.6459 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 14480 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 12947 | 0.10503 | 0.10308 | 1.0461 | 0.1068 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 14329 | 21430 | 13165. | 2.5908 | 8.7614 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 14412 | 957.18 | 745.14 | 2.7871 | 12.03 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data.ref.x86_64_v3-opt index 13fc30d9f1e6bdfb502591a8273c3f81701a8419..b48f96ef1acfd6afb98766dc8305f247b03a2089 100644 --- a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data.ref.x86_64_v3-opt +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data.ref.x86_64_v3-opt @@ -5,635 +5,627 @@ ApplicationMgr INFO Application Manager Finalized succes ApplicationMgr INFO Application Manager Terminated successfully CloneKillerMatch_6d2ee9e9 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "nTracksInput" | 3076 | 71601 | 23.277 | - | "nTracksSelected" | 3076 | 71601 | 23.277 | + | "nTracksInput" | 4963 | 39897 | 8.0389 | + | "nTracksSelected" | 4963 | 39897 | 8.0389 | DefaultGECFilter INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Nb Events Processed" | 5000 | - | "Nb events removed" | 1924 | + | "Nb events removed" | 37 | FTRawBankDecoder INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "No end fragment found. Ignoring the cluster." | 623 | + | "No end fragment found. Ignoring the cluster." | 286 | HLTControlFlowMgr INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Processed events" | 5000 | MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#banks in raw event" | 5000 | 4225159 | 845.03 | 0.17547 | 845.00 | 846.00 | - | "event size statistics (KBytes)" | 5049 | 367001 | 72.688 | 18.004 | 32.000 | 227.00 | + | "#banks in raw event" | 5000 | 3146349 | 629.27 | 0.44386 | 629.00 | 630.00 | + | "event size statistics (KBytes)" | 5101 | 162018 | 31.762 | 11.963 | 23.000 | 91.000 | PrForwardTrackingVelo_a1aa9f5e INFO Number of counters : 11 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Accepted input tracks" | 2993 | 342860 | 114.55 | - | "Created long tracks" | 2993 | 4968 | 1.6599 | - | "Empty input tracks" | 83 | - | "Input tracks" | 2993 | 358885 | 119.91 | - | "Number of candidate bins per track" | 342860 | 399914 | 1.1664 | 2.0021 | 0.0000 | 35.000 | - | "Number of complete candidates/track 1st Loop" | 154917 | 4036 | 0.026053 | 0.16090 | 0.0000 | 2.0000 | - | "Number of complete candidates/track 2nd Loop" | 152384 | 1077 | 0.0070677 | 0.083928 | 0.0000 | 2.0000 | - | "Number of x candidates per track 1st Loop" | 154917 | 42625 | 0.27515 | 0.57825 | - | "Number of x candidates per track 2nd Loop" | 152384 | 167628 | 1.1000 | 1.4629 | - | "Percentage second loop execution" | 154917 | 152384 | 0.98365 | - | "Removed duplicates" | 2993 | 122 | 0.040762 | -PrForwardTrackingVelo_a1aa9f5e.P... INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 2994 | 11265 | 3.7625 | - | "#tracks with hits added" | 2994 | + | "Accepted input tracks" | 2862 | 211549 | 73.916 | + | "Created long tracks" | 2862 | 3062 | 1.0699 | + | "Empty input tracks" | 2101 | + | "Input tracks" | 2862 | 220464 | 77.031 | + | "Number of candidate bins per track" | 211549 | 314683 | 1.4875 | 3.2363 | 0.0000 | 43.000 | + | "Number of complete candidates/track 1st Loop" | 78548 | 2461 | 0.031331 | 0.17675 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 77075 | 703 | 0.0091210 | 0.095883 | 0.0000 | 3.0000 | + | "Number of x candidates per track 1st Loop" | 78548 | 35179 | 0.44787 | 0.83225 | + | "Number of x candidates per track 2nd Loop" | 77075 | 142076 | 1.8433 | 2.5152 | + | "Percentage second loop execution" | 78548 | 77075 | 0.98125 | + | "Removed duplicates" | 2862 | 82 | 0.028651 | PrHybridSeeding_fdab620b INFO Number of counters : 21 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Created T2x1 three-hit combinations in case 0" | 2872160 | 1580193 | 0.55018 | 0.55373 | 0.0000 | 4.0000 | - | "Created T2x1 three-hit combinations in case 1" | 1495636 | 816603 | 0.54599 | 0.55410 | 0.0000 | 4.0000 | - | "Created T2x1 three-hit combinations in case 2" | 1368392 | 733240 | 0.53584 | 0.56362 | 0.0000 | 5.0000 | - | "Created XZ tracks (part 0)" | 9228 | 202933 | 21.991 | 19.279 | 0.0000 | 203.00 | - | "Created XZ tracks (part 1)" | 9228 | 188606 | 20.438 | 17.727 | 0.0000 | 200.00 | - | "Created XZ tracks in case 0" | 6152 | 182688 | 29.696 | 21.945 | 0.0000 | 203.00 | - | "Created XZ tracks in case 1" | 6152 | 126861 | 20.621 | 16.637 | 0.0000 | 192.00 | - | "Created XZ tracks in case 2" | 6152 | 81990 | 13.327 | 11.739 | 0.0000 | 139.00 | - | "Created full hit combinations in case 0" | 289707 | 289707 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 1" | 145139 | 145139 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created full hit combinations in case 2" | 107016 | 107016 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | - | "Created seed tracks" | 6152 | 139896 | 22.740 | 11.620 | 0.0000 | 77.000 | - | "Created seed tracks (part 0)" | 3076 | 92051 | 29.926 | 15.576 | 0.0000 | 92.000 | - | "Created seed tracks (part 1)" | 3076 | 89116 | 28.971 | 15.025 | 0.0000 | 97.000 | - | "Created seed tracks in case 0" | 6152 | 90220 | 14.665 | 7.6992 | 0.0000 | 46.000 | - | "Created seed tracks in case 1" | 6152 | 143974 | 23.403 | 12.026 | 0.0000 | 73.000 | - | "Created seed tracks in case 2" | 6152 | 173334 | 28.175 | 14.611 | 0.0000 | 93.000 | - | "Created seed tracks in recovery step" | 3076 | 7833 | 2.5465 | 2.4059 | 0.0000 | 18.000 | - | "Created two-hit combinations in case 0" | 1119361 |1.423784e+07 | 12.720 | 9.0999 | 0.0000 | 127.00 | - | "Created two-hit combinations in case 1" | 1119720 | 8130932 | 7.2616 | 5.2280 | 0.0000 | 102.00 | - | "Created two-hit combinations in case 2" | 1034192 | 8076392 | 7.8094 | 5.7480 | 0.0000 | 108.00 | + | "Created T2x1 three-hit combinations in case 0" | 1261778 | 710949 | 0.56345 | 0.55655 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 652546 | 364538 | 0.55864 | 0.55486 | 0.0000 | 5.0000 | + | "Created T2x1 three-hit combinations in case 2" | 560524 | 305759 | 0.54549 | 0.56408 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 14889 | 117146 | 7.8680 | 20.698 | 0.0000 | 436.00 | + | "Created XZ tracks (part 1)" | 14889 | 104121 | 6.9931 | 17.595 | 0.0000 | 295.00 | + | "Created XZ tracks in case 0" | 9926 | 102528 | 10.329 | 24.579 | 0.0000 | 436.00 | + | "Created XZ tracks in case 1" | 9926 | 72657 | 7.3199 | 18.289 | 0.0000 | 322.00 | + | "Created XZ tracks in case 2" | 9926 | 46082 | 4.6426 | 12.359 | 0.0000 | 203.00 | + | "Created full hit combinations in case 0" | 163423 | 163423 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 81457 | 81457 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 58675 | 58675 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 9926 | 79557 | 8.0150 | 13.831 | 0.0000 | 148.00 | + | "Created seed tracks (part 0)" | 4963 | 52583 | 10.595 | 18.522 | 0.0000 | 187.00 | + | "Created seed tracks (part 1)" | 4963 | 50030 | 10.081 | 17.296 | 0.0000 | 139.00 | + | "Created seed tracks in case 0" | 9926 | 50720 | 5.1098 | 8.7899 | 0.0000 | 95.000 | + | "Created seed tracks in case 1" | 9926 | 81500 | 8.2108 | 14.021 | 0.0000 | 143.00 | + | "Created seed tracks in case 2" | 9926 | 98220 | 9.8952 | 17.091 | 0.0000 | 177.00 | + | "Created seed tracks in recovery step" | 4963 | 4393 | 0.88515 | 1.9972 | 0.0000 | 16.000 | + | "Created two-hit combinations in case 0" | 484356 | 5710974 | 11.791 | 10.205 | 0.0000 | 119.00 | + | "Created two-hit combinations in case 1" | 503614 | 3282973 | 6.5188 | 5.8539 | 0.0000 | 112.00 | + | "Created two-hit combinations in case 2" | 436352 | 3071667 | 7.0394 | 6.4270 | 0.0000 | 124.00 | PrKalmanFilterForward_91de0be5 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 737 | - | "chi2 cut" | 1574 | - | "nIterations" | 4968 | 12125 | 2.4406 | - | "nOutlierIterations" | 4231 | 6474 | 1.5301 | - | "nTracksInput" | 3076 | 4968 | 1.6151 | - | "nTracksOutput" | 3076 | 2657 | 0.86378 | + | "Pre outlier chi2 cut" | 503 | + | "chi2 cut" | 907 | + | "nIterations" | 3062 | 7287 | 2.3798 | + | "nOutlierIterations" | 2559 | 3992 | 1.5600 | + | "nTracksInput" | 4963 | 3062 | 0.61697 | + | "nTracksOutput" | 4963 | 1652 | 0.33286 | PrKalmanFilterMatch_2e7949e2 INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Pre outlier chi2 cut" | 1376 | - | "chi2 cut" | 9323 | - | "nIterations" | 71601 | 145768 | 2.0358 | - | "nOutlierIterations" | 70225 | 90864 | 1.2939 | - | "nTracksInput" | 3076 | 71601 | 23.277 | - | "nTracksOutput" | 3076 | 60902 | 19.799 | + | "Pre outlier chi2 cut" | 917 | + | "chi2 cut" | 4501 | + | "nIterations" | 39897 | 80819 | 2.0257 | + | "nOutlierIterations" | 38980 | 49887 | 1.2798 | + | "nTracksInput" | 4963 | 39897 | 8.0389 | + | "nTracksOutput" | 4963 | 34479 | 6.9472 | PrMatchNN_b93758d0 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#MatchingChi2" | 2966 | 950954.2 | 320.62 | - | "#MatchingMLP" | 97108 | 84040.12 | 0.86543 | - | "#MatchingTracks" | 2966 | 71601 | 24.141 | -PrMatchNN_b93758d0.PrAddUTHitsTool INFO Number of counters : 2 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "#UT hits added" | 56105 | 212355 | 3.7850 | - | "#tracks with hits added" | 56105 | + | "#MatchingChi2" | 2157 | 641760 | 297.52 | + | "#MatchingMLP" | 54339 | 45562.87 | 0.83849 | + | "#MatchingTracks" | 2157 | 39897 | 18.497 | PrResidualSciFiHits_6c2b9f03 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Empty Long tracks" | 124 | + | "Empty Long tracks" | 2838 | PrStoreSciFiHits_1bfccf57 INFO Number of counters : 25 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Average X in T1U" | 1149769 |3.054601e+07 | 26.567 | 1196.1 | -2656.0 | 2656.2 | - | "Average X in T1V" | 1094452 |9.776835e+07 | 89.331 | 1148.1 | -2656.7 | 2656.6 | - | "Average X in T1X1" | 1119361 |5.911609e+07 | 52.812 | 1201.8 | -2646.6 | 2646.7 | - | "Average X in T1X2" | 1176422 |2.495555e+07 | 21.213 | 1163.2 | -2646.6 | 2646.3 | - | "Average X in T2U" | 1089722 |3.630414e+07 | 33.315 | 1189.3 | -2656.2 | 2656.2 | - | "Average X in T2V" | 1105107 |1.98284e+07 | 17.943 | 1184.1 | -2656.6 | 2656.3 | - | "Average X in T2X1" | 1044675 | 719734.6 | 0.68896 | 1189.1 | -2646.4 | 2646.4 | - | "Average X in T2X2" | 1188030 | 7501435 | 6.3142 | 1160.2 | -2646.4 | 2646.1 | - | "Average X in T3U" | 1184547 |-3.738851e+07 | -31.564 | 1385.8 | -3187.9 | 3187.7 | - | "Average X in T3V" | 1257502 |9.632551e+07 | 76.601 | 1369.6 | -3189.0 | 3188.8 | - | "Average X in T3X1" | 1146776 | 872621.1 | 0.76093 | 1405.6 | -3176.8 | 3176.7 | - | "Average X in T3X2" | 1344490 |3.328843e+07 | 24.759 | 1378.5 | -3175.6 | 3176.0 | - | "Hits in T1U" | 12304 | 1149769 | 93.447 | 35.338 | 0.0000 | 231.00 | - | "Hits in T1V" | 12304 | 1094452 | 88.951 | 34.561 | 0.0000 | 268.00 | - | "Hits in T1X1" | 12304 | 1119361 | 90.975 | 35.354 | 0.0000 | 285.00 | - | "Hits in T1X2" | 12304 | 1176422 | 95.613 | 35.776 | 0.0000 | 302.00 | - | "Hits in T2U" | 12304 | 1089722 | 88.566 | 32.590 | 0.0000 | 231.00 | - | "Hits in T2V" | 12304 | 1105107 | 89.817 | 33.301 | 0.0000 | 285.00 | - | "Hits in T2X1" | 12304 | 1044675 | 84.905 | 31.334 | 0.0000 | 216.00 | - | "Hits in T2X2" | 12304 | 1188030 | 96.556 | 34.700 | 0.0000 | 230.00 | - | "Hits in T3U" | 12304 | 1184547 | 96.273 | 34.932 | 0.0000 | 265.00 | - | "Hits in T3V" | 12304 | 1257502 | 102.20 | 36.647 | 1.0000 | 275.00 | - | "Hits in T3X1" | 12304 | 1146776 | 93.204 | 33.335 | 0.0000 | 234.00 | - | "Hits in T3X2" | 12304 | 1344490 | 109.27 | 38.184 | 1.0000 | 258.00 | - | "Total number of hits" | 3076 |1.390085e+07 | 4519.1 | 1480.8 | 167.00 | 7174.0 | + | "Average X in T1U" | 514621 |-1.226473e+07 | -23.833 | 1107.7 | -2655.6 | 2655.9 | + | "Average X in T1V" | 510324 |1.223044e+07 | 23.966 | 1080.9 | -2657.2 | 2656.0 | + | "Average X in T1X1" | 484356 |-1.257697e+07 | -25.966 | 1116.0 | -2646.8 | 2645.6 | + | "Average X in T1X2" | 535399 | -4542572 | -8.4845 | 1091.7 | -2646.6 | 2646.0 | + | "Average X in T2U" | 507208 | -6244965 | -12.312 | 1129.8 | -2655.8 | 2655.7 | + | "Average X in T2V" | 523738 |-1.431855e+07 | -27.339 | 1119.8 | -2657.0 | 2655.4 | + | "Average X in T2X1" | 481638 |-1.510715e+07 | -31.366 | 1130.4 | -2646.6 | 2645.6 | + | "Average X in T2X2" | 546398 | -7071058 | -12.941 | 1105.6 | -2646.2 | 2645.6 | + | "Average X in T3U" | 545528 |-2.251427e+07 | -41.271 | 1319.7 | -3187.4 | 3187.9 | + | "Average X in T3V" | 573565 | -2605213 | -4.5421 | 1314.9 | -3189.9 | 3187.7 | + | "Average X in T3X1" | 520766 | -9465402 | -18.176 | 1331.5 | -3176.3 | 3175.9 | + | "Average X in T3X2" | 622746 | -5955182 | -9.5628 | 1295.9 | -3176.9 | 3175.4 | + | "Hits in T1U" | 19852 | 514621 | 25.923 | 40.223 | 0.0000 | 304.00 | + | "Hits in T1V" | 19852 | 510324 | 25.706 | 40.007 | 0.0000 | 232.00 | + | "Hits in T1X1" | 19852 | 484356 | 24.398 | 38.016 | 0.0000 | 243.00 | + | "Hits in T1X2" | 19852 | 535399 | 26.970 | 41.570 | 0.0000 | 271.00 | + | "Hits in T2U" | 19852 | 507208 | 25.549 | 39.089 | 0.0000 | 239.00 | + | "Hits in T2V" | 19852 | 523738 | 26.382 | 40.467 | 0.0000 | 267.00 | + | "Hits in T2X1" | 19852 | 481638 | 24.261 | 37.219 | 0.0000 | 285.00 | + | "Hits in T2X2" | 19852 | 546398 | 27.524 | 41.897 | 0.0000 | 257.00 | + | "Hits in T3U" | 19852 | 545528 | 27.480 | 41.683 | 0.0000 | 267.00 | + | "Hits in T3V" | 19852 | 573565 | 28.892 | 43.525 | 0.0000 | 241.00 | + | "Hits in T3X1" | 19852 | 520766 | 26.232 | 39.691 | 0.0000 | 232.00 | + | "Hits in T3X2" | 19852 | 622746 | 31.369 | 45.543 | 0.0000 | 274.00 | + | "Total number of hits" | 4963 | 6366287 | 1282.7 | 1912.4 | 25.000 | 8506.0 | PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# RawBank::UT banks" | 3076 | 640520 | 208.23 | - | "# RawBank::UTError banks" | 3076 | 23655 | 7.6902 | - |*"Non-unique UT clusters in event" | 3076 | 0 |( 0.000000 +- 0.000000)% | + | "# RawBank::UT banks" | 4963 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 4963 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 4963 | 0 |( 0.000000 +- 0.000000)% | PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | RichRecoStatsLong INFO Number of counters : 6 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 3076 |1.924556e+07 | 6256.7 | 4973.3 | 0.0000 | 31997. | - | "# Rich1Gas Segments" | 3076 | 37926 | 12.330 | 6.6364 | 0.0000 | 35.000 | - | "# Rich2Gas Photons" | 3076 | 5444525 | 1770.0 | 1390.9 | 0.0000 | 8601.0 | - | "# Rich2Gas Segments" | 3076 | 27004 | 8.7789 | 4.8855 | 0.0000 | 30.000 | - | "# Selected Tracks" | 3076 | 51023 | 16.587 | 8.3703 | 0.0000 | 44.000 | - |*"RICH selection efficiency" | 61501 | 51023 |( 82.96288 +- 0.1515999)% | + | "# Rich1Gas Photons" | 4963 |1.216173e+07 | 2450.5 | 5509.4 | 0.0000 | 48446. | + | "# Rich1Gas Segments" | 4963 | 19714 | 3.9722 | 6.8188 | 0.0000 | 42.000 | + | "# Rich2Gas Photons" | 4963 | 3268100 | 658.49 | 1458.1 | 0.0000 | 11621. | + | "# Rich2Gas Segments" | 4963 | 14285 | 2.8783 | 4.9300 | 0.0000 | 27.000 | + | "# Selected Tracks" | 4963 | 27425 | 5.5259 | 9.2183 | 0.0000 | 47.000 | + |*"RICH selection efficiency" | 34109 | 27425 |( 80.40400 +- 0.2149256)% | TBTCMatch_af037d7b INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 58879 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 58879 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 58879 | + |*"BadInput" | 32491 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 32491 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 32491 | TBTC_Forward_c3634c48 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - |*"BadInput" | 2622 | 0 |( 0.000000 +- 0.000000)% | - |*"FitFailed" | 2622 | 0 |( 0.000000 +- 0.000000)% | - | "FittedBefore" | 2622 | + |*"BadInput" | 1618 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 1618 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 1618 | UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 3076 | 3443076 | 1119.3 | + | "# Converted Clusters" | 4963 | 0 | 0.0000 | VPLightClustersToVPMicroClusters... INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Converted Clusters" | 3076 | 5657517 | 1839.2 | + | "# Converted Clusters" | 4963 | 4354398 | 877.37 | VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | - | "Nb of Produced Tracks" | 3076 | 671006 | 218.14 | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | + | "Nb of Produced Tracks" | 4963 | 447651 | 90.198 | FTRawBankDecoder INFO 1D histograms in directory "FTRawBankDecoder" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | no_end_fragment | "No end fragment found;iLink" | 623 | 3377.7 | 1214.2 | 0.28867 | -1.9166 | + | no_end_fragment | "No end fragment found;iLink" | 286 | 3329.9 | 1206.4 | 0.36979 | -1.8632 | RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8418047 | 7.8601e-05 | 0.0029870 | -0.026216 | -1.0032 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8418047 | 7.8601e-05 | 0.0029870 | -0.026216 | -1.0032 | - | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 8418047 | 7.8601e-05 | 0.0029870 | -0.026216 | -1.0032 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 233 | 0.0002341 | 0.0022118 | -0.18861 | 0.28681 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1915 | 0.00040096 | 0.0021829 | -0.089575 | 0.35292 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 203251 | 0.00029728 | 0.0028831 | -0.063907 | -0.90175 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6732 | 0.00018447 | 0.0023623 | -0.13279 | -0.033377 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 17643 | 4.9345e-05 | 0.0024580 | 0.018433 | -0.21802 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48881 | 0.00020879 | 0.0026117 | -0.070807 | -0.49187 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 182501 | 0.000233 | 0.0027697 | -0.046603 | -0.73036 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1081043 | 0.00042318 | 0.0029490 | -0.13517 | -0.95712 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2895621 | 4.9411e-05 | 0.0030261 | -0.017112 | -1.048 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2551484 |-6.3382e-05 | 0.0030087 | 0.017585 | -1.0255 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1428743 |-2.7062e-05 | 0.0029590 | 0.0081019 | -0.97358 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 233 | 0.0002341 | 0.0022118 | -0.18861 | 0.28681 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1915 | 0.00040096 | 0.0021829 | -0.089575 | 0.35292 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 203251 | 0.00029728 | 0.0028831 | -0.063907 | -0.90175 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6732 | 0.00018447 | 0.0023623 | -0.13279 | -0.033377 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 17643 | 4.9345e-05 | 0.0024580 | 0.018433 | -0.21802 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 48881 | 0.00020879 | 0.0026117 | -0.070807 | -0.49187 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 182501 | 0.000233 | 0.0027697 | -0.046603 | -0.73036 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1081043 | 0.00042318 | 0.0029490 | -0.13517 | -0.95712 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2895621 | 4.9411e-05 | 0.0030261 | -0.017112 | -1.048 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2551484 |-6.3382e-05 | 0.0030087 | 0.017585 | -1.0255 | - | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1428743 |-2.7062e-05 | 0.0029590 | 0.0081019 | -0.97358 | - | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 17314695 | 7.6881e-05 | 0.0029862 | -0.024131 | -1.0015 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 17314695 | 7.6881e-05 | 0.0029862 | -0.024131 | -1.0015 | - | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 17314695 | 7.6881e-05 | 0.0029862 | -0.024131 | -1.0015 | - | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 17314695 | 3.1511 | 1.8229 | -0.0069836 | -1.1873 | - | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 17314695 | 0.04097 | 0.010935 | -0.66844 | -0.38886 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8896648 | 7.5238e-05 | 0.0029854 | -0.022136 | -0.9999 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8896648 | 7.5238e-05 | 0.0029854 | -0.022136 | -0.9999 | - | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 8896648 | 7.5238e-05 | 0.0029854 | -0.022136 | -0.9999 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 182 | 0.00064492 | 0.0019805 | 0.33931 | 0.48025 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1481 | 9.0605e-05 | 0.0022560 | -0.094634 | 0.17642 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 303921 | 0.00031061 | 0.0028738 | -0.094564 | -0.87927 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5208 |-9.5203e-05 | 0.0023283 | 0.099012 | -0.040016 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 15600 | 3.8612e-05 | 0.0024130 | 0.034525 | -0.18987 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 48301 | 5.3998e-05 | 0.0026191 | 0.039482 | -0.53607 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 167266 | 0.00025537 | 0.0027601 | -0.072381 | -0.69991 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 997351 | 0.00044172 | 0.0029444 | -0.13918 | -0.94047 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2865288 | 5.1197e-05 | 0.0030188 | -0.012192 | -1.04 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2811112 |-4.7476e-05 | 0.0030114 | 0.015339 | -1.0323 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1680938 |-4.1373e-05 | 0.0029657 | 0.017671 | -0.97306 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 182 | 0.00064492 | 0.0019805 | 0.33931 | 0.48025 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1481 | 9.0605e-05 | 0.0022560 | -0.094634 | 0.17642 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 303921 | 0.00031061 | 0.0028738 | -0.094564 | -0.87927 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5208 |-9.5203e-05 | 0.0023283 | 0.099012 | -0.040016 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 15600 | 3.8612e-05 | 0.0024130 | 0.034525 | -0.18987 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 48301 | 5.3998e-05 | 0.0026191 | 0.039482 | -0.53607 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 167266 | 0.00025537 | 0.0027601 | -0.072381 | -0.69991 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 997351 | 0.00044172 | 0.0029444 | -0.13918 | -0.94047 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2865288 | 5.1197e-05 | 0.0030188 | -0.012192 | -1.04 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2811112 |-4.7476e-05 | 0.0030114 | 0.015339 | -1.0323 | - | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1680938 |-4.1373e-05 | 0.0029657 | 0.017671 | -0.97306 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2654310 | 5.169e-05 | 0.0018596 | -0.018997 | -0.91463 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2654310 | 5.169e-05 | 0.0018596 | -0.018997 | -0.91463 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2485347 | 3.9819e-05 | 0.0018697 | -0.012126 | -0.93451 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 168963 | 0.00019295 | 0.0017295 | -0.081552 | -0.63386 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23451 |-1.8698e-05 | 0.0017163 | 0.0026711 | -0.61252 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57877 | 0.00039127 | 0.0018346 | -0.20904 | -0.86075 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16951 | 0.00024529 | 0.0018349 | -0.10448 | -0.8764 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6976 | 0.00023728 | 0.0018080 | -0.12672 | -0.82611 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64009 | 0.00016352 | 0.0017785 | -0.049211 | -0.76356 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 166539 | 6.3946e-05 | 0.0018446 | -0.016016 | -0.8921 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 286009 | 2.3935e-05 | 0.0018512 | 0.0046726 | -0.89248 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 410278 | -3.725e-05 | 0.0018572 | 0.038882 | -0.89685 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 474926 |-7.2186e-05 | 0.0018810 | 0.047254 | -0.94881 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 490834 |-2.2202e-05 | 0.0018944 | 0.017313 | -0.98317 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 329902 | 0.00013933 | 0.0018860 | -0.073164 | -0.97374 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 157595 | 0.00021899 | 0.0018665 | -0.12612 | -0.92538 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4303 | 8.4254e-05 | 0.0016068 | -0.036277 | -0.30358 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6546 | 0.00017722 | 0.0017140 | -0.064404 | -0.57829 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3224 | 0.00016897 | 0.0017498 | -0.040345 | -0.70294 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1855 | 0.00025789 | 0.0017061 | -0.0071397 | -0.57051 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7391 | 0.00014335 | 0.0016582 | -0.070211 | -0.47523 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13632 | 0.00021118 | 0.0016991 | -0.082027 | -0.55617 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19703 | 0.00022551 | 0.0017380 | -0.0819 | -0.65386 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25511 | 0.00017591 | 0.0017361 | -0.074294 | -0.66468 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29702 | 0.00020158 | 0.0017418 | -0.09329 | -0.66392 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26867 | 0.00019292 | 0.0017478 | -0.087271 | -0.651 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 18554 | 0.00021649 | 0.0017401 | -0.10169 | -0.67223 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11675 | 0.00016762 | 0.0017436 | -0.085924 | -0.67531 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27754 |-3.4848e-07 | 0.0016977 | -0.0065553 | -0.56357 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 64423 | 0.00036938 | 0.0018238 | -0.19244 | -0.84042 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20175 | 0.000233 | 0.0018217 | -0.093784 | -0.85148 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8831 | 0.00024175 | 0.0017864 | -0.10485 | -0.77425 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 71400 | 0.00016135 | 0.0017660 | -0.050675 | -0.73564 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 180171 | 7.7059e-05 | 0.0018326 | -0.023669 | -0.8667 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 305712 | 3.9373e-05 | 0.0018436 | -0.0035821 | -0.87719 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 435789 |-2.1182e-05 | 0.0018492 | 0.028808 | -0.88305 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 504628 |-5.0032e-05 | 0.0018716 | 0.033498 | -0.93183 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 517701 |-8.2655e-06 | 0.0018860 | 0.0088744 | -0.96602 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 348456 | 0.00014401 | 0.0018775 | -0.075616 | -0.95761 | - | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 169270 | 0.00021523 | 0.0018578 | -0.12301 | -0.90923 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2673825 | 4.9292e-05 | 0.0018577 | -0.018123 | -0.90826 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2673825 | 4.9292e-05 | 0.0018577 | -0.018123 | -0.90826 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2511827 | 3.8257e-05 | 0.0018683 | -0.012289 | -0.929 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 161998 | 0.00018507 | 0.0017157 | -0.067192 | -0.60801 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7925 | 0.00024718 | 0.0018249 | -0.13358 | -0.85973 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 136576 | 6.1463e-05 | 0.0018233 | -0.012517 | -0.83568 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43911 | 0.00016587 | 0.0017543 | -0.058531 | -0.68817 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20457 |-5.2352e-05 | 0.0016984 | 0.010207 | -0.56246 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18477 | 0.00032682 | 0.0018593 | -0.18127 | -0.89868 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 77877 | 0.00037388 | 0.0018226 | -0.18734 | -0.85128 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 186378 | 0.00017269 | 0.0018777 | -0.087985 | -0.95215 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 383477 | 0.00010776 | 0.0018892 | -0.056869 | -0.98071 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 521772 |-5.7374e-05 | 0.0018912 | 0.040082 | -0.97044 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 467780 |-7.2754e-05 | 0.0018774 | 0.045906 | -0.93694 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 397075 | 4.2814e-06 | 0.0018559 | 0.0096846 | -0.89468 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 250122 | 3.8977e-05 | 0.0018449 | -0.0072715 | -0.88122 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1716 | 0.00018854 | 0.0016944 | -0.03186 | -0.62897 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12072 | 0.0001304 | 0.0017102 | -0.049644 | -0.58346 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6230 | 0.00011145 | 0.0016345 | -0.078232 | -0.36717 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3892 | 9.3012e-05 | 0.0016063 | -0.047937 | -0.27217 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2729 | 0.00019094 | 0.0016961 | 0.013157 | -0.61798 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6096 | 0.00019231 | 0.0017013 | 0.018399 | -0.6077 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10445 | 0.00017767 | 0.0017027 | -0.03944 | -0.60709 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19430 | 0.00020414 | 0.0017423 | -0.083429 | -0.68394 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 27286 | 0.00017829 | 0.0017348 | -0.087507 | -0.65106 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 28894 | 0.00021226 | 0.0017263 | -0.070121 | -0.62424 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24532 | 0.0001945 | 0.0017094 | -0.081205 | -0.59332 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18676 | 0.00020397 | 0.0017217 | -0.074578 | -0.61594 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9641 | 0.00023642 | 0.0018018 | -0.11612 | -0.82222 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 148648 | 6.7719e-05 | 0.0018135 | -0.016487 | -0.81517 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 50141 | 0.00015823 | 0.0017381 | -0.059349 | -0.64773 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24349 |-2.6416e-05 | 0.0016832 | -0.0028378 | -0.51725 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21206 | 0.00030895 | 0.0018392 | -0.15698 | -0.87094 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83973 | 0.0003604 | 0.0018145 | -0.17202 | -0.83974 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 196823 | 0.00017298 | 0.0018679 | -0.085965 | -0.93447 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 402907 | 0.00011325 | 0.0018812 | -0.059323 | -0.96574 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 549058 |-4.2379e-05 | 0.0018825 | 0.030217 | -0.95491 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 496674 |-4.9724e-05 | 0.0018673 | 0.03332 | -0.91747 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 421607 | 1.8495e-05 | 0.0018460 | 0.0010767 | -0.87608 | - | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 268798 | 5.295e-05 | 0.0018353 | -0.014653 | -0.86184 | - | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 5328135 | 5.0485e-05 | 0.0018586 | -0.018557 | -0.91144 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 5328135 | 5.0485e-05 | 0.0018586 | -0.018557 | -0.91144 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 4997174 | 3.9034e-05 | 0.0018690 | -0.012207 | -0.93174 | - | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 330961 | 0.00018905 | 0.0017227 | -0.074482 | -0.62119 | - | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 5328135 | 3.14 | 1.8157 |-3.3084e-05 | -1.1913 | - | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 5328135 | 0.024991 | 0.0054741 | -0.5877 | -0.55523 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5239910 | 7.5692e-05 | 0.0030170 | -0.027041 | -1.0368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5239910 | 7.5692e-05 | 0.0030170 | -0.027041 | -1.0368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5239910 | 7.5692e-05 | 0.0030170 | -0.027041 | -1.0368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78 | 0.00064854 | 0.0020423 | 0.44776 | 0.57086 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 502 | 0.0002963 | 0.0020078 | -0.32497 | 0.90804 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133642 | 0.00030715 | 0.0029266 | -0.075354 | -0.94956 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2283 | 0.00034285 | 0.0022540 | -0.050233 | 0.14992 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6470 | 0.00024402 | 0.0024270 | -0.02617 | -0.22139 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22190 | 0.00023952 | 0.0026638 | -0.077726 | -0.56572 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 93152 | 0.00030992 | 0.0028220 | -0.078963 | -0.79109 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 632047 | 0.0004463 | 0.0029823 | -0.14347 | -0.98793 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1854806 | 5.0634e-05 | 0.0030433 | -0.019556 | -1.07 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1612369 |-7.8602e-05 | 0.0030336 | 0.02138 | -1.054 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 882371 |-3.2907e-05 | 0.0029921 | 0.0080084 | -1.0093 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 78 | 0.00064854 | 0.0020423 | 0.44776 | 0.57086 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 502 | 0.0002963 | 0.0020078 | -0.32497 | 0.90804 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 133642 | 0.00030715 | 0.0029266 | -0.075354 | -0.94956 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2283 | 0.00034285 | 0.0022540 | -0.050233 | 0.14992 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6470 | 0.00024402 | 0.0024270 | -0.02617 | -0.22139 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22190 | 0.00023952 | 0.0026638 | -0.077726 | -0.56572 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 93152 | 0.00030992 | 0.0028220 | -0.078963 | -0.79109 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 632047 | 0.0004463 | 0.0029823 | -0.14347 | -0.98793 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1854806 | 5.0634e-05 | 0.0030433 | -0.019556 | -1.07 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1612369 |-7.8602e-05 | 0.0030336 | 0.02138 | -1.054 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 882371 |-3.2907e-05 | 0.0029921 | 0.0080084 | -1.0093 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 10892269 | 7.4676e-05 | 0.0030148 | -0.024651 | -1.0346 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 10892269 | 7.4676e-05 | 0.0030148 | -0.024651 | -1.0346 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 10892269 | 7.4676e-05 | 0.0030148 | -0.024651 | -1.0346 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 10892269 | 3.1456 | 1.8216 | -0.0012835 | -1.1865 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 10892269 | 0.040931 | 0.010891 | -0.65402 | -0.39806 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5652359 | 7.373e-05 | 0.0030126 | -0.022418 | -1.0325 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5652359 | 7.373e-05 | 0.0030126 | -0.022418 | -1.0325 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5652359 | 7.373e-05 | 0.0030126 | -0.022418 | -1.0325 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 32 | 0.00050024 | 0.0016268 | 1.0488 | 0.67355 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 422 | 0.00049077 | 0.0020529 | -0.27544 | 0.66917 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 197465 | 0.00030143 | 0.0029248 | -0.089676 | -0.93448 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1785 | 0.00017857 | 0.0023731 | -0.05204 | -0.13836 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6080 | 0.00014852 | 0.0025255 | -0.018308 | -0.38232 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20701 | 0.00011897 | 0.0026395 | -0.0047286 | -0.57018 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 78558 | 0.00031496 | 0.0027900 | -0.096017 | -0.75269 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 582156 | 0.00050118 | 0.0029625 | -0.15896 | -0.96179 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1910848 | 5.4149e-05 | 0.0030376 | -0.014298 | -1.0627 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1785261 |-6.8209e-05 | 0.0030351 | 0.022846 | -1.0585 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1069051 |-5.1531e-05 | 0.0029884 | 0.019078 | -1.005 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 32 | 0.00050024 | 0.0016268 | 1.0488 | 0.67355 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 422 | 0.00049077 | 0.0020529 | -0.27544 | 0.66917 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 197465 | 0.00030143 | 0.0029248 | -0.089676 | -0.93448 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1785 | 0.00017857 | 0.0023731 | -0.05204 | -0.13836 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6080 | 0.00014852 | 0.0025255 | -0.018308 | -0.38232 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20701 | 0.00011897 | 0.0026395 | -0.0047286 | -0.57018 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 78558 | 0.00031496 | 0.0027900 | -0.096017 | -0.75269 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 582156 | 0.00050118 | 0.0029625 | -0.15896 | -0.96179 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1910848 | 5.4149e-05 | 0.0030376 | -0.014298 | -1.0627 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1785261 |-6.8209e-05 | 0.0030351 | 0.022846 | -1.0585 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1069051 |-5.1531e-05 | 0.0029884 | 0.019078 | -1.005 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1570249 | 5.3299e-05 | 0.0018720 | -0.023448 | -0.93912 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1570249 | 5.3299e-05 | 0.0018720 | -0.023448 | -0.93912 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1491577 | 4.2571e-05 | 0.0018800 | -0.017589 | -0.95447 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 78672 | 0.00021402 | 0.0017390 | -0.088461 | -0.66731 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10851 |-4.1108e-05 | 0.0017796 | 0.019135 | -0.74761 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29418 | 0.00045147 | 0.0018300 | -0.25099 | -0.8352 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8338 | 0.00024933 | 0.0018582 | -0.12585 | -0.88207 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3415 | 0.00027921 | 0.0018604 | -0.18187 | -0.86234 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33700 | 0.00022751 | 0.0017947 | -0.06891 | -0.8006 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 95628 | 7.887e-05 | 0.0018569 | -0.034561 | -0.90089 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 170583 | 3.5439e-05 | 0.0018597 | -0.007261 | -0.90937 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 245802 |-4.4129e-05 | 0.0018646 | 0.036568 | -0.9147 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 289269 |-9.7021e-05 | 0.0018905 | 0.054839 | -0.9651 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 306027 |-2.6915e-05 | 0.0018999 | 0.017626 | -1.0001 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 206230 | 0.00014605 | 0.0018928 | -0.075964 | -0.98971 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92316 | 0.00026481 | 0.0018701 | -0.1512 | -0.92799 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1724 | 0.00013649 | 0.0016172 | -0.095835 | -0.33437 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2541 | 0.00014617 | 0.0017022 | -0.083653 | -0.61113 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1050 | 0.00031732 | 0.0016655 | -0.10147 | -0.68158 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 482 | 0.00028313 | 0.0017887 | -0.20442 | -0.64785 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2778 | 0.00023216 | 0.0016250 | -0.072908 | -0.41787 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5937 | 0.00022483 | 0.0016996 | -0.042898 | -0.61264 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9123 | 0.00025387 | 0.0017359 | -0.090021 | -0.69157 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12531 | 0.00021046 | 0.0017545 | -0.080385 | -0.67008 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15481 | 0.00020728 | 0.0017684 | -0.094482 | -0.71309 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13490 | 0.00017739 | 0.0017524 | -0.070126 | -0.69978 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8618 | 0.000238 | 0.0017466 | -0.13055 | -0.69195 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4917 | 0.00023414 | 0.0017476 | -0.119 | -0.68036 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12575 | -1.066e-05 | 0.0017541 | -0.003958 | -0.69046 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31959 | 0.00042678 | 0.0018219 | -0.23451 | -0.8256 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9388 | 0.00025752 | 0.0018362 | -0.1262 | -0.85562 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3897 | 0.00027972 | 0.0018513 | -0.18462 | -0.83658 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 36478 | 0.00022787 | 0.0017820 | -0.069315 | -0.77457 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101565 | 8.936e-05 | 0.0018464 | -0.037597 | -0.88181 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 179706 | 4.9036e-05 | 0.0018529 | -0.014082 | -0.89778 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 258333 |-2.7599e-05 | 0.0018587 | 0.027388 | -0.90247 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 304750 |-7.4947e-05 | 0.0018836 | 0.04189 | -0.95226 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 319517 |-1.5807e-05 | 0.0018927 | 0.011386 | -0.98665 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 214848 | 0.00015013 | 0.0018866 | -0.078829 | -0.97818 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 97233 | 0.0002632 | 0.0018639 | -0.14954 | -0.91645 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1618487 | 5.0664e-05 | 0.0018690 | -0.021447 | -0.93148 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1618487 | 5.0664e-05 | 0.0018690 | -0.021447 | -0.93148 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1538805 | 3.8636e-05 | 0.0018769 | -0.014425 | -0.94747 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79682 | 0.00023326 | 0.0017334 | -0.10364 | -0.63449 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3949 | 0.00028881 | 0.0017972 | -0.12268 | -0.83182 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 73195 | 0.00011168 | 0.0018277 | -0.040883 | -0.84832 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21174 | 0.0002212 | 0.0017800 | -0.099969 | -0.7531 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9527 |-6.0929e-05 | 0.0017221 | 0.017087 | -0.63309 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10843 | 0.00034865 | 0.0018610 | -0.16193 | -0.93867 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49504 | 0.00037997 | 0.0018453 | -0.1923 | -0.8931 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 120282 | 0.00017687 | 0.0018853 | -0.089887 | -0.96887 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 254340 | 9.141e-05 | 0.0018976 | -0.047224 | -1.0006 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 329652 |-6.2027e-05 | 0.0018929 | 0.038978 | -0.98174 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 285567 |-9.4498e-05 | 0.0018878 | 0.05747 | -0.95125 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 236230 | 4.3184e-06 | 0.0018595 | 0.00052551 | -0.89688 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 144542 | 5.2995e-05 | 0.0018461 | -0.012712 | -0.88704 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 729 | 2.4438e-05 | 0.0017283 | 0.095772 | -0.73558 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5171 | 0.00022134 | 0.0016912 | -0.10529 | -0.55436 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2852 | 0.00013835 | 0.0016721 | -0.072824 | -0.41145 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1571 | 7.9849e-05 | 0.0015342 | 0.013468 | -0.25412 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1358 | 6.8302e-05 | 0.0017823 | 0.0068602 | -0.63994 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2890 | 0.00017796 | 0.0017707 | -0.066636 | -0.69993 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5963 | 0.00026277 | 0.0017091 | -0.12655 | -0.61282 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10129 | 0.00020414 | 0.0017584 | -0.11177 | -0.70266 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14088 | 0.00021712 | 0.0017506 | -0.1084 | -0.67492 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14449 | 0.000277 | 0.0017356 | -0.11781 | -0.62501 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12053 | 0.00025763 | 0.0017501 | -0.1033 | -0.66339 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8429 | 0.00028418 | 0.0017240 | -0.12349 | -0.61528 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4678 | 0.00024902 | 0.0017895 | -0.088573 | -0.82977 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78366 | 0.00011993 | 0.0018180 | -0.046604 | -0.82909 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24026 | 0.00021008 | 0.0017661 | -0.094959 | -0.71318 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11098 | -3.832e-05 | 0.0016942 | 0.0095601 | -0.57764 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12201 | 0.00031698 | 0.0018544 | -0.14097 | -0.91529 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52394 | 0.00036937 | 0.0018421 | -0.18505 | -0.88589 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 126245 | 0.00018157 | 0.0018762 | -0.092724 | -0.95197 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 264469 | 9.6421e-05 | 0.0018918 | -0.050605 | -0.98926 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 343740 |-4.6985e-05 | 0.0018865 | 0.029435 | -0.96976 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 300016 |-6.8964e-05 | 0.0018801 | 0.042317 | -0.93662 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 248283 | 2.0595e-05 | 0.0018537 | -0.0077881 | -0.88481 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 152971 | 6.8415e-05 | 0.0018391 | -0.021702 | -0.87254 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 3188736 | 5.1961e-05 | 0.0018705 | -0.022431 | -0.93525 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3188736 | 5.1961e-05 | 0.0018705 | -0.022431 | -0.93525 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3030382 | 4.0572e-05 | 0.0018785 | -0.01598 | -0.95093 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 158354 | 0.00022373 | 0.0017362 | -0.096135 | -0.65094 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 3188736 | 3.138 | 1.8153 | 0.0038076 | -1.1887 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 3188736 | 0.024935 | 0.0054851 | -0.56784 | -0.57999 | RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5877685 | 6.0583e-05 | 0.0029717 | -0.016712 | -0.98566 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5877685 | 6.0583e-05 | 0.0029717 | -0.016712 | -0.98566 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5877685 | 6.0583e-05 | 0.0029717 | -0.016712 | -0.98566 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137 | 0.00085466 | 0.0019402 | 0.049619 | 0.47642 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1545 | 0.00049513 | 0.0021813 | -0.14784 | 0.44558 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 138807 | 0.00023967 | 0.0028534 | -0.03677 | -0.86519 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5623 | 0.00022124 | 0.0023644 | -0.10696 | -0.029969 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 14968 | 2.3127e-05 | 0.0024601 | 0.022823 | -0.226 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41716 | 0.00018745 | 0.0026036 | -0.06893 | -0.48076 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152461 | 0.00022195 | 0.0027595 | -0.046131 | -0.71506 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 798197 | 0.00033444 | 0.0029462 | -0.099243 | -0.95815 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1996757 | 4.3497e-05 | 0.0030160 | -0.011258 | -1.0368 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1762956 |-7.4608e-05 | 0.0029943 | 0.02233 | -1.0092 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 964518 |-2.7745e-05 | 0.0029435 | 0.011721 | -0.95403 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137 | 0.00085466 | 0.0019402 | 0.049619 | 0.47642 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1545 | 0.00049513 | 0.0021813 | -0.14784 | 0.44558 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 138807 | 0.00023967 | 0.0028534 | -0.03677 | -0.86519 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5623 | 0.00022124 | 0.0023644 | -0.10696 | -0.029969 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 14968 | 2.3127e-05 | 0.0024601 | 0.022823 | -0.226 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 41716 | 0.00018745 | 0.0026036 | -0.06893 | -0.48076 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 152461 | 0.00022195 | 0.0027595 | -0.046131 | -0.71506 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 798197 | 0.00033444 | 0.0029462 | -0.099243 | -0.95815 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1996757 | 4.3497e-05 | 0.0030160 | -0.011258 | -1.0368 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1762956 |-7.4608e-05 | 0.0029943 | 0.02233 | -1.0092 | - | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 964518 |-2.7745e-05 | 0.0029435 | 0.011721 | -0.95403 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 12132295 | 5.8435e-05 | 0.0029718 | -0.014611 | -0.98431 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 12132295 | 5.8435e-05 | 0.0029718 | -0.014611 | -0.98431 | - | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 12132295 | 5.8435e-05 | 0.0029718 | -0.014611 | -0.98431 | - | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 12132295 | 3.1523 | 1.8222 | -0.007568 | -1.1865 | - | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 12132295 | 0.041075 | 0.010894 | -0.68096 | -0.36138 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6254610 | 5.6398e-05 | 0.0029719 | -0.012618 | -0.98303 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6254610 | 5.6398e-05 | 0.0029719 | -0.012618 | -0.98303 | - | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6254610 | 5.6398e-05 | 0.0029719 | -0.012618 | -0.98303 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 154 | 0.00072452 | 0.0020398 | 0.25173 | 0.42624 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1198 | 5.1667e-06 | 0.0022324 | -0.065662 | 0.19273 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 207508 | 0.00027425 | 0.0028394 | -0.076251 | -0.83718 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4183 |-5.0557e-05 | 0.0023070 | 0.096072 | -0.0025319 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13405 | 1.9649e-05 | 0.0024124 | 0.036453 | -0.17648 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40673 | 6.4692e-05 | 0.0026204 | 0.033924 | -0.53751 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142182 | 0.00023692 | 0.0027672 | -0.066538 | -0.70579 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 756395 | 0.00035059 | 0.0029391 | -0.10556 | -0.93908 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1989133 | 3.8514e-05 | 0.0030133 | -0.0038264 | -1.0308 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1954767 |-6.0508e-05 | 0.0030014 | 0.021769 | -1.02 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1145012 |-4.4288e-05 | 0.0029470 | 0.021608 | -0.95019 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 154 | 0.00072452 | 0.0020398 | 0.25173 | 0.42624 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1198 | 5.1667e-06 | 0.0022324 | -0.065662 | 0.19273 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 207508 | 0.00027425 | 0.0028394 | -0.076251 | -0.83718 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4183 |-5.0557e-05 | 0.0023070 | 0.096072 | -0.0025319 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13405 | 1.9649e-05 | 0.0024124 | 0.036453 | -0.17648 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 40673 | 6.4692e-05 | 0.0026204 | 0.033924 | -0.53751 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 142182 | 0.00023692 | 0.0027672 | -0.066538 | -0.70579 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 756395 | 0.00035059 | 0.0029391 | -0.10556 | -0.93908 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1989133 | 3.8514e-05 | 0.0030133 | -0.0038264 | -1.0308 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1954767 |-6.0508e-05 | 0.0030014 | 0.021769 | -1.02 | - | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1145012 |-4.4288e-05 | 0.0029470 | 0.021608 | -0.95019 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1667673 | 4.8565e-05 | 0.0018581 | -0.016294 | -0.91335 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1667673 | 4.8565e-05 | 0.0018581 | -0.016294 | -0.91335 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1531440 | 3.5405e-05 | 0.0018719 | -0.0084612 | -0.94054 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 136233 | 0.00016913 | 0.0017218 | -0.070589 | -0.61783 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20200 |-1.6545e-05 | 0.0017115 | -0.0032656 | -0.60088 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 38018 | 0.00024612 | 0.0018437 | -0.12865 | -0.88756 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15000 | 0.00021524 | 0.0018318 | -0.081169 | -0.87932 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6475 | 0.00022216 | 0.0018132 | -0.12808 | -0.83614 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 53751 | 0.00015093 | 0.0017760 | -0.042959 | -0.75362 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 130543 | 2.791e-05 | 0.0018400 | 0.002287 | -0.88368 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 198499 |-3.9458e-05 | 0.0018549 | 0.035584 | -0.90178 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 249136 | -3.966e-05 | 0.0018683 | 0.037656 | -0.91656 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 284627 |-5.8516e-05 | 0.0018912 | 0.042641 | -0.97201 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 288040 | 1.3656e-05 | 0.0018986 |-0.00021349 | -0.9985 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 164887 | 0.00021315 | 0.0018932 | -0.11222 | -0.98314 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 82264 | 0.00017136 | 0.0018697 | -0.097802 | -0.92774 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3532 | 5.9744e-05 | 0.0015998 | -0.034934 | -0.31007 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5655 | 0.00014131 | 0.0017123 | -0.059985 | -0.56808 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2784 | 0.0001572 | 0.0017631 | -0.030002 | -0.73152 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1602 | 0.00025013 | 0.0017665 | -0.0080652 | -0.66059 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6094 | 0.0001555 | 0.0016534 | -0.081007 | -0.44789 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11293 | 0.00020095 | 0.0016948 | -0.068032 | -0.56364 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16198 | 0.00020635 | 0.0017238 | -0.076468 | -0.62492 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20674 | 0.00017608 | 0.0017242 | -0.070658 | -0.64561 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23065 | 0.00015564 | 0.0017327 | -0.075312 | -0.64615 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20808 | 0.00014344 | 0.0017422 | -0.067009 | -0.62832 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14825 | 0.00018996 | 0.0017317 | -0.082151 | -0.65594 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9703 | 0.00015689 | 0.0017361 | -0.082284 | -0.66464 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23732 |-3.4422e-06 | 0.0016931 | -0.010328 | -0.55585 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 43673 | 0.00023169 | 0.0018265 | -0.11805 | -0.85047 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17784 | 0.00020614 | 0.0018213 | -0.072961 | -0.85816 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8077 | 0.0002277 | 0.0018041 | -0.10617 | -0.80203 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 59845 | 0.00015141 | 0.0017635 | -0.046408 | -0.72473 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 141836 | 4.4341e-05 | 0.0018274 | -0.0067323 | -0.85795 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 214697 | -1.664e-05 | 0.0018445 | 0.022555 | -0.88154 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 269810 |-1.7521e-05 | 0.0018552 | 0.023976 | -0.89416 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 307692 | -3.731e-05 | 0.0018772 | 0.028549 | -0.94662 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 308848 | 2.3832e-05 | 0.0018872 | -0.0066979 | -0.97435 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 179712 | 0.00021102 | 0.0018790 | -0.10964 | -0.95701 | - | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 91967 | 0.00016967 | 0.0018546 | -0.096055 | -0.9001 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1689055 | 4.1466e-05 | 0.0018558 | -0.011637 | -0.90542 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1689055 | 4.1466e-05 | 0.0018558 | -0.011637 | -0.90542 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1557884 | 2.8996e-05 | 0.0018702 | -0.0048426 | -0.93319 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 131171 | 0.00016003 | 0.0017085 | -0.055382 | -0.59357 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7194 | 0.00022724 | 0.0018263 | -0.115 | -0.86901 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 111305 | 2.5987e-05 | 0.0018197 | 0.0026901 | -0.82717 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37835 | 0.00017134 | 0.0017578 | -0.061788 | -0.68965 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18126 |-5.9695e-05 | 0.0016987 | 0.016477 | -0.56 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16153 | 0.00030726 | 0.0018628 | -0.1687 | -0.90446 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 48066 | 0.00023552 | 0.0018409 | -0.11926 | -0.88192 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 94928 | 0.00013907 | 0.0018778 | -0.072219 | -0.94349 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 199687 | 0.0001839 | 0.0018928 | -0.095395 | -0.98177 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 315520 | -4.758e-05 | 0.0018950 | 0.038281 | -0.98294 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 280812 | -6.358e-05 | 0.0018895 | 0.046495 | -0.96392 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 246588 |-2.0671e-05 | 0.0018666 | 0.0268 | -0.91483 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 181670 |-1.8647e-05 | 0.0018437 | 0.02126 | -0.8845 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1494 | 0.00018279 | 0.0016878 | -0.013369 | -0.58335 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10149 | 0.000127 | 0.0017072 | -0.040394 | -0.5787 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5379 | 9.673e-05 | 0.0016410 | -0.069534 | -0.37036 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3377 | 9.0971e-05 | 0.0016112 | -0.03606 | -0.2899 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2394 | 0.00019391 | 0.0016909 | 0.006249 | -0.60488 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5158 | 0.00019694 | 0.0016970 | 0.0054998 | -0.60111 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8819 | 0.0001682 | 0.0017036 | -0.043428 | -0.58493 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15627 | 0.00014836 | 0.0017286 | -0.062417 | -0.65412 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20897 | 0.00012091 | 0.0017195 | -0.064747 | -0.63467 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 22627 | 0.00016344 | 0.0017183 | -0.039466 | -0.60998 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20008 | 0.00018302 | 0.0016999 | -0.078924 | -0.57447 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15242 | 0.00021959 | 0.0017250 | -0.079163 | -0.62799 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8688 | 0.00021938 | 0.0018027 | -0.098772 | -0.82471 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 121454 | 3.5532e-05 | 0.0018096 | -0.0024514 | -0.80626 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 43214 | 0.00016078 | 0.0017419 | -0.060696 | -0.6492 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21503 |-3.3203e-05 | 0.0016846 | 0.0044759 | -0.51825 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18547 | 0.00029233 | 0.0018415 | -0.14721 | -0.87325 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53224 | 0.00023148 | 0.0018264 | -0.10796 | -0.85631 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 103747 | 0.00014189 | 0.0018617 | -0.070898 | -0.91309 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 215314 | 0.00018102 | 0.0018800 | -0.092679 | -0.95877 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 336417 |-3.5104e-05 | 0.0018831 | 0.029222 | -0.96217 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 303439 |-4.0429e-05 | 0.0018740 | 0.033971 | -0.93463 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 266596 |-1.3607e-07 | 0.0018515 | 0.013443 | -0.88719 | - | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 196912 | 4.5982e-06 | 0.0018339 | 0.0089012 | -0.86422 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 3356728 | 4.4985e-05 | 0.0018570 | -0.013942 | -0.90937 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3356728 | 4.4985e-05 | 0.0018570 | -0.013942 | -0.90937 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3089324 | 3.2167e-05 | 0.0018711 | -0.0066306 | -0.93683 | - | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 267404 | 0.00016462 | 0.0017152 | -0.063075 | -0.60592 | - | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 3356728 | 3.1378 | 1.8156 | 0.0018608 | -1.189 | - | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 3356728 | 0.025079 | 0.0054442 | -0.61351 | -0.50121 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2030667 | 4.9849e-05 | 0.0030042 | -0.014465 | -1.0208 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2030667 | 4.9849e-05 | 0.0030042 | -0.014465 | -1.0208 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2030667 | 4.9849e-05 | 0.0030042 | -0.014465 | -1.0208 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 51 | 0.00057241 | 0.0020692 | 0.14267 | 0.62521 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 266 | 0.00054181 | 0.0018267 | -0.083722 | 1.0524 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46625 | 0.00029726 | 0.0029089 | -0.060568 | -0.93092 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1610 | 0.00037583 | 0.0022624 | -0.080231 | 0.15092 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4955 | 0.00021087 | 0.0024802 | -0.031844 | -0.28161 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15649 | 0.00016807 | 0.0026581 | -0.054782 | -0.53565 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54705 | 0.00022966 | 0.0028100 | -0.058968 | -0.77291 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 281701 | 0.00033596 | 0.0029821 | -0.1033 | -0.98775 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 709063 | 2.3997e-05 | 0.0030380 | -0.0076958 | -1.0639 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 596790 |-9.1023e-05 | 0.0030271 | 0.029534 | -1.0433 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 319252 |-5.1007e-05 | 0.0029783 | 0.020665 | -0.99379 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 51 | 0.00057241 | 0.0020692 | 0.14267 | 0.62521 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 266 | 0.00054181 | 0.0018267 | -0.083722 | 1.0524 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46625 | 0.00029726 | 0.0029089 | -0.060568 | -0.93092 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1610 | 0.00037583 | 0.0022624 | -0.080231 | 0.15092 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4955 | 0.00021087 | 0.0024802 | -0.031844 | -0.28161 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15649 | 0.00016807 | 0.0026581 | -0.054782 | -0.53565 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54705 | 0.00022966 | 0.0028100 | -0.058968 | -0.77291 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 281701 | 0.00033596 | 0.0029821 | -0.1033 | -0.98775 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 709063 | 2.3997e-05 | 0.0030380 | -0.0076958 | -1.0639 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 596790 |-9.1023e-05 | 0.0030271 | 0.029534 | -1.0433 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 319252 |-5.1007e-05 | 0.0029783 | 0.020665 | -0.99379 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 4242617 | 4.8455e-05 | 0.0030019 | -0.012113 | -1.0176 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 4242617 | 4.8455e-05 | 0.0030019 | -0.012113 | -1.0176 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 4242617 | 4.8455e-05 | 0.0030019 | -0.012113 | -1.0176 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 4242617 | 3.1456 | 1.8251 | -0.0014564 | -1.19 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 4242617 | 0.041291 | 0.010728 | -0.69187 | -0.30461 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2211950 | 4.717e-05 | 0.0029998 | -0.0099383 | -1.0145 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2211950 | 4.717e-05 | 0.0029998 | -0.0099383 | -1.0145 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2211950 | 4.717e-05 | 0.0029998 | -0.0099383 | -1.0145 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28 | 0.0003575 | 0.0015333 | 1.2726 | 1.7089 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 217 | 0.00039777 | 0.0018830 | 0.089213 | 0.485 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 72251 | 0.00023203 | 0.0029105 | -0.062057 | -0.91835 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 8.552e-05 | 0.0022780 | 0.011622 | -0.0048411 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4215 | 0.00010785 | 0.0025123 | 0.0010011 | -0.35688 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 14255 | 0.00010437 | 0.0026567 | -0.0014874 | -0.59139 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 48387 | 0.00024938 | 0.0028013 | -0.078767 | -0.75714 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 263442 | 0.00038736 | 0.0029635 | -0.11813 | -0.96476 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 742524 | 2.5344e-05 | 0.0030317 | 0.00020711 | -1.0531 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 672749 | -8.237e-05 | 0.0030264 | 0.029587 | -1.0442 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 392790 |-6.2634e-05 | 0.0029754 | 0.026526 | -0.98465 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28 | 0.0003575 | 0.0015333 | 1.2726 | 1.7089 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 217 | 0.00039777 | 0.0018830 | 0.089213 | 0.485 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 72251 | 0.00023203 | 0.0029105 | -0.062057 | -0.91835 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1092 | 8.552e-05 | 0.0022780 | 0.011622 | -0.0048411 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4215 | 0.00010785 | 0.0025123 | 0.0010011 | -0.35688 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 14255 | 0.00010437 | 0.0026567 | -0.0014874 | -0.59139 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 48387 | 0.00024938 | 0.0028013 | -0.078767 | -0.75714 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 263442 | 0.00038736 | 0.0029635 | -0.11813 | -0.96476 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 742524 | 2.5344e-05 | 0.0030317 | 0.00020711 | -1.0531 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 672749 | -8.237e-05 | 0.0030264 | 0.029587 | -1.0442 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 392790 |-6.2634e-05 | 0.0029754 | 0.026526 | -0.98465 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 748169 | 3.6444e-05 | 0.0018754 | -0.012414 | -0.94698 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 748169 | 3.6444e-05 | 0.0018754 | -0.012414 | -0.94698 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 698007 | 2.3049e-05 | 0.0018873 | -0.0048806 | -0.9687 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50162 | 0.00018442 | 0.0017326 | -0.072816 | -0.66213 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8375 |-2.7888e-05 | 0.0017823 | 0.014086 | -0.74504 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9695 | 0.00029249 | 0.0018826 | -0.185 | -0.92231 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4903 | 0.00016456 | 0.0018724 | -0.090628 | -0.91318 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2142 | 0.00016756 | 0.0018943 | -0.11324 | -0.9294 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25853 | 0.00022781 | 0.0017882 | -0.068698 | -0.79516 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 67023 |-6.3632e-06 | 0.0018494 | 0.019087 | -0.88762 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 99655 |-6.2765e-05 | 0.0018678 | 0.048345 | -0.92906 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 117799 |-8.1911e-05 | 0.0018840 | 0.051554 | -0.94842 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 134102 |-0.00010782 | 0.0019046 | 0.060525 | -0.99618 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 135628 | 2.266e-05 | 0.0019116 | -0.002649 | -1.0283 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 66226 | 0.0002849 | 0.0018987 | -0.1561 | -0.97913 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26606 | 0.00023319 | 0.0018675 | -0.14356 | -0.92558 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1379 | 0.00013305 | 0.0016401 | -0.10395 | -0.40094 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1613 | 7.0207e-05 | 0.0017048 | -0.071098 | -0.60482 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 717 | 0.0002496 | 0.0016674 | -0.09079 | -0.70037 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 323 | 0.00020398 | 0.0017593 | -0.14773 | -0.59613 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2123 | 0.00021013 | 0.0016239 | -0.083868 | -0.41672 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4275 | 0.00023223 | 0.0016901 | -0.053474 | -0.62308 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6317 | 0.00024989 | 0.0017482 | -0.074835 | -0.72702 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8241 | 0.00021968 | 0.0017534 | -0.077312 | -0.66366 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9302 | 0.00015835 | 0.0017674 | -0.07035 | -0.7113 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7729 | 0.00010942 | 0.0017470 | -0.047962 | -0.69746 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5159 | 0.00016951 | 0.0017125 | -0.10106 | -0.66152 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2984 | 0.00019616 | 0.0017264 | -0.074769 | -0.65426 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9754 | 3.5852e-07 | 0.0017593 | -0.0088786 | -0.69552 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11308 | 0.00025629 | 0.0018567 | -0.16152 | -0.88271 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5620 | 0.00017611 | 0.0018461 | -0.094245 | -0.88199 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2465 | 0.00017247 | 0.0018767 | -0.11812 | -0.88994 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 27976 | 0.00022645 | 0.0017761 | -0.069274 | -0.76978 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 71298 | 1.1309e-05 | 0.0018391 | 0.010575 | -0.87071 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 105972 |-3.8325e-05 | 0.0018606 | 0.035981 | -0.91728 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 126040 |-5.3319e-05 | 0.0018741 | 0.036094 | -0.92813 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 143404 |-8.3632e-05 | 0.0018941 | 0.046051 | -0.97667 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 143357 | 2.7908e-05 | 0.0019022 | -0.0060633 | -1.0112 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 71385 | 0.00027615 | 0.0018854 | -0.15064 | -0.95883 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29590 | 0.00022925 | 0.0018530 | -0.13691 | -0.90017 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 754339 | 3.609e-05 | 0.0018647 | -0.0065955 | -0.92615 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 754339 | 3.609e-05 | 0.0018647 | -0.0065955 | -0.92615 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 703750 | 2.0557e-05 | 0.0018766 | 0.002708 | -0.94931 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 50589 | 0.00020761 | 0.0017186 | -0.083789 | -0.61145 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2486 | 0.00024961 | 0.0018289 | -0.089039 | -0.88468 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52330 | 5.7579e-05 | 0.0018233 | -0.016095 | -0.84063 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16393 | 0.00020403 | 0.0017674 | -0.086414 | -0.73044 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7266 |-6.9387e-05 | 0.0016975 | 0.011102 | -0.59069 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5917 | 0.00018759 | 0.0018875 | -0.050667 | -1.0052 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17628 | 0.00027543 | 0.0018526 | -0.12898 | -0.9153 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37020 | 0.00012393 | 0.0018874 | -0.057449 | -0.96689 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 87911 | 0.00022687 | 0.0019081 | -0.11625 | -1.0114 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 148562 |-4.8472e-05 | 0.0018993 | 0.037664 | -0.9991 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 129550 |-0.00010303 | 0.0018938 | 0.073102 | -0.96652 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 112010 | -3.884e-05 | 0.0018646 | 0.038124 | -0.91462 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86677 |-4.9282e-05 | 0.0018417 | 0.040242 | -0.87791 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 515 |-1.6352e-05 | 0.0017141 | 0.12671 | -0.69043 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3860 | 0.00024388 | 0.0016808 | -0.085884 | -0.54937 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2251 | 0.00012888 | 0.0016393 | -0.056063 | -0.32746 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1193 | 0.000175 | 0.0015082 | -0.05034 | -0.23126 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 924 | 4.1449e-05 | 0.0017819 | 0.038591 | -0.61616 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2011 | 0.00013576 | 0.0017601 | -0.052215 | -0.69576 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3778 | 0.00023213 | 0.0017213 | -0.11415 | -0.60134 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5861 | 0.00014063 | 0.0017507 | -0.093992 | -0.6839 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7972 | 0.00014691 | 0.0017240 | -0.068657 | -0.63025 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8690 | 0.00021652 | 0.0017243 | -0.083625 | -0.61855 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7699 | 0.00027116 | 0.0017375 | -0.087456 | -0.65535 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5835 | 0.00029506 | 0.0017114 | -0.12302 | -0.61978 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3001 | 0.00020272 | 0.0018121 | -0.048875 | -0.86546 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 56190 | 7.2562e-05 | 0.0018130 | -0.023955 | -0.8205 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18644 | 0.00019373 | 0.0017506 | -0.080887 | -0.68321 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8459 |-3.1953e-05 | 0.0016722 | -0.0078824 | -0.54244 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6841 | 0.00016689 | 0.0018736 | -0.03666 | -0.9592 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19639 | 0.00026093 | 0.0018437 | -0.11994 | -0.89617 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 40798 | 0.00013557 | 0.0018706 | -0.065078 | -0.93325 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 93772 | 0.0002213 | 0.0018984 | -0.11386 | -0.99334 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 156534 |-3.6765e-05 | 0.0018898 | 0.029768 | -0.98169 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 138240 |-7.4822e-05 | 0.0018816 | 0.055493 | -0.94501 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 119709 |-1.0118e-05 | 0.0018554 | 0.02317 | -0.89646 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 92512 |-2.0999e-05 | 0.0018338 | 0.023773 | -0.86389 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1502508 | 3.6266e-05 | 0.0018701 | -0.0095101 | -0.93655 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1502508 | 3.6266e-05 | 0.0018701 | -0.0095101 | -0.93655 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1401757 | 2.1796e-05 | 0.0018819 | -0.0010838 | -0.959 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 100751 | 0.00019609 | 0.0017256 | -0.07843 | -0.63695 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1502508 | 3.1392 | 1.8181 | 0.0040941 | -1.1881 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1502508 | 0.025052 | 0.0054421 | -0.60314 | -0.50367 | RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4748 | 35.699 | 22.935 | 0.12506 | -1.1312 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 37926 | 65.798 | 9.7707 | -0.73578 | -0.41182 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 37926 | 52.164 | 18.890 | -0.32283 | -1.0745 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 37926 | 64.956 | 9.7270 | -0.69591 | -0.47395 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 37926 | 64.314 | 9.7023 | -0.65373 | -0.51019 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 17695 | 41.9 | 23.632 | -0.174 | -1.1724 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2838 | 22.06 | 14.072 | 0.18963 | -1.0698 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 27004 | 54.556 | 2.5442 | 0.93425 | 1.9065 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 26982 | 38.152 | 9.4998 | -0.28964 | -1.0085 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 27004 | 53.803 | 2.4054 | 0.90677 | 2.2459 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 27004 | 53.242 | 2.3571 | 0.81128 | 2.3067 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 13656 | 25.599 | 14.614 | -0.034105 | -1.123 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1935 | 33.712 | 22.588 | 0.20554 | -1.079 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 19714 | 62.232 | 10.447 | -0.33093 | -0.912 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19714 | 51.505 | 18.931 | -0.28634 | -1.1111 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19714 | 61.396 | 10.192 | -0.31514 | -0.9126 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19714 | 60.782 | 10.096 | -0.30724 | -0.8998 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 8608 | 39.621 | 23.461 | -0.074666 | -1.1758 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1237 | 19.758 | 13.502 | 0.30919 | -1.0259 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 14285 | 54.491 | 2.2967 | 0.81204 | 1.7934 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14278 | 37.332 | 9.3768 | -0.23494 | -1.067 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14285 | 53.704 | 2.1526 | 0.75486 | 2.1046 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14285 | 53.122 | 2.1027 | 0.62422 | 2.1586 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 6728 | 24.537 | 14.215 | 0.007423 | -1.098 | RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4991 | 246.32 | 167.10 | 0.18787 | -1.1113 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 37926 | 601.89 | 18.476 | -7.6868 | 99.366 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 37926 | 393.96 | 140.18 | -0.387 | -1.0274 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 37926 | 592.29 | 18.649 | -7.1042 | 88.213 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 37926 | 585.22 | 20.175 | -5.424 | 59.953 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 18264 | 299.61 | 174.26 | -0.15127 | -1.181 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 3029 | 132.18 | 91.163 | 0.22829 | -1.0975 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 27145 | 343.59 | 16.839 | 1.1494 | 3.2174 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 27145 | 240.99 | 59.263 | -0.28095 | -1.0052 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 27145 | 338.9 | 15.958 | 1.1305 | 3.5344 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 27145 | 335.36 | 15.645 | 1.0539 | 3.5744 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 14307 | 155.94 | 94.754 | -0.012067 | -1.1598 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 2035 | 228.66 | 160.61 | 0.26182 | -1.0523 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 19714 | 601.08 | 19.253 | -9.0239 | 116.97 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19714 | 382.51 | 138.85 | -0.31889 | -1.0755 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19714 | 591 | 19.351 | -8.3332 | 103.98 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19714 | 583.59 | 20.728 | -6.4484 | 72.754 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 8924 | 278.71 | 171.34 | -0.034438 | -1.1833 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1319 | 118.64 | 86.719 | 0.35317 | -1.0313 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 14306 | 343.05 | 14.852 | 0.94765 | 2.6756 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14306 | 235.99 | 58.447 | -0.23157 | -1.0656 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14306 | 338.15 | 13.938 | 0.89151 | 2.9635 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14306 | 334.44 | 13.645 | 0.79339 | 3.0069 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 7066 | 149.01 | 92.249 | 0.029007 | -1.1402 | RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 9243 | 1084.2 | 25.047 | 0.82785 | 0.82173 | - | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 15813 | 1899.3 | 97.000 | 0.7416 | 2.4705 | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 4275 | 1081.9 | 23.626 | 0.84191 | 1.0122 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 7717 | 1897.9 | 84.068 | 0.58518 | 2.4863 | RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4748 | 25.01 | 16.372 | 0.21791 | -1.0086 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 37926 | 59.149 | 4.3640 | -1.0017 | 3.125 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 37926 | 38.44 | 14.332 | -0.30499 | -0.99066 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 37926 | 58.197 | 4.3185 | -0.95323 | 2.9085 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 37926 | 57.491 | 4.3472 | -0.8696 | 2.5626 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 17695 | 29.958 | 16.998 | -0.11172 | -1.1012 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2838 | 14.852 | 9.6061 | 0.24672 | -0.98293 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 27004 | 35.892 | 4.7747 | -1.3211 | 3.8754 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 26982 | 25.316 | 7.0202 | -0.22865 | -0.71708 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 27004 | 35.4 | 4.6920 | -1.3749 | 4.0557 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 27004 | 35.034 | 4.6482 | -1.399 | 4.1311 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 13656 | 17.183 | 9.9226 | 0.017359 | -1.0586 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1935 | 23.134 | 15.759 | 0.29148 | -0.93538 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 19714 | 59.064 | 4.5862 | -1.0918 | 3.2226 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19714 | 37.288 | 14.194 | -0.2284 | -1.0188 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19714 | 58.064 | 4.5344 | -1.0337 | 2.9912 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19714 | 57.325 | 4.5603 | -0.94285 | 2.6474 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 8608 | 27.953 | 16.784 | 0.010193 | -1.0864 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1237 | 13.27 | 9.1375 | 0.3379 | -0.98203 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 14285 | 36.015 | 4.4529 | -1.3251 | 4.0529 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14278 | 24.795 | 6.8480 | -0.18013 | -0.76655 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14285 | 35.495 | 4.3654 | -1.3867 | 4.2543 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14285 | 35.112 | 4.3146 | -1.4183 | 4.3655 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 6728 | 16.438 | 9.6239 | 0.053681 | -1.0301 | RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 299264 | -0.014838 | 0.61261 | 2.3126 | 14.431 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3337488 | -0.0080856 | 0.74714 | 1.7707 | 9.4268 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2858592 | -0.010682 | 0.67162 | 2.0879 | 11.69 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3337488 | -0.0080856 | 0.74714 | 1.7707 | 9.4268 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3337488 | -0.0080856 | 0.74714 | 1.7707 | 9.4268 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1194928 | -0.012814 | 0.64776 | 2.24 | 13.087 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 165584 | 0.0012082 | 7.1320 | 0.8754 | 0.63994 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2386048 | -0.20331 | 7.9076 | 0.265 | 1.3335 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 2104344 | -0.0039317 | 7.1187 | 0.75359 | 0.90399 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2386048 | -0.20331 | 7.9076 | 0.265 | 1.3335 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2386048 | -0.20331 | 7.9076 | 0.265 | 1.3335 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 855936 | -3.57e-05 | 6.7636 | 0.89688 | 1.2353 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 119928 | -0.012251 | 0.65931 | 2.2964 | 12.289 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1734832 | 0.00017489 | 0.80903 | 1.5703 | 9.867 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 1474080 | -0.0036698 | 0.72500 | 1.9955 | 9.7278 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1734832 | 0.00017489 | 0.80903 | 1.5703 | 9.867 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1734832 | 0.00017489 | 0.80903 | 1.5703 | 9.867 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 570784 | -0.0078517 | 0.70318 | 2.1523 | 10.8 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 68608 |-0.00052472 | 7.1206 | 0.93307 | 0.52974 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1258544 | -0.18217 | 7.8325 | 0.29333 | 1.0781 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1101664 | -0.0047984 | 7.0124 | 0.76092 | 0.60608 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1258544 | -0.18217 | 7.8325 | 0.29333 | 1.0781 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1258544 | -0.18217 | 7.8325 | 0.29333 | 1.0781 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 414584 | -0.0091252 | 6.7841 | 0.8869 | 1.3042 | RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 11066974 | 0.09263 | 0.072785 | 1.0883 | 0.90207 | - | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6387804 | 0.048126 | 0.031361 | 1.5804 | 4.2056 | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 7553874 | 0.1172 | 0.099579 | 1.2753 | 1.5001 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 3784902 | 0.051309 | 0.035503 | 1.4687 | 3.3017 | RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 8407677 | 1.3163 | 0.97655 | 6.9623 | 91.44 | - | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 5684868 | 1.1237 | 0.42927 | 5.2865 | 60.039 | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 5454204 | 1.385 | 1.3193 | 10.3 | 199.51 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 3342309 | 1.1324 | 0.45279 | 5.1814 | 48.718 | RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 5456446 | 6.0924 | 240.96 | -0.015407 | -0.019329 | - | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 5456446 | -1360 | 66.804 | -0.77828 | 0.15854 | - | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 3076 | 936.13 | 300.08 | -1.1538 | 1.4418 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3076 | 3599.4 | 1676.1 | 0.076755 | 0.9083 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | - | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | - | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 11066974 | 5.4257 | 239.81 | 0.0055797 | 0.0082401 | - | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 11066974 | -0.10481 | 260.40 | -0.011427 | -0.85953 | - | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5610528 | 4.7871 | 239.43 | 0.026241 | 0.04065 | - | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5610528 | 1358.6 | 67.479 | 0.7715 | 0.12604 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3266079 | 3905.2 | 84.814 | -0.14757 | -0.9437 | - | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3266079 | 12.29 | 272.96 | 0.015043 | 0.069982 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3121725 | -3902.7 | 83.581 | 0.16197 | -0.89083 | - | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3121725 | 14.989 | 268.79 | 0.0048707 | 0.13055 | - | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 3076 | 789.66 | 216.56 | -1.8307 | 3.3874 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 3076 | 2077.4 | 869.31 | -0.33314 | -0.26669 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1567950 | 2.653 | 1.8857 | 1.5927 | 3.2994 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 861046 | 2.5875 | 1.9066 | 1.9242 | 5.6659 | - | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 2428996 | 2.6298 | 1.8934 | 1.7115 | 4.1484 | - | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6387804 | 8.629 | 463.41 | -0.029928 | -1.5239 | - | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6387804 | 13.573 | 270.63 | 0.010151 | 0.10078 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 3694786 | -6.3116 | 241.06 | -0.02764 | -0.0056357 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 3694786 | -1358.9 | 65.559 | -0.79792 | 0.25708 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 4963 | 359.42 | 487.08 | 1.035 | -0.30411 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3439 | 2213.3 | 2833.9 | 2.1 | 8.2595 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 7553874 | -7.0185 | 239.76 | -0.010029 | 0.017329 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 7553874 | 0.93082 | 255.99 | -0.023116 | -0.85543 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 3859088 | -7.5671 | 239.29 | 0.0061815 | 0.044222 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 3859088 | 1356 | 65.993 | 0.78835 | 0.23847 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1867792 | 3906.6 | 84.057 | -0.15555 | -0.91566 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1867792 | 11.602 | 263.93 | 0.0095413 | 0.22711 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1917110 | -3905.2 | 82.964 | 0.19214 | -0.86555 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1917110 | 14.034 | 266.01 | 0.010153 | 0.20255 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 4963 | 288.65 | 379.17 | 0.8383 | -0.95515 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 2821 | 1352.2 | 1294.1 | 0.84143 | -0.23701 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 935376 | 2.6945 | 2.0489 | 1.7581 | 4.0413 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 497196 | 2.5433 | 2.0215 | 2.1188 | 6.5646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 1432572 | 2.642 | 2.0407 | 1.8779 | 4.8567 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 3784902 | -7.9484 | 466.22 | 0.027524 | -1.5389 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 3784902 | 12.572 | 264.70 | 0.0086346 | 0.21105 | RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 17314695 | 0.052309 | 0.00051770 | -0.40634 | -1.0138 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 17314695 | 0.052519 | 0.0066818 | -0.043204 | -1.0094 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 17314695 | 7.6896e-05 | 0.0029863 | -0.024115 | -1.0013 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 4494753 | 8.7404e-05 | 0.0029855 | -0.026449 | -0.99843 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 4392488 | 7.107e-05 | 0.0029859 | -0.020075 | -1.0012 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 4318770 | 7.2606e-05 | 0.0029917 | -0.027356 | -1.0097 | - | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 4108684 | 7.6199e-05 | 0.0029818 | -0.022416 | -0.99568 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 5328135 | 0.029418 | 0.00023201 | -0.30356 | -1.0501 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 5328135 | 0.0281 | 0.0040819 | -0.22121 | -0.98655 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 5328135 | 5.0496e-05 | 0.0018587 | -0.01858 | -0.91124 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1343376 | 5.1605e-05 | 0.0018555 | -0.020088 | -0.90513 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1353093 | 4.9555e-05 | 0.0018569 | -0.019706 | -0.90571 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1309829 | 5.304e-05 | 0.0018639 | -0.018471 | -0.92352 | - | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1321837 | 4.7819e-05 | 0.0018584 | -0.016038 | -0.91086 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 10892269 | 0.052529 | 0.00051414 | -0.33962 | -1.0764 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 10892269 | 0.052566 | 0.0067228 | -0.053785 | -1.0329 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 10892269 | 7.4692e-05 | 0.0030148 | -0.024652 | -1.0344 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 2880050 | 8.2354e-05 | 0.0030151 | -0.026086 | -1.034 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 2761576 | 6.9722e-05 | 0.0030093 | -0.020762 | -1.0301 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 2675221 | 7.6912e-05 | 0.0030232 | -0.029294 | -1.0445 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 2575422 | 6.913e-05 | 0.0030117 | -0.022343 | -1.0287 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 3188736 | 0.029445 | 0.00022807 | -0.20436 | -1.1111 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 3188736 | 0.02808 | 0.0041031 | -0.21197 | -1.006 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3188736 | 5.2005e-05 | 0.0018705 | -0.022462 | -0.93511 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 801148 | 5.3033e-05 | 0.0018672 | -0.023625 | -0.93162 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 815666 | 5.2792e-05 | 0.0018668 | -0.023755 | -0.92624 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 767852 | 5.1538e-05 | 0.0018781 | -0.021698 | -0.94723 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 804070 | 5.0627e-05 | 0.0018703 | -0.020727 | -0.93588 | RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 37926 | 974.28 | 26.956 | 13.631 | 204.92 | - | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 37926 | 2053.5 | 15.308 | 1.3333 | 2.9295 | - | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 37926 | 1084.1 | 33.727 | -7.4014 | 94.535 | - | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 27145 | 9495 | 0.0000 | 0 | 0 | - | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 27145 | 11375 | 88.065 | 0.98536 | 2.5369 | - | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 27145 | 1882 | 92.097 | 1.1557 | 3.2361 | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 19714 | 974.45 | 29.742 | 13.577 | 198.04 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 19714 | 2052.6 | 14.078 | 1.3746 | 3.2379 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 19714 | 1082.6 | 35.178 | -8.68 | 111.25 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 14306 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 14306 | 11373 | 78.058 | 0.8306 | 2.142 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 14306 | 1878.8 | 81.221 | 0.95785 | 2.7498 | RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 3076 | 16.587 | 8.3703 | 0.073993 | -0.28231 | - | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 3076 | 19.994 | 9.6538 | -0.033179 | -0.26842 | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 4963 | 5.5259 | 9.2183 | 1.8175 | 2.6086 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 4963 | 6.8727 | 11.324 | 1.7893 | 2.5334 | RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4484 | 58331 | 15614. | 0.79186 | -0.22125 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 37662 | 21088 | 12977. | 2.3597 | 6.9848 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 37662 | 24644 | 14380. | 1.9704 | 4.677 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 37662 | 21195 | 13036. | 2.3435 | 6.8794 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 37662 | 21277 | 13080. | 2.3313 | 6.8006 | - | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 17431 | 36964 | 15902. | 1.4567 | 2.0331 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2111 | 81929 | 10085. | -0.027626 | -1.0869 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 26277 | 35220 | 15464. | 1.6467 | 2.6638 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 26255 | 38582 | 16531. | 1.3669 | 1.571 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 26277 | 35328 | 15510. | 1.6358 | 2.6162 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 26277 | 35410 | 15545. | 1.6276 | 2.5806 | - | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 12929 | 54504 | 16381. | 0.84775 | -0.07381 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1864 | 56996 | 14923. | 0.86468 |-0.00018204 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 19643 | 19914 | 11618. | 2.512 | 8.3538 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19643 | 23195 | 12996. | 2.1118 | 5.7183 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19643 | 20010 | 11674. | 2.4955 | 8.2348 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19643 | 20084 | 11716. | 2.4831 | 8.1458 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8537 | 35213 | 14787. | 1.5706 | 2.5972 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 988 | 81372 | 10224. | 0.0076096 | -1.1085 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 14036 | 34183 | 14699. | 1.7403 | 3.1594 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 14029 | 37430 | 15830. | 1.447 | 1.9323 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 14036 | 34285 | 14747. | 1.729 | 3.1065 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 14036 | 34363 | 14783. | 1.7204 | 3.0669 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6479 | 53579 | 15929. | 0.90589 | 0.10848 | RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4727 | 58015 | 15658. | 0.79828 | -0.20128 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 37662 | 21088 | 12977. | 2.3597 | 6.9848 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 37662 | 24565 | 14360. | 1.9761 | 4.7083 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 37662 | 21193 | 13035. | 2.3437 | 6.881 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 37662 | 21274 | 13079. | 2.3317 | 6.8033 | - | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 18000 | 36772 | 15893. | 1.4621 | 2.0594 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2302 | 81666 | 10205. | -0.025455 | -1.079 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 26418 | 35171 | 15448. | 1.6513 | 2.6829 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 26418 | 38479 | 16511. | 1.3737 | 1.5942 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 26418 | 35278 | 15494. | 1.6405 | 2.6354 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 26418 | 35359 | 15529. | 1.6323 | 2.5998 | - | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 13580 | 54296 | 16405. | 0.85238 | -0.061649 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1964 | 56669 | 14965. | 0.87059 | 0.021146 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 19643 | 19914 | 11618. | 2.512 | 8.3538 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19643 | 23120 | 12976. | 2.1176 | 5.7542 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19643 | 20008 | 11673. | 2.4957 | 8.2366 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19643 | 20081 | 11715. | 2.4835 | 8.1488 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8853 | 35016 | 14773. | 1.5766 | 2.6292 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1070 | 81091 | 10349. | 0.013624 | -1.1068 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 14057 | 34169 | 14692. | 1.7417 | 3.166 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 14057 | 37366 | 15814. | 1.4517 | 1.9499 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 14057 | 34271 | 14740. | 1.7305 | 3.1135 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 14057 | 34348 | 14776. | 1.722 | 3.0742 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6817 | 53382 | 15947. | 0.91037 | 0.12299 | RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4484 | 58378 | 15639. | 0.789 | -0.22543 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 37662 | 21084 | 12970. | 2.3594 | 6.9842 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 37662 | 24637 | 14368. | 1.971 | 4.6819 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 37662 | 21191 | 13029. | 2.3432 | 6.8788 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 37662 | 21273 | 13073. | 2.331 | 6.8 | - | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 17431 | 36950 | 15893. | 1.4577 | 2.0357 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 2111 | 81909 | 10063. | -0.027014 | -1.0845 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 26277 | 35348 | 15516. | 1.6318 | 2.5984 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 26255 | 38635 | 16544. | 1.3623 | 1.5512 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 26277 | 35456 | 15562. | 1.621 | 2.5518 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 26277 | 35539 | 15596. | 1.6128 | 2.5169 | - | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 12929 | 54449 | 16346. | 0.8508 | -0.062571 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1864 | 57048 | 14978. | 0.86188 | -0.015477 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 19643 | 19918 | 11623. | 2.5102 | 8.3275 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19643 | 23197 | 13000. | 2.1102 | 5.6962 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19643 | 20014 | 11679. | 2.4937 | 8.2087 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19643 | 20088 | 11721. | 2.4812 | 8.1198 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8537 | 35234 | 14789. | 1.5647 | 2.5666 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 988 | 81392 | 10214. | 0.0037149 | -1.1067 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 14036 | 34251 | 14728. | 1.7341 | 3.1337 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 14029 | 37462 | 15836. | 1.4473 | 1.9347 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 14036 | 34354 | 14775. | 1.7228 | 3.0813 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 14036 | 34432 | 14811. | 1.7143 | 3.0421 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6479 | 53536 | 15917. | 0.9117 | 0.12382 | RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 299264 |-1.4397e+12 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3337488 |-5.9478e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2858592 |-2.3016e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3337488 |-5.9478e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3337488 |-5.9478e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1194928 |-1.0761e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 174928 | 1.1501 | 0.97240 | 0.45205 | -0.27407 | - | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 173125 | 0.049701 | 0.0066109 | -2.6663 | 7.2413 | - | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 165584 | 2.8856e+15 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2386048 |-7.4199e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 2104344 | 4.7661e+13 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2386048 |-7.4199e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2386048 |-7.4199e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 855936 | 4.4132e+14 | 0.0000 | 0 | 0 | - | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 125118 | 1.2621 | 1.0595 | 0.47428 | -0.37432 | - | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 121721 | 0.028059 | 0.0033172 | -2.4107 | 5.6617 | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 119928 | 1.2867e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1734832 |-2.2547e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 1474080 | 3.3304e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1734832 |-2.2547e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1734832 |-2.2547e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 570784 | 4.1718e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 89815 | 1.1175 | 0.93868 | 0.37466 | -0.47674 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 89113 | 0.049892 | 0.0068125 | -2.6317 | 7.0667 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 68608 |-1.3504e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1258544 | 9.5326e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1101664 | -3.203e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1258544 | 9.5326e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1258544 | 9.5326e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 414584 | 4.1104e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 65196 | 1.2282 | 1.0275 | 0.42663 | -0.48887 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 63691 | 0.028072 | 0.0033367 | -2.3765 | 5.4254 | RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | - | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7382400 | 27.43 | 262.62 | -0.0067223 | -0.83476 | - | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | - | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 7690000 | 27.26 | 263.84 | -0.011767 | -0.92491 | - | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 40.536 | 463.41 | -0.030265 | -1.5254 | - | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7690000 | 44.973 | 224.22 | -0.0024566 | 0.97766 | - | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 7690000 | 47.325 | 466.19 | -0.049258 | -1.519 | - | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 7690000 | 42.354 | 320.91 | 0.01043 | -0.75108 | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 11911200 | 28.426 | 258.58 | -0.018554 | -0.82646 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12407500 | 28.323 | 259.99 | -0.024489 | -0.92194 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 24.385 | 466.40 | 0.025812 | -1.541 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12407500 | 42.952 | 219.33 | 0.021621 | 1.0913 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12407500 | 24.796 | 469.04 | 0.028955 | -1.5355 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12407500 | 41.956 | 315.60 | 0.016524 | -0.69297 | RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 61501 | 1.5611 | 0.44048 | 0.4865 | -0.12573 | - | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 61501 | 5460 | 0.0000 | 0 | 0 | - | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 58505 | 0.03789 | 0.065086 | 2.834 | 8.6438 | - | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 60774 | 25214 | 15675. | 1.7817 | 3.6012 | - | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 61289 | 1076.1 | 822.64 | 2.5635 | 9.9649 | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 34109 | 1.5153 | 0.44396 | 0.54765 | -0.031091 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 34109 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 22073 | 0.18057 | 0.10777 | 0.3164 | -1.0341 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 33860 | 24507 | 14913. | 1.8276 | 3.9726 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 33799 | 928.53 | 661.05 | 2.4952 | 10.256 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref new file mode 100644 index 0000000000000000000000000000000000000000..48994bbc4bb703dac6da7bbf0ee732e5fe5ffa39 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref @@ -0,0 +1,636 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_6d2ee9e9 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 3076 | 74002 | 24.058 | + | "nTracksSelected" | 3076 | 74002 | 24.058 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | + | "Nb events removed" | 1924 | +FTRawBankDecoder INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No end fragment found. Ignoring the cluster." | 623 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 4225159 | 845.03 | 0.17547 | 845.00 | 846.00 | + | "event size statistics (KBytes)" | 5049 | 367001 | 72.688 | 18.004 | 32.000 | 227.00 | +PrForwardTrackingVelo_a1aa9f5e INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 2993 | 348616 | 116.48 | + | "Created long tracks" | 2993 | 5130 | 1.7140 | + | "Empty input tracks" | 83 | + | "Input tracks" | 2993 | 361932 | 120.93 | + | "Number of candidate bins per track" | 348616 | 410529 | 1.1776 | 2.0154 | 0.0000 | 33.000 | + | "Number of complete candidates/track 1st Loop" | 158435 | 4161 | 0.026263 | 0.16129 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 155799 | 1130 | 0.0072529 | 0.084930 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 158435 | 44077 | 0.27820 | 0.58298 | + | "Number of x candidates per track 2nd Loop" | 155799 | 172551 | 1.1075 | 1.4694 | + | "Percentage second loop execution" | 158435 | 155799 | 0.98336 | + | "Removed duplicates" | 2993 | 144 | 0.048112 | +PrForwardTrackingVelo_a1aa9f5e.P... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 3003 | 11336 | 3.7749 | + | "#tracks with hits added" | 3003 | +PrHybridSeeding_fdab620b INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 2872156 | 1580187 | 0.55017 | 0.55373 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 1495610 | 816591 | 0.54599 | 0.55410 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 1368373 | 733223 | 0.53584 | 0.56362 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 9228 | 202934 | 21.991 | 19.278 | 0.0000 | 203.00 | + | "Created XZ tracks (part 1)" | 9228 | 188605 | 20.438 | 17.726 | 0.0000 | 200.00 | + | "Created XZ tracks in case 0" | 6152 | 182686 | 29.695 | 21.945 | 0.0000 | 203.00 | + | "Created XZ tracks in case 1" | 6152 | 126861 | 20.621 | 16.636 | 0.0000 | 192.00 | + | "Created XZ tracks in case 2" | 6152 | 81992 | 13.328 | 11.738 | 0.0000 | 139.00 | + | "Created full hit combinations in case 0" | 289702 | 289702 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 145138 | 145138 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 107014 | 107014 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 6152 | 139901 | 22.741 | 11.621 | 0.0000 | 77.000 | + | "Created seed tracks (part 0)" | 3076 | 92057 | 29.928 | 15.576 | 0.0000 | 92.000 | + | "Created seed tracks (part 1)" | 3076 | 89117 | 28.972 | 15.026 | 0.0000 | 97.000 | + | "Created seed tracks in case 0" | 6152 | 90222 | 14.665 | 7.6995 | 0.0000 | 46.000 | + | "Created seed tracks in case 1" | 6152 | 143977 | 23.403 | 12.027 | 0.0000 | 73.000 | + | "Created seed tracks in case 2" | 6152 | 173344 | 28.177 | 14.612 | 0.0000 | 93.000 | + | "Created seed tracks in recovery step" | 3076 | 7830 | 2.5455 | 2.4028 | 0.0000 | 18.000 | + | "Created two-hit combinations in case 0" | 1119361 |1.423784e+07 | 12.720 | 9.0999 | 0.0000 | 127.00 | + | "Created two-hit combinations in case 1" | 1119719 | 8130891 | 7.2615 | 5.2280 | 0.0000 | 102.00 | + | "Created two-hit combinations in case 2" | 1034192 | 8076368 | 7.8094 | 5.7479 | 0.0000 | 108.00 | +PrKalmanFilterForward_91de0be5 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 783 | + | "chi2 cut" | 1752 | + | "nIterations" | 5130 | 12552 | 2.4468 | + | "nOutlierIterations" | 4347 | 6699 | 1.5411 | + | "nTracksInput" | 3076 | 5130 | 1.6678 | + | "nTracksOutput" | 3076 | 2595 | 0.84363 | +PrKalmanFilterMatch_2e7949e2 INFO Number of counters : 7 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Add states failed" | 1 | 0 | 0.0000 | + | "Pre outlier chi2 cut" | 1550 | + | "chi2 cut" | 13007 | + | "nIterations" | 74002 | 150898 | 2.0391 | + | "nOutlierIterations" | 72452 | 96568 | 1.3329 | + | "nTracksInput" | 3076 | 74002 | 24.058 | + | "nTracksOutput" | 3076 | 59444 | 19.325 | +PrMatchNN_b93758d0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 2966 | 975470.6 | 328.88 | + | "#MatchingMLP" | 100328 | 86510.04 | 0.86227 | + | "#MatchingTracks" | 2966 | 74002 | 24.950 | +PrMatchNN_b93758d0.PrAddUTHitsTool INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 57773 | 218530 | 3.7826 | + | "#tracks with hits added" | 57773 | +PrResidualSciFiHits_6c2b9f03 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 123 | +PrStoreSciFiHits_1bfccf57 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 1149769 |3.054601e+07 | 26.567 | 1196.1 | -2656.0 | 2656.2 | + | "Average X in T1V" | 1094452 |9.776835e+07 | 89.331 | 1148.1 | -2656.7 | 2656.6 | + | "Average X in T1X1" | 1119361 |5.911609e+07 | 52.812 | 1201.8 | -2646.6 | 2646.7 | + | "Average X in T1X2" | 1176422 |2.495555e+07 | 21.213 | 1163.2 | -2646.6 | 2646.3 | + | "Average X in T2U" | 1089722 |3.630414e+07 | 33.315 | 1189.3 | -2656.2 | 2656.2 | + | "Average X in T2V" | 1105107 |1.98284e+07 | 17.943 | 1184.1 | -2656.6 | 2656.3 | + | "Average X in T2X1" | 1044675 | 719734.6 | 0.68896 | 1189.1 | -2646.4 | 2646.4 | + | "Average X in T2X2" | 1188030 | 7501436 | 6.3142 | 1160.2 | -2646.4 | 2646.1 | + | "Average X in T3U" | 1184547 |-3.738851e+07 | -31.564 | 1385.8 | -3187.9 | 3187.7 | + | "Average X in T3V" | 1257502 |9.632551e+07 | 76.601 | 1369.6 | -3189.0 | 3188.8 | + | "Average X in T3X1" | 1146776 | 872621.5 | 0.76093 | 1405.6 | -3176.8 | 3176.7 | + | "Average X in T3X2" | 1344490 |3.328843e+07 | 24.759 | 1378.5 | -3175.6 | 3176.0 | + | "Hits in T1U" | 12304 | 1149769 | 93.447 | 35.338 | 0.0000 | 231.00 | + | "Hits in T1V" | 12304 | 1094452 | 88.951 | 34.561 | 0.0000 | 268.00 | + | "Hits in T1X1" | 12304 | 1119361 | 90.975 | 35.354 | 0.0000 | 285.00 | + | "Hits in T1X2" | 12304 | 1176422 | 95.613 | 35.776 | 0.0000 | 302.00 | + | "Hits in T2U" | 12304 | 1089722 | 88.566 | 32.590 | 0.0000 | 231.00 | + | "Hits in T2V" | 12304 | 1105107 | 89.817 | 33.301 | 0.0000 | 285.00 | + | "Hits in T2X1" | 12304 | 1044675 | 84.905 | 31.334 | 0.0000 | 216.00 | + | "Hits in T2X2" | 12304 | 1188030 | 96.556 | 34.700 | 0.0000 | 230.00 | + | "Hits in T3U" | 12304 | 1184547 | 96.273 | 34.932 | 0.0000 | 265.00 | + | "Hits in T3V" | 12304 | 1257502 | 102.20 | 36.647 | 1.0000 | 275.00 | + | "Hits in T3X1" | 12304 | 1146776 | 93.204 | 33.335 | 0.0000 | 234.00 | + | "Hits in T3X2" | 12304 | 1344490 | 109.27 | 38.184 | 1.0000 | 258.00 | + | "Total number of hits" | 3076 |1.390085e+07 | 4519.1 | 1480.8 | 167.00 | 7174.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 3076 | 640520 | 208.23 | + | "# RawBank::UTError banks" | 3076 | 23655 | 7.6902 | + |*"Non-unique UT clusters in event" | 3076 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 3076 |1.833979e+07 | 5962.2 | 4744.5 | 0.0000 | 31087. | + | "# Rich1Gas Segments" | 3076 | 36326 | 11.809 | 6.3668 | 0.0000 | 34.000 | + | "# Rich2Gas Photons" | 3076 | 4903335 | 1594.1 | 1264.8 | 0.0000 | 7385.0 | + | "# Rich2Gas Segments" | 3076 | 24335 | 7.9112 | 4.4741 | 0.0000 | 26.000 | + | "# Selected Tracks" | 3076 | 47872 | 15.563 | 7.8974 | 0.0000 | 42.000 | + |*"RICH selection efficiency" | 58160 | 47872 |( 82.31087 +- 0.1582230)% | +TBTCMatch_af037d7b INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 55636 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 55636 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 55636 | +TBTC_Forward_c3634c48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 2524 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 2524 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 2524 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 3076 | 3443076 | 1119.3 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 3076 | 5657517 | 1839.2 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | + | "Nb of Produced Tracks" | 3076 | 669878 | 217.78 | +FTRawBankDecoder INFO 1D histograms in directory "FTRawBankDecoder" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | no_end_fragment | "No end fragment found;iLink" | 623 | 3377.7 | 1214.2 | 0.28867 | -1.9166 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7685938 | 7.6283e-05 | 0.0030078 | -0.025294 | -1.0441 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7685938 | 7.6283e-05 | 0.0030078 | -0.025294 | -1.0441 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 7685938 | 7.6283e-05 | 0.0030078 | -0.025294 | -1.0441 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 247 |-0.00041681 | 0.0023173 | 0.37589 | 0.045457 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1840 | 6.7381e-05 | 0.0022670 | 0.13139 | 0.029377 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 176885 | 0.00058809 | 0.0028663 | -0.27695 | -0.83883 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6323 | 8.9379e-05 | 0.0023890 | -0.05962 | -0.11224 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 16465 | 2.6937e-05 | 0.0024699 | 0.04394 | -0.25245 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46361 | 9.4199e-05 | 0.0026332 | 0.026121 | -0.55643 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 173478 | 7.97e-05 | 0.0028395 | 0.074565 | -0.87238 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1017746 | 0.00031229 | 0.0029891 | -0.061824 | -1.0368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2672585 |-1.2668e-05 | 0.0030430 | 0.026224 | -1.079 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2284650 |-4.5221e-05 | 0.0030246 | 0.0023718 | -1.0584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1289358 | 0.00012386 | 0.0029846 | -0.10313 | -1.017 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 247 |-0.00041681 | 0.0023173 | 0.37589 | 0.045457 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1840 | 6.7381e-05 | 0.0022670 | 0.13139 | 0.029377 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 176885 | 0.00058809 | 0.0028663 | -0.27695 | -0.83883 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6323 | 8.9379e-05 | 0.0023890 | -0.05962 | -0.11224 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 16465 | 2.6937e-05 | 0.0024699 | 0.04394 | -0.25245 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 46361 | 9.4199e-05 | 0.0026332 | 0.026121 | -0.55643 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 173478 | 7.97e-05 | 0.0028395 | 0.074565 | -0.87238 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1017746 | 0.00031229 | 0.0029891 | -0.061824 | -1.0368 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2672585 |-1.2668e-05 | 0.0030430 | 0.026224 | -1.079 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2284650 |-4.5221e-05 | 0.0030246 | 0.0023718 | -1.0584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1289358 | 0.00012386 | 0.0029846 | -0.10313 | -1.017 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 15658672 | 7.8049e-05 | 0.0030000 | -0.025499 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 15658672 | 7.8049e-05 | 0.0030000 | -0.025499 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 15658672 | 7.8049e-05 | 0.0030000 | -0.025499 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 15658672 | 3.144 | 1.8228 | 0.0010563 | -1.187 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 15658672 | 0.041528 | 0.010569 | -0.70628 | -0.26793 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7972734 | 7.9762e-05 | 0.0029924 | -0.025682 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7972734 | 7.9762e-05 | 0.0029924 | -0.025682 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 7972734 | 7.9762e-05 | 0.0029924 | -0.025682 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 120 | 0.00058786 | 0.0029859 | -0.3733 | -1.0732 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 288391 | 0.00018315 | 0.0028978 | -0.0010869 | -0.93351 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 353 |-4.5888e-05 | 0.0025631 | -0.28842 | -0.67603 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1875 | 0.00076631 | 0.0025009 | -0.45218 | -0.22309 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 34583 | 0.00045573 | 0.0026155 | -0.29014 | -0.44265 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 143697 | 0.00040827 | 0.0027657 | -0.21003 | -0.69866 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 875269 | 0.00050606 | 0.0029352 | -0.19676 | -0.91473 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2571984 | 8.7232e-05 | 0.0030203 | -0.039436 | -1.0429 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2526592 |-5.1627e-05 | 0.0030149 | 0.022734 | -1.0405 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1529870 |-0.00011404 | 0.0029731 | 0.077362 | -0.98673 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 120 | 0.00058786 | 0.0029859 | -0.3733 | -1.0732 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 288391 | 0.00018315 | 0.0028978 | -0.0010869 | -0.93351 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 353 |-4.5888e-05 | 0.0025631 | -0.28842 | -0.67603 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1875 | 0.00076631 | 0.0025009 | -0.45218 | -0.22309 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 34583 | 0.00045573 | 0.0026155 | -0.29014 | -0.44265 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 143697 | 0.00040827 | 0.0027657 | -0.21003 | -0.69866 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 875269 | 0.00050606 | 0.0029352 | -0.19676 | -0.91473 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2571984 | 8.7232e-05 | 0.0030203 | -0.039436 | -1.0429 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2526592 |-5.1627e-05 | 0.0030149 | 0.022734 | -1.0405 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1529870 |-0.00011404 | 0.0029731 | 0.077362 | -0.98673 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2377020 | 5.3146e-05 | 0.0018604 | -0.019914 | -0.9156 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2377020 | 5.3146e-05 | 0.0018604 | -0.019914 | -0.9156 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2222400 | 4.1546e-05 | 0.0018707 | -0.013055 | -0.93603 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 154620 | 0.00018914 | 0.0017291 | -0.082017 | -0.63112 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 20704 |-5.5196e-05 | 0.0017226 | 0.043142 | -0.61558 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 56170 | 0.00039184 | 0.0018357 | -0.2137 | -0.8597 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16819 | 0.00024179 | 0.0018360 | -0.11322 | -0.87201 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6912 | 0.00023452 | 0.0018119 | -0.12995 | -0.83126 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 53041 | 0.00016643 | 0.0017959 | -0.046257 | -0.7903 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 142871 | 7.4192e-05 | 0.0018511 | -0.02043 | -0.90241 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 249121 | 3.9592e-05 | 0.0018499 | -0.0017241 | -0.89156 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 361721 |-3.0385e-05 | 0.0018567 | 0.037272 | -0.89663 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 417979 | -7.747e-05 | 0.0018810 | 0.048209 | -0.94697 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 440176 |-3.1396e-05 | 0.0018936 | 0.022312 | -0.98121 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 306558 | 0.00012995 | 0.0018856 | -0.069253 | -0.97299 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 150328 | 0.00021991 | 0.0018657 | -0.1269 | -0.92527 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3998 | 5.3053e-05 | 0.0016112 | -0.01631 | -0.34152 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6367 | 0.00017609 | 0.0017088 | -0.062342 | -0.56001 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3178 | 0.00015904 | 0.0017597 | -0.04381 | -0.71828 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1852 | 0.00027246 | 0.0016923 | -0.026825 | -0.52169 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6549 | 0.00012607 | 0.0016652 | -0.062216 | -0.47546 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11912 | 0.00021807 | 0.0016999 | -0.091534 | -0.57034 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17126 | 0.00022425 | 0.0017405 | -0.088203 | -0.65062 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22735 | 0.00016393 | 0.0017296 | -0.070966 | -0.64891 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26947 | 0.00020195 | 0.0017406 | -0.088042 | -0.6606 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 25058 | 0.00018506 | 0.0017471 | -0.089478 | -0.65046 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17699 | 0.00021649 | 0.0017435 | -0.10263 | -0.66608 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11199 | 0.00017524 | 0.0017375 | -0.094587 | -0.66989 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24702 |-3.4782e-05 | 0.0017027 | 0.029929 | -0.56997 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 62537 | 0.00036965 | 0.0018242 | -0.19633 | -0.83824 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19997 | 0.00022864 | 0.0018244 | -0.10182 | -0.85039 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8764 | 0.00024287 | 0.0017863 | -0.1122 | -0.76818 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 59590 | 0.00016172 | 0.0017812 | -0.046814 | -0.75751 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 154783 | 8.7103e-05 | 0.0018385 | -0.02849 | -0.87711 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 266247 | 5.3438e-05 | 0.0018425 | -0.009541 | -0.8764 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 384456 |-1.5852e-05 | 0.0018482 | 0.027769 | -0.88176 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 444926 |-5.4357e-05 | 0.0018714 | 0.034322 | -0.92939 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 465234 | -1.69e-05 | 0.0018849 | 0.013185 | -0.96373 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 324257 | 0.00013537 | 0.0018772 | -0.072131 | -0.95613 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 161527 | 0.00021662 | 0.0018566 | -0.12434 | -0.9086 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2351785 | 5.1988e-05 | 0.0018577 | -0.020014 | -0.90791 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2351785 | 5.1988e-05 | 0.0018577 | -0.020014 | -0.90791 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2204570 | 4.1462e-05 | 0.0018686 | -0.01426 | -0.92918 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 147215 | 0.00017853 | 0.0017161 | -0.068608 | -0.60718 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7806 | 0.00025198 | 0.0018218 | -0.13644 | -0.85588 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 115544 | 7.2433e-05 | 0.0018246 | -0.019404 | -0.83964 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 35303 | 0.00017825 | 0.0017688 | -0.067319 | -0.71052 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17864 |-8.9236e-05 | 0.0017040 | 0.037791 | -0.57129 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18018 | 0.00032516 | 0.0018521 | -0.17965 | -0.88657 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 74553 | 0.00036988 | 0.0018231 | -0.18852 | -0.84922 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 173083 | 0.00016614 | 0.0018758 | -0.085771 | -0.94669 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 344846 | 0.00010217 | 0.0018884 | -0.054646 | -0.97867 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 457126 |-5.8744e-05 | 0.0018922 | 0.040324 | -0.9711 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 404078 |-7.2141e-05 | 0.0018748 | 0.04616 | -0.93085 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 342855 | 1.2214e-05 | 0.0018534 | 0.0058495 | -0.89184 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 213494 | 4.8795e-05 | 0.0018491 | -0.010383 | -0.88762 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1697 | 0.00016926 | 0.0016877 | -0.026326 | -0.60879 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10486 | 0.00012009 | 0.0017151 | -0.054227 | -0.58438 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5562 | 0.0001004 | 0.0016455 | -0.085401 | -0.37926 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3572 | 9.5378e-05 | 0.0016145 | -0.053366 | -0.30648 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2619 | 0.00017849 | 0.0016944 | -0.0065489 | -0.59399 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5750 | 0.00017697 | 0.0017021 | 0.0097891 | -0.59572 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9860 | 0.00017631 | 0.0017027 | -0.043367 | -0.59998 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18270 | 0.00020883 | 0.0017407 | -0.087645 | -0.67885 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 25198 | 0.0001718 | 0.0017322 | -0.082699 | -0.65068 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 26173 | 0.00020089 | 0.0017246 | -0.069157 | -0.62241 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21799 | 0.00018985 | 0.0017110 | -0.084241 | -0.58951 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16229 | 0.00019282 | 0.0017226 | -0.074595 | -0.61949 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9503 | 0.00023686 | 0.0017983 | -0.11691 | -0.81699 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 126030 | 7.676e-05 | 0.0018150 | -0.022843 | -0.81885 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 40865 | 0.00016599 | 0.0017502 | -0.067297 | -0.66375 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21436 |-5.4538e-05 | 0.0016890 | 0.017664 | -0.53005 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20637 | 0.0003063 | 0.0018333 | -0.15766 | -0.85827 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 80303 | 0.00035567 | 0.0018151 | -0.17359 | -0.83729 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 182943 | 0.00016675 | 0.0018658 | -0.084054 | -0.92846 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 363116 | 0.00010852 | 0.0018801 | -0.057654 | -0.96292 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 482324 |-4.3453e-05 | 0.0018829 | 0.030317 | -0.95469 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 430251 |-4.9314e-05 | 0.0018642 | 0.03341 | -0.91089 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 364654 | 2.5522e-05 | 0.0018437 | -0.0024846 | -0.87308 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 229723 | 6.0998e-05 | 0.0018391 | -0.017254 | -0.86792 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 4728805 | 5.257e-05 | 0.0018590 | -0.019962 | -0.91178 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 4728805 | 5.257e-05 | 0.0018590 | -0.019962 | -0.91178 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 4426970 | 4.1504e-05 | 0.0018697 | -0.013654 | -0.93262 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 301835 | 0.00018392 | 0.0017227 | -0.075431 | -0.61947 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 4728805 | 3.1366 | 1.8166 | 0.0030796 | -1.1935 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 4728805 | 0.025013 | 0.0054575 | -0.59019 | -0.54657 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4711848 | 6.0282e-05 | 0.0029908 | -0.01787 | -1.0265 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4711848 | 6.0282e-05 | 0.0029908 | -0.01787 | -1.0265 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4711848 | 6.0282e-05 | 0.0029908 | -0.01787 | -1.0265 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 122 |-0.00011141 | 0.0021642 | 0.37798 | -0.076063 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1225 | 0.00026767 | 0.0022679 | 0.057514 | 0.028101 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 105259 | 0.00052465 | 0.0028376 | -0.26834 | -0.80893 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5007 | 0.00013278 | 0.0024223 | -0.05703 | -0.13001 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13456 | 3.7302e-06 | 0.0024637 | 0.051638 | -0.2463 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38222 | 8.677e-05 | 0.0026307 | 0.029421 | -0.55212 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137007 | 6.851e-05 | 0.0028269 | 0.07682 | -0.85823 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 669613 | 0.00020031 | 0.0029834 | -0.016113 | -1.0308 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1604829 |-1.0689e-05 | 0.0030345 | 0.028595 | -1.0695 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1383391 |-4.8918e-05 | 0.0030093 | 0.0023948 | -1.0431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 753717 | 0.00014084 | 0.0029634 | -0.11391 | -0.99189 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 122 |-0.00011141 | 0.0021642 | 0.37798 | -0.076063 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1225 | 0.00026767 | 0.0022679 | 0.057514 | 0.028101 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 105259 | 0.00052465 | 0.0028376 | -0.26834 | -0.80893 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5007 | 0.00013278 | 0.0024223 | -0.05703 | -0.13001 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13456 | 3.7302e-06 | 0.0024637 | 0.051638 | -0.2463 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 38222 | 8.677e-05 | 0.0026307 | 0.029421 | -0.55212 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 137007 | 6.851e-05 | 0.0028269 | 0.07682 | -0.85823 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 669613 | 0.00020031 | 0.0029834 | -0.016113 | -1.0308 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1604829 |-1.0689e-05 | 0.0030345 | 0.028595 | -1.0695 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1383391 |-4.8918e-05 | 0.0030093 | 0.0023948 | -1.0431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 753717 | 0.00014084 | 0.0029634 | -0.11391 | -0.99189 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 9529108 | 6.1263e-05 | 0.0029825 | -0.017984 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 9529108 | 6.1263e-05 | 0.0029825 | -0.017984 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 9529108 | 6.1263e-05 | 0.0029825 | -0.017984 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 9529108 | 3.1472 | 1.8222 | -0.0014688 | -1.1867 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 9529108 | 0.041528 | 0.010580 | -0.70856 | -0.26634 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4817260 | 6.2228e-05 | 0.0029743 | -0.018086 | -0.99261 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4817260 | 6.2228e-05 | 0.0029743 | -0.018086 | -0.99261 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4817260 | 6.2228e-05 | 0.0029743 | -0.018086 | -0.99261 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 87 | 0.00050582 | 0.0030546 | -0.30556 | -1.2171 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 167537 | 0.00011335 | 0.0028470 | 0.036968 | -0.87088 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 |-0.00029684 | 0.0026339 | -0.19549 | -0.81686 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1574 | 0.00076054 | 0.0025137 | -0.45503 | -0.25997 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28134 | 0.00045354 | 0.0026128 | -0.29578 | -0.43998 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 113480 | 0.00037429 | 0.0027720 | -0.20001 | -0.7056 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 585765 | 0.00039018 | 0.0029282 | -0.15561 | -0.91859 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1522763 | 7.7456e-05 | 0.0030108 | -0.034035 | -1.0292 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1511085 |-5.9163e-05 | 0.0030042 | 0.025955 | -1.0252 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 886559 |-0.00011212 | 0.0029495 | 0.082809 | -0.95803 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 87 | 0.00050582 | 0.0030546 | -0.30556 | -1.2171 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 167537 | 0.00011335 | 0.0028470 | 0.036968 | -0.87088 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 276 |-0.00029684 | 0.0026339 | -0.19549 | -0.81686 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1574 | 0.00076054 | 0.0025137 | -0.45503 | -0.25997 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 28134 | 0.00045354 | 0.0026128 | -0.29578 | -0.43998 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 113480 | 0.00037429 | 0.0027720 | -0.20001 | -0.7056 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 585765 | 0.00039018 | 0.0029282 | -0.15561 | -0.91859 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1522763 | 7.7456e-05 | 0.0030108 | -0.034035 | -1.0292 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1511085 |-5.9163e-05 | 0.0030042 | 0.025955 | -1.0252 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 886559 |-0.00011212 | 0.0029495 | 0.082809 | -0.95803 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1090718 | 5.4622e-05 | 0.0018574 | -0.02051 | -0.90965 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1090718 | 5.4622e-05 | 0.0018574 | -0.02051 | -0.90965 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 992050 | 4.1907e-05 | 0.0018725 | -0.01271 | -0.9396 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 98668 | 0.00016114 | 0.0017218 | -0.070807 | -0.61298 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13884 |-7.6851e-05 | 0.0017308 | 0.047932 | -0.63215 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31885 | 0.00023272 | 0.0018399 | -0.12704 | -0.87756 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13325 | 0.00020519 | 0.0018295 | -0.084634 | -0.85812 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5679 | 0.00022228 | 0.0018172 | -0.12809 | -0.84634 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32433 | 0.00014529 | 0.0018044 | -0.045416 | -0.79702 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 81144 | 3.6801e-05 | 0.0018428 |-0.00086496 | -0.88979 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 119399 |-4.1903e-06 | 0.0018576 | 0.016641 | -0.90728 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 150483 |-1.4171e-05 | 0.0018674 | 0.024021 | -0.91435 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 175468 |-6.9197e-05 | 0.0018937 | 0.046764 | -0.97193 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 188430 | 4.6786e-06 | 0.0018938 | 0.0064335 | -0.98927 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 115928 | 0.00019228 | 0.0018955 | -0.10344 | -0.98122 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63992 | 0.00015099 | 0.0018604 | -0.086084 | -0.91471 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2663 | 4.1605e-05 | 0.0016155 | -0.059023 | -0.35403 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4900 | 0.00015606 | 0.0017018 | -0.066345 | -0.53401 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2465 | 0.00014784 | 0.0017345 | -0.019035 | -0.69351 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1355 | 0.00026826 | 0.0017608 | -0.049679 | -0.62299 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4174 | 0.00013905 | 0.0016693 | -0.0718 | -0.4743 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7116 | 0.0002557 | 0.0017032 | -0.10758 | -0.57745 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10216 | 0.00019065 | 0.0017389 | -0.08783 | -0.63367 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13934 | 0.00015584 | 0.0017250 | -0.082805 | -0.64121 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16186 | 0.0001467 | 0.0017319 | -0.068925 | -0.64276 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15475 | 0.00014263 | 0.0017347 | -0.057107 | -0.61206 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12020 | 0.00017748 | 0.0017252 | -0.064403 | -0.6315 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8164 | 0.00012181 | 0.0017220 | -0.064129 | -0.65399 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16547 |-5.3795e-05 | 0.0017096 | 0.026093 | -0.58625 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 36785 | 0.0002219 | 0.0018212 | -0.11789 | -0.83634 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15790 | 0.00019615 | 0.0018150 | -0.074349 | -0.83448 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7034 | 0.00023121 | 0.0018065 | -0.11473 | -0.80439 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 36607 | 0.0001445 | 0.0017878 | -0.048011 | -0.76064 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 88260 | 5.6994e-05 | 0.0018314 | -0.013096 | -0.86655 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129615 | 1.3961e-05 | 0.0018477 | 0.0052527 | -0.8866 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 164417 | 4.1282e-06 | 0.0018533 | 0.010862 | -0.89015 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 191654 |-4.5489e-05 | 0.0018778 | 0.031263 | -0.94337 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 203905 | 1.675e-05 | 0.0018808 |-0.00076882 | -0.96181 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 127948 | 0.00019071 | 0.0018782 | -0.09996 | -0.94915 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 72156 | 0.00014736 | 0.0018438 | -0.083183 | -0.88547 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1064191 | 4.7213e-05 | 0.0018564 | -0.016765 | -0.90294 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1064191 | 4.7213e-05 | 0.0018564 | -0.016765 | -0.90294 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 971078 | 3.515e-05 | 0.0018727 | -0.01011 | -0.9347 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 93113 | 0.00014987 | 0.0017079 | -0.05505 | -0.58369 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6455 | 0.00020845 | 0.0018289 | -0.10209 | -0.8825 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 63108 | 5.5384e-05 | 0.0018245 | -0.012978 | -0.82926 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 19942 | 0.00020154 | 0.0017794 | -0.092142 | -0.69626 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10900 |-7.0189e-05 | 0.0016901 | 0.030016 | -0.54305 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14103 | 0.00026721 | 0.0018559 | -0.14611 | -0.90797 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 38393 | 0.00022313 | 0.0018385 | -0.11663 | -0.87844 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 69194 | 0.00010465 | 0.0018748 | -0.061666 | -0.94179 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 134555 | 0.00016361 | 0.0018957 | -0.084721 | -0.9839 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 198845 |-5.4603e-05 | 0.0018964 | 0.040419 | -0.97874 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 167472 |-5.9247e-05 | 0.0018887 | 0.042604 | -0.96078 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 143072 | 5.586e-07 | 0.0018651 | 0.018082 | -0.90907 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 105039 |-6.2935e-06 | 0.0018520 | 0.012634 | -0.89688 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1346 | 0.00011977 | 0.0017078 | 0.0084611 | -0.60592 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6250 | 6.4266e-05 | 0.0017032 | -0.025827 | -0.5558 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3610 | 7.9474e-05 | 0.0016439 | -0.087318 | -0.34958 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2441 | 5.3267e-05 | 0.0015893 | -0.03749 | -0.20315 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2031 | 0.00021107 | 0.0017197 | -0.017795 | -0.6364 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4489 | 0.00016958 | 0.0017162 | -0.0034925 | -0.62278 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7336 | 0.00015811 | 0.0017031 | -0.037008 | -0.58904 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12144 | 0.00016537 | 0.0017291 | -0.072024 | -0.65071 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15284 | 0.00012352 | 0.0017225 | -0.069113 | -0.63038 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15730 | 0.00013281 | 0.0017201 | -0.044206 | -0.60228 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13044 | 0.00018479 | 0.0016959 | -0.072803 | -0.55278 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9408 | 0.00023073 | 0.0017070 | -0.077445 | -0.59402 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7801 | 0.00019305 | 0.0018087 | -0.083224 | -0.84186 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 69358 | 5.6247e-05 | 0.0018131 | -0.014188 | -0.80534 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 23552 | 0.00017936 | 0.0017562 | -0.086811 | -0.64056 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13341 |-4.4071e-05 | 0.0016701 | 0.013348 | -0.48083 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 16134 | 0.00026026 | 0.0018397 | -0.13181 | -0.87927 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 42882 | 0.00021699 | 0.0018250 | -0.10473 | -0.85313 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 76530 | 0.0001106 | 0.0018565 | -0.061136 | -0.90705 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 146699 | 0.00016377 | 0.0018810 | -0.083931 | -0.95705 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 214129 |-3.9574e-05 | 0.0018830 | 0.029504 | -0.95525 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 183202 |-3.7167e-05 | 0.0018711 | 0.029472 | -0.92714 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 156116 | 2.0813e-05 | 0.0018481 | 0.005271 | -0.87689 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 114447 | 1.7398e-05 | 0.0018394 | 0.00026996 | -0.8719 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 2154909 | 5.096e-05 | 0.0018569 | -0.018657 | -0.90635 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 2154909 | 5.096e-05 | 0.0018569 | -0.018657 | -0.90635 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1963128 | 3.8564e-05 | 0.0018726 | -0.011424 | -0.93718 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 191781 | 0.00015561 | 0.0017150 | -0.063091 | -0.59879 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 2154909 | 3.1288 | 1.8191 | 0.010926 | -1.196 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 2154909 | 0.025079 | 0.0054287 | -0.60636 | -0.51015 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4020 | 33.227 | 22.189 | 0.22983 | -1.0483 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 36326 | 64.259 | 9.8352 | -0.56415 | -0.69119 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36295 | 52.003 | 18.889 | -0.31773 | -1.0732 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36326 | 63.371 | 9.7764 | -0.55707 | -0.70838 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36326 | 62.74 | 9.6896 | -0.53309 | -0.72233 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 16470 | 41.12 | 23.438 | -0.14464 | -1.1742 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1997 | 20.285 | 13.734 | 0.31495 | -0.97754 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 24335 | 54.65 | 2.5895 | 0.9099 | 1.794 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24312 | 37.515 | 9.4220 | -0.2257 | -1.0248 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24335 | 53.863 | 2.4601 | 0.88416 | 2.1069 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24335 | 53.278 | 2.4161 | 0.79619 | 2.16 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 11613 | 24.249 | 14.280 | 0.053717 | -1.0896 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4255 | 224.55 | 158.93 | 0.29659 | -1.007 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 36368 | 596.86 | 21.542 | -7.4506 | 80.972 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36368 | 386.27 | 138.22 | -0.36026 | -1.0402 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36368 | 587.23 | 21.557 | -7.0217 | 74.123 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36368 | 580.04 | 22.761 | -5.7027 | 55.465 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 17046 | 287.71 | 170.09 | -0.11102 | -1.1826 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2145 | 121.12 | 88.568 | 0.36173 | -0.98484 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 24473 | 344.21 | 17.167 | 1.1301 | 3.0944 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24473 | 237.03 | 58.834 | -0.21722 | -1.0157 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24473 | 339.29 | 16.342 | 1.1079 | 3.3651 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24473 | 335.6 | 16.073 | 1.0339 | 3.3832 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 12223 | 147.31 | 92.459 | 0.074559 | -1.1219 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 9020 | 1076.1 | 24.951 | 0.81591 | 0.78428 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 14615 | 1901.8 | 98.585 | 0.73167 | 2.3739 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4020 | 22.843 | 15.494 | 0.31481 | -0.89843 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 36326 | 58.393 | 4.9080 | -2.5195 | 14.703 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36295 | 37.608 | 14.165 | -0.28299 | -0.99854 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36326 | 57.438 | 4.8630 | -2.4763 | 14.425 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36326 | 56.728 | 4.8835 | -2.3546 | 13.519 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 16470 | 28.811 | 16.589 | -0.075696 | -1.101 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1997 | 13.693 | 9.4130 | 0.36519 | -0.89747 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 24335 | 35.89 | 4.8392 | -1.3847 | 3.8944 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24312 | 24.874 | 6.9629 | -0.18367 | -0.73171 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24335 | 35.379 | 4.7606 | -1.4351 | 4.0552 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24335 | 34.994 | 4.7126 | -1.4542 | 4.1089 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 11613 | 16.289 | 9.6916 | 0.10277 | -1.0164 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 254620 | -0.012517 | 0.51835 | 3.2597 | 98.076 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3344848 | -0.0025194 | 0.66113 | 1.9247 | 67.509 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2806412 | -0.0062106 | 0.65909 | 0.6539 | 178.02 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3344848 | -0.0025194 | 0.66113 | 1.9247 | 67.509 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3344848 | -0.0025194 | 0.66113 | 1.9247 | 67.509 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1135148 | -0.0088189 | 0.57903 | 2.698 | 123.69 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 115828 | 0.0032394 | 7.1094 | 0.92518 | 0.75817 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2248876 | -0.21123 | 7.8860 | 0.2649 | 1.3839 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1950428 | -0.0039188 | 7.0691 | 0.77411 | 1.0834 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2248876 | -0.21123 | 7.8860 | 0.2649 | 1.3839 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2248876 | -0.21123 | 7.8860 | 0.2649 | 1.3839 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 735700 | 0.0016503 | 6.6162 | 0.95816 | 1.5417 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 11066974 | 0.095214 | 0.074560 | 1.0607 | 0.79602 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6387804 | 0.048686 | 0.031500 | 1.5851 | 4.2155 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 8407677 | 1.3163 | 0.97655 | 6.9623 | 91.44 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 5684868 | 1.1237 | 0.42927 | 5.2865 | 60.039 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 5456446 | 6.0924 | 240.96 | -0.015407 | -0.019329 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 5456446 | -1360 | 66.804 | -0.77828 | 0.15854 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 3076 | 936.13 | 300.08 | -1.1538 | 1.4418 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3076 | 3599.4 | 1676.1 | 0.076755 | 0.9083 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 11066974 | 5.4257 | 239.81 | 0.0055797 | 0.0082401 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 11066974 | -0.10481 | 260.40 | -0.011427 | -0.85953 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5610528 | 4.7871 | 239.43 | 0.026241 | 0.04065 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5610528 | 1358.6 | 67.479 | 0.7715 | 0.12604 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3266079 | 3905.2 | 84.814 | -0.14757 | -0.9437 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3266079 | 12.29 | 272.96 | 0.015043 | 0.069982 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3121725 | -3902.7 | 83.581 | 0.16197 | -0.89083 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3121725 | 14.989 | 268.79 | 0.0048707 | 0.13055 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 3076 | 789.66 | 216.56 | -1.8307 | 3.3874 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 3076 | 2077.4 | 869.31 | -0.33314 | -0.26669 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1567950 | 2.653 | 1.8857 | 1.5927 | 3.2994 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 861046 | 2.5875 | 1.9066 | 1.9242 | 5.6659 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 2428996 | 2.6298 | 1.8934 | 1.7115 | 4.1484 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6387804 | 8.629 | 463.41 | -0.029928 | -1.5239 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6387804 | 13.573 | 270.63 | 0.010151 | 0.10078 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 15658672 | 0.052291 | 0.00051631 | -0.38579 | -1.0437 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 15658672 | 0.052214 | 0.0065248 | -0.037081 | -0.98814 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 15658672 | 7.8042e-05 | 0.0030001 | -0.025496 | -1.029 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 4066160 | 6.4887e-05 | 0.0029953 | -0.010146 | -1.0204 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 3902287 | 9.5377e-05 | 0.0029925 | -0.037174 | -1.0119 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 3968930 | 9.1935e-05 | 0.0029995 | -0.042137 | -1.0265 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 3721295 | 5.9379e-05 | 0.0030134 | -0.012145 | -1.0574 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 4728805 | 0.029404 | 0.00022991 | -0.25572 | -1.0676 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 4728805 | 0.028097 | 0.0040836 | -0.22022 | -0.98727 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 4728805 | 5.2583e-05 | 0.0018591 | -0.020005 | -0.9116 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1191201 | 5.3128e-05 | 0.0018556 | -0.020617 | -0.90548 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1172780 | 5.2087e-05 | 0.0018571 | -0.022313 | -0.90523 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1186395 | 5.4616e-05 | 0.0018652 | -0.019946 | -0.9247 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1178429 | 5.0485e-05 | 0.0018585 | -0.017186 | -0.91086 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 36368 | 975.33 | 32.907 | 11.215 | 136.6 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 36368 | 2045.7 | 15.305 | 1.2726 | 2.9269 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 36368 | 1075.1 | 38.867 | -7.3842 | 80.168 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 24473 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 24473 | 11378 | 89.762 | 0.96214 | 2.4337 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 24473 | 1885.4 | 93.882 | 1.1378 | 3.1136 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 3076 | 15.563 | 7.8974 | 0.092666 | -0.27254 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 3076 | 18.908 | 9.1709 | -0.01112 | -0.24036 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 3872 | 56459 | 14679. | 0.91839 | 0.17245 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 36178 | 20475 | 12008. | 2.3439 | 7.1764 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36147 | 23836 | 13296. | 1.9679 | 4.9271 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36178 | 20575 | 12062. | 2.3282 | 7.0735 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36178 | 20652 | 12103. | 2.3164 | 6.9965 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16322 | 35655 | 14637. | 1.5169 | 2.494 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1575 | 81323 | 10164. | 0.078634 | -1.0496 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 23913 | 34126 | 14463. | 1.7419 | 3.2512 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 23890 | 37301 | 15550. | 1.4605 | 2.055 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 23913 | 34226 | 14510. | 1.731 | 3.1997 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 23913 | 34303 | 14544. | 1.7228 | 3.1611 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11191 | 53073 | 15736. | 0.94828 | 0.23621 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4107 | 56136 | 14715. | 0.92418 | 0.19448 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 36220 | 20468 | 12003. | 2.3453 | 7.186 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36220 | 23747 | 13273. | 1.9746 | 4.9642 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36220 | 20567 | 12056. | 2.3299 | 7.0843 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36220 | 20643 | 12096. | 2.3182 | 7.0084 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16898 | 35464 | 14629. | 1.5215 | 2.5191 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1723 | 81038 | 10282. | 0.079806 | -1.038 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 24051 | 34080 | 14449. | 1.7463 | 3.2708 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 24051 | 37203 | 15530. | 1.4672 | 2.0797 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 24051 | 34179 | 14495. | 1.7355 | 3.2195 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 24051 | 34255 | 14529. | 1.7273 | 3.181 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11801 | 52864 | 15755. | 0.95294 | 0.24928 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 3872 | 56437 | 14662. | 0.92118 | 0.18666 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 36178 | 20510 | 12036. | 2.3407 | 7.1507 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36147 | 23858 | 13319. | 1.967 | 4.9176 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36178 | 20610 | 12090. | 2.3251 | 7.0482 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36178 | 20687 | 12131. | 2.3134 | 6.9715 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16322 | 35660 | 14657. | 1.5194 | 2.4977 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1575 | 81326 | 10149. | 0.076062 | -1.0482 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 23913 | 34250 | 14520. | 1.7248 | 3.1662 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 23890 | 37353 | 15564. | 1.4545 | 2.0243 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 23913 | 34350 | 14565. | 1.714 | 3.1157 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 23913 | 34427 | 14600. | 1.7059 | 3.0779 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11191 | 53015 | 15698. | 0.94879 | 0.23908 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 254620 |-1.5299e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3344848 |-6.8144e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2806412 |-2.5439e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3344848 |-6.8144e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3344848 |-6.8144e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1135148 |-3.1506e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 166739 | 1.1302 | 0.95007 | 0.39129 | -0.44392 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 164797 | 0.049654 | 0.0066731 | -2.6317 | 6.9748 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 115828 |-5.2172e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2248876 | 7.0381e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1950428 |-4.4373e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2248876 | 7.0381e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2248876 | 7.0381e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 735700 |-7.4968e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 111546 | 1.2256 | 1.0260 | 0.43044 | -0.4689 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 108428 | 0.028035 | 0.0033501 | -2.3755 | 5.426 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7382400 | 27.43 | 262.62 | -0.0067223 | -0.83476 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 7690000 | 27.26 | 263.84 | -0.011767 | -0.92491 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 40.536 | 463.41 | -0.030265 | -1.5254 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7690000 | 44.973 | 224.22 | -0.0024566 | 0.97766 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 7690000 | 47.325 | 466.19 | -0.049258 | -1.519 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 7690000 | 42.354 | 320.91 | 0.01043 | -0.75108 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 58160 | 1.7232 | 0.47021 | 0.22657 | -0.6018 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 58160 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 54805 | 0.055808 | 0.074317 | 2.117 | 4.5744 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 57738 | 24253 | 14659. | 1.8365 | 4.0751 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 57956 | 1049.7 | 787.64 | 2.5553 | 10.147 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.armv8.1_a b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.armv8.1_a new file mode 100644 index 0000000000000000000000000000000000000000..615c9d340ecdcfc31fae799a44b185f8170e1aab --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.armv8.1_a @@ -0,0 +1,636 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_6d2ee9e9 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 3076 | 74000 | 24.057 | + | "nTracksSelected" | 3076 | 74000 | 24.057 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | + | "Nb events removed" | 1924 | +FTRawBankDecoder INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No end fragment found. Ignoring the cluster." | 623 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 4225159 | 845.03 | 0.17547 | 845.00 | 846.00 | + | "event size statistics (KBytes)" | 5049 | 367001 | 72.688 | 18.004 | 32.000 | 227.00 | +PrForwardTrackingVelo_a1aa9f5e INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 2993 | 348618 | 116.48 | + | "Created long tracks" | 2993 | 5130 | 1.7140 | + | "Empty input tracks" | 83 | + | "Input tracks" | 2993 | 361934 | 120.93 | + | "Number of candidate bins per track" | 348618 | 410556 | 1.1777 | 2.0154 | 0.0000 | 33.000 | + | "Number of complete candidates/track 1st Loop" | 158444 | 4161 | 0.026262 | 0.16129 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 155807 | 1130 | 0.0072526 | 0.084928 | 0.0000 | 2.0000 | + | "Number of x candidates per track 1st Loop" | 158444 | 44079 | 0.27820 | 0.58294 | + | "Number of x candidates per track 2nd Loop" | 155807 | 172554 | 1.1075 | 1.4693 | + | "Percentage second loop execution" | 158444 | 155807 | 0.98336 | + | "Removed duplicates" | 2993 | 144 | 0.048112 | +PrForwardTrackingVelo_a1aa9f5e.P... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 3003 | 11336 | 3.7749 | + | "#tracks with hits added" | 3003 | +PrHybridSeeding_fdab620b INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 2872160 | 1580193 | 0.55018 | 0.55373 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 1495631 | 816604 | 0.54599 | 0.55410 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 2" | 1368398 | 733237 | 0.53584 | 0.56362 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 9228 | 202929 | 21.991 | 19.279 | 0.0000 | 203.00 | + | "Created XZ tracks (part 1)" | 9228 | 188609 | 20.439 | 17.727 | 0.0000 | 200.00 | + | "Created XZ tracks in case 0" | 6152 | 182688 | 29.696 | 21.945 | 0.0000 | 203.00 | + | "Created XZ tracks in case 1" | 6152 | 126861 | 20.621 | 16.637 | 0.0000 | 192.00 | + | "Created XZ tracks in case 2" | 6152 | 81989 | 13.327 | 11.738 | 0.0000 | 139.00 | + | "Created full hit combinations in case 0" | 289705 | 289705 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 145139 | 145139 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 107013 | 107013 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 6152 | 139896 | 22.740 | 11.620 | 0.0000 | 77.000 | + | "Created seed tracks (part 0)" | 3076 | 92051 | 29.926 | 15.575 | 0.0000 | 92.000 | + | "Created seed tracks (part 1)" | 3076 | 89117 | 28.972 | 15.026 | 0.0000 | 97.000 | + | "Created seed tracks in case 0" | 6152 | 90219 | 14.665 | 7.6991 | 0.0000 | 46.000 | + | "Created seed tracks in case 1" | 6152 | 143973 | 23.403 | 12.026 | 0.0000 | 73.000 | + | "Created seed tracks in case 2" | 6152 | 173335 | 28.175 | 14.611 | 0.0000 | 93.000 | + | "Created seed tracks in recovery step" | 3076 | 7833 | 2.5465 | 2.4053 | 0.0000 | 18.000 | + | "Created two-hit combinations in case 0" | 1119361 |1.423784e+07 | 12.720 | 9.0999 | 0.0000 | 127.00 | + | "Created two-hit combinations in case 1" | 1119720 | 8130925 | 7.2616 | 5.2280 | 0.0000 | 102.00 | + | "Created two-hit combinations in case 2" | 1034194 | 8076414 | 7.8094 | 5.7479 | 0.0000 | 108.00 | +PrKalmanFilterForward_91de0be5 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 783 | + | "chi2 cut" | 1753 | + | "nIterations" | 5130 | 12553 | 2.4470 | + | "nOutlierIterations" | 4347 | 6699 | 1.5411 | + | "nTracksInput" | 3076 | 5130 | 1.6678 | + | "nTracksOutput" | 3076 | 2594 | 0.84330 | +PrKalmanFilterMatch_2e7949e2 INFO Number of counters : 7 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Add states failed" | 1 | 0 | 0.0000 | + | "Pre outlier chi2 cut" | 1550 | + | "chi2 cut" | 13005 | + | "nIterations" | 74000 | 150889 | 2.0390 | + | "nOutlierIterations" | 72450 | 96561 | 1.3328 | + | "nTracksInput" | 3076 | 74000 | 24.057 | + | "nTracksOutput" | 3076 | 59444 | 19.325 | +PrMatchNN_b93758d0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 2966 | 975553.8 | 328.91 | + | "#MatchingMLP" | 100327 | 86509.81 | 0.86228 | + | "#MatchingTracks" | 2966 | 74000 | 24.949 | +PrMatchNN_b93758d0.PrAddUTHitsTool INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#UT hits added" | 57773 | 218530 | 3.7826 | + | "#tracks with hits added" | 57773 | +PrResidualSciFiHits_6c2b9f03 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 123 | +PrStoreSciFiHits_1bfccf57 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 1149769 |3.054601e+07 | 26.567 | 1196.1 | -2656.0 | 2656.2 | + | "Average X in T1V" | 1094452 |9.776835e+07 | 89.331 | 1148.1 | -2656.7 | 2656.6 | + | "Average X in T1X1" | 1119361 |5.911609e+07 | 52.812 | 1201.8 | -2646.6 | 2646.7 | + | "Average X in T1X2" | 1176422 |2.495555e+07 | 21.213 | 1163.2 | -2646.6 | 2646.3 | + | "Average X in T2U" | 1089722 |3.630414e+07 | 33.315 | 1189.3 | -2656.2 | 2656.2 | + | "Average X in T2V" | 1105107 |1.98284e+07 | 17.943 | 1184.1 | -2656.6 | 2656.3 | + | "Average X in T2X1" | 1044675 | 719734.6 | 0.68896 | 1189.1 | -2646.4 | 2646.4 | + | "Average X in T2X2" | 1188030 | 7501435 | 6.3142 | 1160.2 | -2646.4 | 2646.1 | + | "Average X in T3U" | 1184547 |-3.738851e+07 | -31.564 | 1385.8 | -3187.9 | 3187.7 | + | "Average X in T3V" | 1257502 |9.632551e+07 | 76.601 | 1369.6 | -3189.0 | 3188.8 | + | "Average X in T3X1" | 1146776 | 872621.1 | 0.76093 | 1405.6 | -3176.8 | 3176.7 | + | "Average X in T3X2" | 1344490 |3.328843e+07 | 24.759 | 1378.5 | -3175.6 | 3176.0 | + | "Hits in T1U" | 12304 | 1149769 | 93.447 | 35.338 | 0.0000 | 231.00 | + | "Hits in T1V" | 12304 | 1094452 | 88.951 | 34.561 | 0.0000 | 268.00 | + | "Hits in T1X1" | 12304 | 1119361 | 90.975 | 35.354 | 0.0000 | 285.00 | + | "Hits in T1X2" | 12304 | 1176422 | 95.613 | 35.776 | 0.0000 | 302.00 | + | "Hits in T2U" | 12304 | 1089722 | 88.566 | 32.590 | 0.0000 | 231.00 | + | "Hits in T2V" | 12304 | 1105107 | 89.817 | 33.301 | 0.0000 | 285.00 | + | "Hits in T2X1" | 12304 | 1044675 | 84.905 | 31.334 | 0.0000 | 216.00 | + | "Hits in T2X2" | 12304 | 1188030 | 96.556 | 34.700 | 0.0000 | 230.00 | + | "Hits in T3U" | 12304 | 1184547 | 96.273 | 34.932 | 0.0000 | 265.00 | + | "Hits in T3V" | 12304 | 1257502 | 102.20 | 36.647 | 1.0000 | 275.00 | + | "Hits in T3X1" | 12304 | 1146776 | 93.204 | 33.335 | 0.0000 | 234.00 | + | "Hits in T3X2" | 12304 | 1344490 | 109.27 | 38.184 | 1.0000 | 258.00 | + | "Total number of hits" | 3076 |1.390085e+07 | 4519.1 | 1480.8 | 167.00 | 7174.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 3076 | 640520 | 208.23 | + | "# RawBank::UTError banks" | 3076 | 23655 | 7.6902 | + |*"Non-unique UT clusters in event" | 3076 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 3076 |1.833974e+07 | 5962.2 | 4744.1 | 0.0000 | 31087. | + | "# Rich1Gas Segments" | 3076 | 36325 | 11.809 | 6.3666 | 0.0000 | 34.000 | + | "# Rich2Gas Photons" | 3076 | 4903393 | 1594.1 | 1264.9 | 0.0000 | 7385.0 | + | "# Rich2Gas Segments" | 3076 | 24335 | 7.9112 | 4.4743 | 0.0000 | 26.000 | + | "# Selected Tracks" | 3076 | 47871 | 15.563 | 7.8974 | 0.0000 | 42.000 | + |*"RICH selection efficiency" | 58160 | 47871 |( 82.30915 +- 0.1582291)% | +TBTCMatch_af037d7b INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 55637 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 55637 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 55637 | +TBTC_Forward_c3634c48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 2523 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 2523 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 2523 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 3076 | 3443076 | 1119.3 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 3076 | 5657517 | 1839.2 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 3076 | 5657517 | 1839.2 | + | "Nb of Produced Tracks" | 3076 | 669880 | 217.78 | +FTRawBankDecoder INFO 1D histograms in directory "FTRawBankDecoder" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | no_end_fragment | "No end fragment found;iLink" | 623 | 3377.7 | 1214.2 | 0.28867 | -1.9166 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6608332 | 7.6253e-05 | 0.0030078 | -0.025289 | -1.044 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6608332 | 7.6253e-05 | 0.0030078 | -0.025289 | -1.044 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6608332 | 7.6253e-05 | 0.0030078 | -0.025289 | -1.044 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 218 |-0.00041614 | 0.0023160 | 0.37895 | 0.043266 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1604 | 6.7586e-05 | 0.0022667 | 0.131 | 0.028751 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 151385 | 0.00058755 | 0.0028667 | -0.27677 | -0.8393 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5422 | 8.9555e-05 | 0.0023889 | -0.059793 | -0.11174 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13945 | 2.9184e-05 | 0.0024718 | 0.04527 | -0.25286 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39322 | 9.4026e-05 | 0.0026334 | 0.025879 | -0.55624 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 146661 | 7.9812e-05 | 0.0028394 | 0.074607 | -0.87234 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 867914 | 0.0003121 | 0.0029890 | -0.061807 | -1.0367 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2327071 |-1.2756e-05 | 0.0030429 | 0.026255 | -1.0789 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1952320 | -4.51e-05 | 0.0030246 | 0.0023467 | -1.0584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1102470 | 0.00012389 | 0.0029845 | -0.10317 | -1.017 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 218 |-0.00041614 | 0.0023160 | 0.37895 | 0.043266 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1604 | 6.7586e-05 | 0.0022667 | 0.131 | 0.028751 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 151385 | 0.00058755 | 0.0028667 | -0.27677 | -0.8393 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5422 | 8.9555e-05 | 0.0023889 | -0.059793 | -0.11174 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 13945 | 2.9184e-05 | 0.0024718 | 0.04527 | -0.25286 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 39322 | 9.4026e-05 | 0.0026334 | 0.025879 | -0.55624 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 146661 | 7.9812e-05 | 0.0028394 | 0.074607 | -0.87234 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 867914 | 0.0003121 | 0.0029890 | -0.061807 | -1.0367 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2327071 |-1.2756e-05 | 0.0030429 | 0.026255 | -1.0789 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1952320 | -4.51e-05 | 0.0030246 | 0.0023467 | -1.0584 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1102470 | 0.00012389 | 0.0029845 | -0.10317 | -1.017 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 13456758 | 7.8044e-05 | 0.0030000 | -0.025508 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 13456758 | 7.8044e-05 | 0.0030000 | -0.025508 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 13456758 | 7.8044e-05 | 0.0030000 | -0.025508 | -1.0292 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 13456758 | 3.1458 | 1.8238 |-0.00037339 | -1.1881 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 13456758 | 0.042765 | 0.0099157 | -0.82955 | 0.061147 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6848426 | 7.9782e-05 | 0.0029924 | -0.025704 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6848426 | 7.9782e-05 | 0.0029924 | -0.025704 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 6848426 | 7.9782e-05 | 0.0029924 | -0.025704 | -1.0146 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 108 | 0.00058786 | 0.0029859 | -0.3733 | -1.0732 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 249335 | 0.00018328 | 0.0028978 | -0.0010711 | -0.93349 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 318 |-4.4586e-05 | 0.0025632 | -0.28991 | -0.67572 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1610 | 0.00076654 | 0.0025011 | -0.45251 | -0.22345 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 29163 | 0.00045627 | 0.0026151 | -0.29052 | -0.44189 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 120715 | 0.00040809 | 0.0027658 | -0.2101 | -0.6986 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 737989 | 0.00050617 | 0.0029351 | -0.19678 | -0.91471 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2234058 | 8.7148e-05 | 0.0030203 | -0.039448 | -1.0429 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2165725 |-5.1592e-05 | 0.0030149 | 0.022713 | -1.0405 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1309405 |-0.00011394 | 0.0029730 | 0.077339 | -0.9867 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 108 | 0.00058786 | 0.0029859 | -0.3733 | -1.0732 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 249335 | 0.00018328 | 0.0028978 | -0.0010711 | -0.93349 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 318 |-4.4586e-05 | 0.0025632 | -0.28991 | -0.67572 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1610 | 0.00076654 | 0.0025011 | -0.45251 | -0.22345 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 29163 | 0.00045627 | 0.0026151 | -0.29052 | -0.44189 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 120715 | 0.00040809 | 0.0027658 | -0.2101 | -0.6986 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 737989 | 0.00050617 | 0.0029351 | -0.19678 | -0.91471 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2234058 | 8.7148e-05 | 0.0030203 | -0.039448 | -1.0429 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2165725 |-5.1592e-05 | 0.0030149 | 0.022713 | -1.0405 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1309405 |-0.00011394 | 0.0029730 | 0.077339 | -0.9867 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2287264 | 5.3258e-05 | 0.0018603 | -0.019983 | -0.9156 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2287264 | 5.3258e-05 | 0.0018603 | -0.019983 | -0.9156 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2136769 | 4.167e-05 | 0.0018707 | -0.013123 | -0.93603 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 150495 | 0.0001891 | 0.0017290 | -0.082123 | -0.6311 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19598 |-5.5886e-05 | 0.0017221 | 0.042617 | -0.61545 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 55154 | 0.00039246 | 0.0018363 | -0.21373 | -0.85988 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16299 | 0.0002415 | 0.0018359 | -0.11228 | -0.87227 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6743 | 0.00023156 | 0.0018112 | -0.12842 | -0.83038 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 50920 | 0.00016658 | 0.0017958 | -0.046415 | -0.79028 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 138900 | 7.4403e-05 | 0.0018512 | -0.020447 | -0.90241 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 241893 | 3.9718e-05 | 0.0018499 | -0.0018903 | -0.89158 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 347205 |-3.0356e-05 | 0.0018568 | 0.037192 | -0.89665 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 396322 |-7.7275e-05 | 0.0018810 | 0.048068 | -0.94702 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 420116 |-3.1346e-05 | 0.0018936 | 0.022298 | -0.98125 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 296615 | 0.00013032 | 0.0018853 | -0.06929 | -0.97295 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 147004 | 0.00022001 | 0.0018656 | -0.12719 | -0.9251 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3848 | 5.3213e-05 | 0.0016114 | -0.01598 | -0.34256 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6169 | 0.00017615 | 0.0017090 | -0.062611 | -0.55944 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3051 | 0.00015913 | 0.0017596 | -0.04337 | -0.71838 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1799 | 0.00027261 | 0.0016923 | -0.02672 | -0.52209 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6337 | 0.00012521 | 0.0016663 | -0.063009 | -0.47565 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11680 | 0.00021847 | 0.0016992 | -0.091287 | -0.5702 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 16821 | 0.0002245 | 0.0017407 | -0.087844 | -0.65092 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 22193 | 0.00016457 | 0.0017294 | -0.070774 | -0.64892 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26119 | 0.0002018 | 0.0017406 | -0.088583 | -0.66046 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24329 | 0.00018473 | 0.0017467 | -0.089778 | -0.65027 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 17265 | 0.00021588 | 0.0017435 | -0.103 | -0.66617 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10884 | 0.00017485 | 0.0017372 | -0.09435 | -0.66987 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 23446 |-3.5308e-05 | 0.0017023 | 0.029521 | -0.56999 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61323 | 0.00037021 | 0.0018248 | -0.19636 | -0.83836 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 19350 | 0.00022836 | 0.0018242 | -0.10092 | -0.85053 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8542 | 0.00024061 | 0.0017858 | -0.11102 | -0.76734 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 57257 | 0.00016175 | 0.0017813 | -0.047019 | -0.75751 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 150580 | 8.7327e-05 | 0.0018385 | -0.028498 | -0.8771 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 258714 | 5.3572e-05 | 0.0018426 | -0.0096732 | -0.87643 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 369398 | -1.578e-05 | 0.0018483 | 0.027695 | -0.88178 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 422441 |-5.4189e-05 | 0.0018713 | 0.034161 | -0.92944 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 444445 |-1.6874e-05 | 0.0018849 | 0.013156 | -0.96376 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 313880 | 0.00013568 | 0.0018769 | -0.072171 | -0.95609 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 157888 | 0.00021668 | 0.0018565 | -0.1246 | -0.90844 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2264487 | 5.2072e-05 | 0.0018577 | -0.020055 | -0.9079 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2264487 | 5.2072e-05 | 0.0018577 | -0.020055 | -0.9079 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2121030 | 4.1517e-05 | 0.0018687 | -0.014293 | -0.92918 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 143457 | 0.00017896 | 0.0017162 | -0.068675 | -0.60714 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7609 | 0.00025039 | 0.0018221 | -0.1366 | -0.85646 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 112524 | 7.2582e-05 | 0.0018245 | -0.019516 | -0.8395 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 33569 | 0.00017928 | 0.0017691 | -0.067025 | -0.7106 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17133 |-8.9449e-05 | 0.0017036 | 0.037574 | -0.57126 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17572 | 0.00032574 | 0.0018522 | -0.17998 | -0.88701 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 73570 | 0.00036892 | 0.0018233 | -0.18821 | -0.84934 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 168476 | 0.0001658 | 0.0018760 | -0.085903 | -0.94669 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 333059 | 0.00010229 | 0.0018884 | -0.054679 | -0.97877 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 435862 |-5.8794e-05 | 0.0018921 | 0.040444 | -0.9709 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 384133 |-7.2002e-05 | 0.0018749 | 0.046021 | -0.93096 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 329960 | 1.2462e-05 | 0.0018535 | 0.0057279 | -0.89194 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 207563 | 4.8982e-05 | 0.0018490 | -0.01041 | -0.88757 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1627 | 0.00016902 | 0.0016874 | -0.025814 | -0.6086 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10284 | 0.00012084 | 0.0017156 | -0.053846 | -0.5845 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5382 | 0.00010178 | 0.0016466 | -0.083926 | -0.38079 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3479 | 9.5756e-05 | 0.0016142 | -0.053688 | -0.30607 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2529 | 0.00018392 | 0.0016963 | -0.0079155 | -0.59528 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5591 | 0.00017728 | 0.0017020 | 0.010075 | -0.59586 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9581 | 0.00017698 | 0.0017023 | -0.043765 | -0.5983 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17832 | 0.00020825 | 0.0017408 | -0.088081 | -0.67868 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 24424 | 0.00017217 | 0.0017322 | -0.082835 | -0.6509 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 25446 | 0.00020114 | 0.0017245 | -0.06906 | -0.62247 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 21298 | 0.00019032 | 0.0017109 | -0.084102 | -0.5895 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15984 | 0.00019345 | 0.0017225 | -0.074958 | -0.61922 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9236 | 0.00023551 | 0.0017985 | -0.11702 | -0.81741 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 122808 | 7.6964e-05 | 0.0018150 | -0.022925 | -0.81873 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 38951 | 0.00016707 | 0.0017506 | -0.066879 | -0.66402 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20612 |-5.4636e-05 | 0.0016887 | 0.017415 | -0.52998 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20101 | 0.00030749 | 0.0018335 | -0.15823 | -0.85861 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 79161 | 0.00035481 | 0.0018153 | -0.17331 | -0.83739 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 178057 | 0.00016647 | 0.0018660 | -0.084217 | -0.92837 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 350891 | 0.00010861 | 0.0018801 | -0.057697 | -0.96301 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 460286 |-4.3477e-05 | 0.0018827 | 0.03042 | -0.95452 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 409579 |-4.9168e-05 | 0.0018643 | 0.033284 | -0.91099 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 351258 | 2.5786e-05 | 0.0018438 | -0.0025959 | -0.87317 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 223547 | 6.1221e-05 | 0.0018391 | -0.017311 | -0.86786 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 4551751 | 5.2668e-05 | 0.0018590 | -0.020017 | -0.91178 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 4551751 | 5.2668e-05 | 0.0018590 | -0.020017 | -0.91178 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 4257799 | 4.1594e-05 | 0.0018697 | -0.013704 | -0.93262 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 293952 | 0.00018411 | 0.0017227 | -0.07552 | -0.61944 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 4551751 | 3.1369 | 1.8166 | 0.0029864 | -1.1936 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 4551751 | 0.025286 | 0.0052976 | -0.63855 | -0.41681 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 139 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4046244 | 6.0254e-05 | 0.0029908 | -0.017856 | -1.0266 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4046244 | 6.0254e-05 | 0.0029908 | -0.017856 | -1.0266 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4046244 | 6.0254e-05 | 0.0029908 | -0.017856 | -1.0266 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 105 | -0.00011 | 0.0021610 | 0.3875 | -0.089266 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1027 | 0.00025967 | 0.0022801 | 0.059891 | 0.010298 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90977 | 0.00052467 | 0.0028377 | -0.26837 | -0.80896 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4229 | 0.00013935 | 0.0024205 | -0.05879 | -0.12818 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 11348 | 7.2892e-06 | 0.0024650 | 0.05363 | -0.24584 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32376 | 8.59e-05 | 0.0026304 | 0.029669 | -0.55102 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 116033 | 6.8708e-05 | 0.0028269 | 0.076876 | -0.85821 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 573931 | 0.00020024 | 0.0029834 | -0.016151 | -1.0308 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1392159 |-1.0867e-05 | 0.0030344 | 0.02866 | -1.0695 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1181179 |-4.8883e-05 | 0.0030093 | 0.0023887 | -1.0431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 642880 | 0.00014093 | 0.0029634 | -0.11391 | -0.9919 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 105 | -0.00011 | 0.0021610 | 0.3875 | -0.089266 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1027 | 0.00025967 | 0.0022801 | 0.059891 | 0.010298 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 90977 | 0.00052467 | 0.0028377 | -0.26837 | -0.80896 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4229 | 0.00013935 | 0.0024205 | -0.05879 | -0.12818 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 11348 | 7.2892e-06 | 0.0024650 | 0.05363 | -0.24584 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 32376 | 8.59e-05 | 0.0026304 | 0.029669 | -0.55102 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 116033 | 6.8708e-05 | 0.0028269 | 0.076876 | -0.85821 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 573931 | 0.00020024 | 0.0029834 | -0.016151 | -1.0308 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1392159 |-1.0867e-05 | 0.0030344 | 0.02866 | -1.0695 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1181179 |-4.8883e-05 | 0.0030093 | 0.0023887 | -1.0431 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 642880 | 0.00014093 | 0.0029634 | -0.11391 | -0.9919 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 8181618 | 6.1278e-05 | 0.0029825 | -0.017991 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 8181618 | 6.1278e-05 | 0.0029825 | -0.017991 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 8181618 | 6.1278e-05 | 0.0029825 | -0.017991 | -1.0096 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 8181618 | 3.149 | 1.8234 | -0.0029608 | -1.1879 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 8181618 | 0.042803 | 0.0099011 | -0.84145 | 0.094534 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4135374 | 6.2286e-05 | 0.0029743 | -0.018115 | -0.99258 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4135374 | 6.2286e-05 | 0.0029743 | -0.018115 | -0.99258 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4135374 | 6.2286e-05 | 0.0029743 | -0.018115 | -0.99258 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 78 | 0.00050582 | 0.0030546 | -0.30556 | -1.2171 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145751 | 0.00011339 | 0.0028470 | 0.03691 | -0.87082 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 253 |-0.00029684 | 0.0026339 | -0.19549 | -0.81686 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1352 | 0.00076067 | 0.0025140 | -0.45526 | -0.26036 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23748 | 0.00045414 | 0.0026123 | -0.29626 | -0.43897 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 95487 | 0.00037398 | 0.0027721 | -0.20012 | -0.70551 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 498126 | 0.00039035 | 0.0029280 | -0.15565 | -0.91856 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1318173 | 7.736e-05 | 0.0030107 | -0.034043 | -1.0292 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1294659 |-5.9107e-05 | 0.0030042 | 0.025935 | -1.0251 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 757747 |-0.00011185 | 0.0029494 | 0.082779 | -0.958 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 78 | 0.00050582 | 0.0030546 | -0.30556 | -1.2171 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 145751 | 0.00011339 | 0.0028470 | 0.03691 | -0.87082 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 253 |-0.00029684 | 0.0026339 | -0.19549 | -0.81686 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1352 | 0.00076067 | 0.0025140 | -0.45526 | -0.26036 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 23748 | 0.00045414 | 0.0026123 | -0.29626 | -0.43897 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 95487 | 0.00037398 | 0.0027721 | -0.20012 | -0.70551 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 498126 | 0.00039035 | 0.0029280 | -0.15565 | -0.91856 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1318173 | 7.736e-05 | 0.0030107 | -0.034043 | -1.0292 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1294659 |-5.9107e-05 | 0.0030042 | 0.025935 | -1.0251 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 757747 |-0.00011185 | 0.0029494 | 0.082779 | -0.958 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1048924 | 5.477e-05 | 0.0018573 | -0.020621 | -0.90964 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1048924 | 5.477e-05 | 0.0018573 | -0.020621 | -0.90964 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 953127 | 4.2083e-05 | 0.0018725 | -0.012821 | -0.93959 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 95797 | 0.00016102 | 0.0017218 | -0.070979 | -0.613 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13114 |-7.7336e-05 | 0.0017303 | 0.047484 | -0.63188 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 31038 | 0.00023325 | 0.0018406 | -0.12699 | -0.87793 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12885 | 0.00020416 | 0.0018290 | -0.083319 | -0.85815 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5539 | 0.00021884 | 0.0018164 | -0.12631 | -0.84523 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 30983 | 0.0001456 | 0.0018043 | -0.045825 | -0.79706 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 78727 | 3.686e-05 | 0.0018428 |-0.00095661 | -0.88976 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 115527 |-4.0699e-06 | 0.0018577 | 0.016345 | -0.90723 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 143745 |-1.4084e-05 | 0.0018675 | 0.024024 | -0.91432 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 166498 |-6.8859e-05 | 0.0018937 | 0.046611 | -0.97209 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 181539 | 4.7662e-06 | 0.0018936 | 0.0064328 | -0.98931 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 111720 | 0.00019313 | 0.0018950 | -0.10376 | -0.98104 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 61812 | 0.00015123 | 0.0018601 | -0.086613 | -0.91448 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2568 | 4.1798e-05 | 0.0016157 | -0.058907 | -0.35439 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4741 | 0.00015609 | 0.0017020 | -0.066677 | -0.53355 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2366 | 0.00014802 | 0.0017342 | -0.018677 | -0.69366 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1315 | 0.00026869 | 0.0017608 | -0.049762 | -0.62357 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4035 | 0.00013773 | 0.0016709 | -0.073273 | -0.47469 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6959 | 0.0002562 | 0.0017020 | -0.10721 | -0.57705 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10014 | 0.00019076 | 0.0017390 | -0.087319 | -0.63404 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13575 | 0.00015626 | 0.0017250 | -0.082637 | -0.64115 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15629 | 0.00014625 | 0.0017325 | -0.06983 | -0.64286 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 14975 | 0.00014245 | 0.0017344 | -0.057563 | -0.61193 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11691 | 0.00017726 | 0.0017247 | -0.06453 | -0.63166 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7929 | 0.00012105 | 0.0017216 | -0.063783 | -0.65413 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15682 |-5.4145e-05 | 0.0017093 | 0.025716 | -0.58609 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 35779 | 0.00022235 | 0.0018218 | -0.11786 | -0.83659 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15251 | 0.00019527 | 0.0018144 | -0.073143 | -0.83438 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6854 | 0.00022854 | 0.0018058 | -0.1133 | -0.8034 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 35018 | 0.0001446 | 0.0017879 | -0.048496 | -0.7607 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 85686 | 5.7083e-05 | 0.0018313 | -0.013177 | -0.86649 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 125541 | 1.4078e-05 | 0.0018479 | 0.0050214 | -0.88656 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 157320 | 4.2498e-06 | 0.0018535 | 0.010872 | -0.89011 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 182127 |-4.5231e-05 | 0.0018779 | 0.03107 | -0.94354 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 196514 | 1.6819e-05 | 0.0018806 |-0.00079993 | -0.96183 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 123411 | 0.00019145 | 0.0018777 | -0.10023 | -0.94899 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 69741 | 0.00014748 | 0.0018435 | -0.083597 | -0.88528 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1024629 | 4.7323e-05 | 0.0018564 | -0.016834 | -0.90297 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1024629 | 4.7323e-05 | 0.0018564 | -0.016834 | -0.90297 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 934140 | 3.5215e-05 | 0.0018727 | -0.010155 | -0.93476 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 90489 | 0.00015034 | 0.0017081 | -0.055291 | -0.58349 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6279 | 0.00020758 | 0.0018300 | -0.10214 | -0.8832 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 61406 | 5.5285e-05 | 0.0018247 | -0.013229 | -0.82901 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18833 | 0.00020223 | 0.0017791 | -0.091984 | -0.69638 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10374 |-7.0642e-05 | 0.0016894 | 0.029469 | -0.54316 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13749 | 0.00026745 | 0.0018561 | -0.14612 | -0.90824 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 37550 | 0.00022271 | 0.0018390 | -0.11678 | -0.87838 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 66604 | 0.00010436 | 0.0018748 | -0.061771 | -0.94188 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 130078 | 0.00016391 | 0.0018957 | -0.084729 | -0.98413 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 191460 |-5.4491e-05 | 0.0018963 | 0.040467 | -0.97868 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 158930 |-5.9255e-05 | 0.0018887 | 0.042535 | -0.96086 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 137010 | 5.7119e-07 | 0.0018651 | 0.017958 | -0.90917 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 101867 |-5.9802e-06 | 0.0018519 | 0.012633 | -0.89692 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1290 | 0.00011966 | 0.0017076 | 0.0090339 | -0.60611 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6117 | 6.4307e-05 | 0.0017034 | -0.025878 | -0.55547 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3477 | 8.1631e-05 | 0.0016454 | -0.085126 | -0.35122 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2381 | 5.3519e-05 | 0.0015890 | -0.037959 | -0.20278 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1957 | 0.0002184 | 0.0017220 | -0.020427 | -0.63787 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4361 | 0.00017126 | 0.0017170 | -0.0026427 | -0.62347 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7122 | 0.00015914 | 0.0017028 | -0.037618 | -0.58726 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11802 | 0.0001643 | 0.0017295 | -0.07324 | -0.65078 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14727 | 0.00012343 | 0.0017229 | -0.069648 | -0.63059 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15261 | 0.00013311 | 0.0017200 | -0.044143 | -0.60211 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12751 | 0.00018532 | 0.0016958 | -0.072378 | -0.55242 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9243 | 0.00023162 | 0.0017068 | -0.077995 | -0.59304 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7569 | 0.00019232 | 0.0018096 | -0.083214 | -0.84249 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 67523 | 5.6162e-05 | 0.0018132 | -0.014426 | -0.80509 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 22310 | 0.00018031 | 0.0017562 | -0.086459 | -0.64094 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12755 | -4.437e-05 | 0.0016695 | 0.012794 | -0.48084 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15706 | 0.00026137 | 0.0018401 | -0.13223 | -0.87943 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 41911 | 0.00021681 | 0.0018255 | -0.10483 | -0.8531 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 73726 | 0.00011046 | 0.0018566 | -0.061325 | -0.90697 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 141880 | 0.00016395 | 0.0018810 | -0.083993 | -0.95727 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 206187 |-3.9478e-05 | 0.0018829 | 0.029522 | -0.95522 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 174191 |-3.7139e-05 | 0.0018711 | 0.029403 | -0.9272 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 149761 | 2.0881e-05 | 0.0018481 | 0.0051785 | -0.87694 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 111110 | 1.777e-05 | 0.0018393 | 0.00020984 | -0.87188 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 2073553 | 5.1089e-05 | 0.0018569 | -0.018747 | -0.90635 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 2073553 | 5.1089e-05 | 0.0018569 | -0.018747 | -0.90635 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1887267 | 3.8685e-05 | 0.0018726 | -0.011502 | -0.9372 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 186286 | 0.00015578 | 0.0017151 | -0.0633 | -0.5987 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 2073553 | 3.1289 | 1.8190 | 0.010829 | -1.1963 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 2073553 | 0.025353 | 0.0052694 | -0.65832 | -0.36841 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4020 | 33.227 | 22.189 | 0.22983 | -1.0483 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 36325 | 64.259 | 9.8352 | -0.56415 | -0.69119 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36293 | 52.003 | 18.890 | -0.31769 | -1.0733 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36325 | 63.371 | 9.7764 | -0.55707 | -0.70838 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36325 | 62.74 | 9.6896 | -0.53309 | -0.72233 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 16470 | 41.12 | 23.438 | -0.14469 | -1.1741 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1997 | 20.285 | 13.734 | 0.31495 | -0.97754 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 24335 | 54.65 | 2.5894 | 0.90989 | 1.7944 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24312 | 37.515 | 9.4218 | -0.22566 | -1.0248 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24335 | 53.863 | 2.4600 | 0.88419 | 2.1074 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24335 | 53.278 | 2.4161 | 0.79621 | 2.1602 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 11613 | 24.249 | 14.280 | 0.053717 | -1.0896 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4255 | 224.55 | 158.93 | 0.29659 | -1.007 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 36368 | 596.86 | 21.541 | -7.451 | 80.977 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36368 | 386.26 | 138.22 | -0.36017 | -1.0404 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36368 | 587.23 | 21.557 | -7.022 | 74.128 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36368 | 580.04 | 22.761 | -5.7028 | 55.466 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 17046 | 287.71 | 170.09 | -0.11106 | -1.1825 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 2145 | 121.12 | 88.568 | 0.36173 | -0.98484 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 24473 | 344.21 | 17.166 | 1.1303 | 3.0953 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24473 | 237.03 | 58.833 | -0.21718 | -1.0157 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24473 | 339.29 | 16.342 | 1.108 | 3.3657 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24473 | 335.6 | 16.072 | 1.034 | 3.3837 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 12223 | 147.31 | 92.459 | 0.074559 | -1.1219 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 9019 | 1076.1 | 24.951 | 0.81623 | 0.78501 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 14615 | 1901.8 | 98.581 | 0.73177 | 2.3747 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 4020 | 22.818 | 15.463 | 0.30993 | -0.90479 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 36325 | 58.397 | 4.9056 | -2.5188 | 14.501 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 36293 | 37.597 | 14.160 | -0.2819 | -1.0009 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 36325 | 57.44 | 4.8600 | -2.4709 | 14.145 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 36325 | 56.73 | 4.8775 | -2.3572 | 13.321 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 16470 | 28.805 | 16.593 | -0.074697 | -1.1029 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1997 | 13.692 | 9.4117 | 0.3707 | -0.88633 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 24335 | 35.893 | 4.8275 | -1.3948 | 3.99 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 24312 | 24.874 | 6.9519 | -0.19147 | -0.73065 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 24335 | 35.378 | 4.7435 | -1.4487 | 4.1648 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 24335 | 34.996 | 4.6971 | -1.4693 | 4.2361 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 11613 | 16.296 | 9.6826 | 0.096497 | -1.0225 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 261345 | -0.012358 | 0.52204 | 3.7052 | 108.51 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3445928 | -0.0020074 | 0.65774 | 2.3406 | 63.492 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2871120 | -0.0048223 | 0.64959 | 2.0949 | 166.56 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3445928 | -0.0020074 | 0.65774 | 2.3406 | 63.492 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3445928 | -0.0020074 | 0.65774 | 2.3406 | 63.492 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1162758 | -0.0097848 | 0.59564 | 1.2458 | 144.12 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 119068 | 0.0046386 | 7.0942 | 0.92917 | 0.83467 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2313222 | -0.21252 | 7.8883 | 0.25984 | 1.4151 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1993122 | -0.003 | 7.0679 | 0.78237 | 1.0711 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2313222 | -0.21252 | 7.8883 | 0.25984 | 1.4151 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2313222 | -0.21252 | 7.8883 | 0.25984 | 1.4151 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 754542 | 0.0023908 | 6.6086 | 0.95918 | 1.5695 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 11066974 | 0.095286 | 0.074646 | 1.0609 | 0.80095 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 6387804 | 0.048698 | 0.031522 | 1.5857 | 4.2142 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 8407677 | 1.3163 | 0.97655 | 6.9623 | 91.44 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 5684868 | 1.1237 | 0.42927 | 5.2865 | 60.039 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 5456446 | 6.0924 | 240.96 | -0.015407 | -0.019329 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 5456446 | -1360 | 66.804 | -0.77828 | 0.15854 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 3076 | 936.13 | 300.08 | -1.1538 | 1.4418 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3076 | 3599.4 | 1676.1 | 0.076755 | 0.9083 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 2879532 | 3.8433 | 4.0553 | 2.3502 | 6.9511 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 11066974 | 5.4257 | 239.81 | 0.0055797 | 0.0082401 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 11066974 | -0.10481 | 260.40 | -0.011427 | -0.85953 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 5610528 | 4.7871 | 239.43 | 0.026241 | 0.04065 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 5610528 | 1358.6 | 67.479 | 0.7715 | 0.12604 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 3266079 | 3905.2 | 84.814 | -0.14757 | -0.9437 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 3266079 | 12.29 | 272.96 | 0.015043 | 0.069982 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 3121725 | -3902.7 | 83.581 | 0.16197 | -0.89083 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 3121725 | 14.989 | 268.79 | 0.0048707 | 0.13055 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 3076 | 789.66 | 216.56 | -1.8307 | 3.3874 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 3076 | 2077.4 | 869.31 | -0.33314 | -0.26669 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 1567950 | 2.653 | 1.8857 | 1.5927 | 3.2994 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 861046 | 2.5875 | 1.9066 | 1.9242 | 5.6659 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 2428996 | 2.6298 | 1.8934 | 1.7115 | 4.1484 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 6387804 | 8.629 | 463.41 | -0.029928 | -1.5239 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 6387804 | 13.573 | 270.63 | 0.010151 | 0.10078 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 13456758 | 0.052286 | 0.00051711 | -0.37689 | -1.0649 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 13456758 | 0.051239 | 0.0057869 | -0.14008 | -1.0194 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 13456758 | 7.8035e-05 | 0.0030000 | -0.025507 | -1.029 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 3496276 | 6.4824e-05 | 0.0029953 | -0.010144 | -1.0204 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 3348294 | 9.5386e-05 | 0.0029925 | -0.037192 | -1.0119 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 3409967 | 9.1883e-05 | 0.0029995 | -0.042135 | -1.0265 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 3202221 | 5.9465e-05 | 0.0030134 | -0.01218 | -1.0574 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 4551751 | 0.029404 | 0.00022993 | -0.25481 | -1.0749 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 4551751 | 0.028118 | 0.0040699 | -0.22041 | -0.98375 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 4551751 | 5.2671e-05 | 0.0018591 | -0.020062 | -0.91159 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1145592 | 5.3353e-05 | 0.0018555 | -0.020684 | -0.90547 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1128618 | 5.2175e-05 | 0.0018571 | -0.022359 | -0.9052 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 1142208 | 5.4558e-05 | 0.0018652 | -0.020052 | -0.92466 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 1135333 | 5.0581e-05 | 0.0018585 | -0.017189 | -0.91089 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 36368 | 975.33 | 32.907 | 11.215 | 136.6 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 36368 | 2045.7 | 15.304 | 1.2728 | 2.9283 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 36368 | 1075.1 | 38.865 | -7.3851 | 80.181 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 24473 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 24473 | 11378 | 89.758 | 0.96217 | 2.4343 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 24473 | 1885.3 | 93.878 | 1.1379 | 3.1145 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 3076 | 15.563 | 7.8974 | 0.092659 | -0.27274 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 3076 | 18.908 | 9.1709 | -0.011218 | -0.24059 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 3872 | 56459 | 14679. | 0.91839 | 0.17245 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 36177 | 20476 | 12008. | 2.3438 | 7.1761 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36145 | 23837 | 13296. | 1.9678 | 4.9267 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36177 | 20576 | 12062. | 2.3282 | 7.0731 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36177 | 20652 | 12103. | 2.3164 | 6.9962 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16322 | 35655 | 14637. | 1.517 | 2.4941 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1575 | 81323 | 10164. | 0.078634 | -1.0496 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 23913 | 34126 | 14463. | 1.7419 | 3.2513 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 23890 | 37301 | 15550. | 1.4605 | 2.055 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 23913 | 34226 | 14510. | 1.731 | 3.1998 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 23913 | 34303 | 14544. | 1.7228 | 3.1612 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11191 | 53073 | 15736. | 0.94828 | 0.23621 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 4107 | 56136 | 14715. | 0.92418 | 0.19448 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 36220 | 20468 | 12003. | 2.3453 | 7.1858 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36220 | 23747 | 13273. | 1.9746 | 4.964 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36220 | 20567 | 12056. | 2.3298 | 7.0841 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36220 | 20643 | 12096. | 2.3182 | 7.0082 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16898 | 35464 | 14629. | 1.5216 | 2.5192 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1723 | 81038 | 10282. | 0.079806 | -1.038 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 24051 | 34080 | 14449. | 1.7463 | 3.2709 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 24051 | 37203 | 15530. | 1.4672 | 2.0797 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 24051 | 34179 | 14495. | 1.7355 | 3.2195 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 24051 | 34255 | 14529. | 1.7273 | 3.181 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11801 | 52864 | 15755. | 0.95294 | 0.24928 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 3872 | 56429 | 14659. | 0.92186 | 0.18724 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 36177 | 20510 | 12038. | 2.3402 | 7.1441 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 36145 | 23862 | 13322. | 1.9661 | 4.9094 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 36177 | 20611 | 12092. | 2.3246 | 7.0416 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 36177 | 20688 | 12132. | 2.3128 | 6.965 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 16322 | 35669 | 14659. | 1.5171 | 2.4869 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1575 | 81310 | 10155. | 0.077114 | -1.051 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 23913 | 34247 | 14517. | 1.7253 | 3.1698 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 23890 | 37348 | 15563. | 1.455 | 2.0272 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 23913 | 34347 | 14563. | 1.7145 | 3.1193 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 23913 | 34424 | 14597. | 1.7064 | 3.0815 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 11191 | 53004 | 15692. | 0.95073 | 0.24537 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 261345 | 9.9629e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 3445928 |-4.7412e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 2871120 | 8.1956e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 3445928 |-4.7412e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 3445928 |-4.7412e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 1162758 | 2.4276e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 166739 | 1.1302 | 0.95007 | 0.39129 | -0.44392 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 164792 | 0.049655 | 0.0066727 | -2.6319 | 6.9765 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 119068 | 2.313e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 2313222 | 2.0959e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1993122 |-1.7907e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 2313222 | 2.0959e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 2313222 | 2.0959e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 754542 | 1.4459e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 111546 | 1.2256 | 1.0260 | 0.43044 | -0.4689 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 108428 | 0.028035 | 0.0033499 | -2.3755 | 5.4262 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7382400 | 27.43 | 262.62 | -0.0067223 | -0.83476 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 7690000 | 31.435 | 240.90 | 0.0063096 | -0.0041076 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 7690000 | 27.26 | 263.84 | -0.011767 | -0.92491 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 7690000 | 40.536 | 463.41 | -0.030265 | -1.5254 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 7690000 | 44.973 | 224.22 | -0.0024566 | 0.97766 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 7690000 | 47.325 | 466.19 | -0.049258 | -1.519 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 7690000 | 42.354 | 320.91 | 0.01043 | -0.75108 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 58160 | 1.7233 | 0.47022 | 0.22644 | -0.60211 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 58160 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 54805 | 0.055802 | 0.074308 | 2.1174 | 4.5771 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 57738 | 24253 | 14659. | 1.8365 | 4.075 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 57956 | 1049.7 | 787.62 | 2.5556 | 10.149 | diff --git a/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.x86_64_v3-opt b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.x86_64_v3-opt new file mode 100644 index 0000000000000000000000000000000000000000..bf556df7d71b0b6193a7a3bda1e9bf95d405f401 --- /dev/null +++ b/Rich/Panoptes/tests/refs/rich_ref_index_calib_2024_data_trunk_geom.ref.x86_64_v3-opt @@ -0,0 +1,631 @@ +RichRefCalibLong INFO ====================================================================================================================== +RichRefCalibLong INFO Finalizing +RichRefCalibLong INFO Finalized +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +CloneKillerMatch_6d2ee9e9 INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "nTracksInput" | 4963 | 41208 | 8.3030 | + | "nTracksSelected" | 4963 | 41208 | 8.3030 | +DefaultGECFilter INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb Events Processed" | 5000 | + | "Nb events removed" | 37 | +FTRawBankDecoder INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "No end fragment found. Ignoring the cluster." | 286 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 5000 | +MDFIOAlg INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#banks in raw event" | 5000 | 3146349 | 629.27 | 0.44386 | 629.00 | 630.00 | + | "event size statistics (KBytes)" | 5101 | 162018 | 31.762 | 11.963 | 23.000 | 91.000 | +PrForwardTrackingVelo_a1aa9f5e INFO Number of counters : 11 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Accepted input tracks" | 2884 | 215032 | 74.560 | + | "Created long tracks" | 2884 | 3173 | 1.1002 | + | "Empty input tracks" | 2079 | + | "Input tracks" | 2884 | 223090 | 77.354 | + | "Number of candidate bins per track" | 215032 | 322832 | 1.5013 | 3.2605 | 0.0000 | 45.000 | + | "Number of complete candidates/track 1st Loop" | 80227 | 2532 | 0.031560 | 0.17674 | 0.0000 | 2.0000 | + | "Number of complete candidates/track 2nd Loop" | 78706 | 749 | 0.0095164 | 0.098128 | 0.0000 | 3.0000 | + | "Number of x candidates per track 1st Loop" | 80227 | 36216 | 0.45142 | 0.83410 | + | "Number of x candidates per track 2nd Loop" | 78706 | 145838 | 1.8529 | 2.5222 | + | "Percentage second loop execution" | 80227 | 78706 | 0.98104 | + | "Removed duplicates" | 2884 | 89 | 0.030860 | +PrHybridSeeding_fdab620b INFO Number of counters : 21 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Created T2x1 three-hit combinations in case 0" | 1261778 | 710949 | 0.56345 | 0.55655 | 0.0000 | 4.0000 | + | "Created T2x1 three-hit combinations in case 1" | 652546 | 364538 | 0.55864 | 0.55486 | 0.0000 | 5.0000 | + | "Created T2x1 three-hit combinations in case 2" | 560524 | 305759 | 0.54549 | 0.56408 | 0.0000 | 5.0000 | + | "Created XZ tracks (part 0)" | 14889 | 117146 | 7.8680 | 20.698 | 0.0000 | 436.00 | + | "Created XZ tracks (part 1)" | 14889 | 104121 | 6.9931 | 17.595 | 0.0000 | 295.00 | + | "Created XZ tracks in case 0" | 9926 | 102528 | 10.329 | 24.579 | 0.0000 | 436.00 | + | "Created XZ tracks in case 1" | 9926 | 72657 | 7.3199 | 18.289 | 0.0000 | 322.00 | + | "Created XZ tracks in case 2" | 9926 | 46082 | 4.6426 | 12.359 | 0.0000 | 203.00 | + | "Created full hit combinations in case 0" | 163423 | 163423 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 1" | 81457 | 81457 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created full hit combinations in case 2" | 58675 | 58675 | 1.0000 | 0.0000 | 1.0000 | 1.0000 | + | "Created seed tracks" | 9926 | 79557 | 8.0150 | 13.831 | 0.0000 | 148.00 | + | "Created seed tracks (part 0)" | 4963 | 52583 | 10.595 | 18.522 | 0.0000 | 187.00 | + | "Created seed tracks (part 1)" | 4963 | 50030 | 10.081 | 17.296 | 0.0000 | 139.00 | + | "Created seed tracks in case 0" | 9926 | 50720 | 5.1098 | 8.7899 | 0.0000 | 95.000 | + | "Created seed tracks in case 1" | 9926 | 81500 | 8.2108 | 14.021 | 0.0000 | 143.00 | + | "Created seed tracks in case 2" | 9926 | 98220 | 9.8952 | 17.091 | 0.0000 | 177.00 | + | "Created seed tracks in recovery step" | 4963 | 4393 | 0.88515 | 1.9972 | 0.0000 | 16.000 | + | "Created two-hit combinations in case 0" | 484356 | 5710974 | 11.791 | 10.205 | 0.0000 | 119.00 | + | "Created two-hit combinations in case 1" | 503614 | 3282973 | 6.5188 | 5.8539 | 0.0000 | 112.00 | + | "Created two-hit combinations in case 2" | 436352 | 3071667 | 7.0394 | 6.4270 | 0.0000 | 124.00 | +PrKalmanFilterForward_91de0be5 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 538 | + | "chi2 cut" | 964 | + | "nIterations" | 3173 | 7589 | 2.3917 | + | "nOutlierIterations" | 2635 | 4118 | 1.5628 | + | "nTracksInput" | 4963 | 3173 | 0.63933 | + | "nTracksOutput" | 4963 | 1671 | 0.33669 | +PrKalmanFilterMatch_2e7949e2 INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Pre outlier chi2 cut" | 1005 | + | "chi2 cut" | 4695 | + | "nIterations" | 41208 | 83533 | 2.0271 | + | "nOutlierIterations" | 40203 | 51124 | 1.2716 | + | "nTracksInput" | 4963 | 41208 | 8.3030 | + | "nTracksOutput" | 4963 | 35508 | 7.1545 | +PrMatchNN_b93758d0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "#MatchingChi2" | 2158 | 658013.4 | 304.92 | + | "#MatchingMLP" | 56110 | 46819.6 | 0.83443 | + | "#MatchingTracks" | 2158 | 41208 | 19.095 | +PrResidualSciFiHits_6c2b9f03 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Empty Long tracks" | 2838 | +PrStoreSciFiHits_1bfccf57 INFO Number of counters : 25 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Average X in T1U" | 514621 |-1.226473e+07 | -23.833 | 1107.7 | -2655.6 | 2655.9 | + | "Average X in T1V" | 510324 |1.223044e+07 | 23.966 | 1080.9 | -2657.2 | 2656.0 | + | "Average X in T1X1" | 484356 |-1.257697e+07 | -25.966 | 1116.0 | -2646.8 | 2645.6 | + | "Average X in T1X2" | 535399 | -4542572 | -8.4845 | 1091.7 | -2646.6 | 2646.0 | + | "Average X in T2U" | 507208 | -6244965 | -12.312 | 1129.8 | -2655.8 | 2655.7 | + | "Average X in T2V" | 523738 |-1.431855e+07 | -27.339 | 1119.8 | -2657.0 | 2655.4 | + | "Average X in T2X1" | 481638 |-1.510715e+07 | -31.366 | 1130.4 | -2646.6 | 2645.6 | + | "Average X in T2X2" | 546398 | -7071058 | -12.941 | 1105.6 | -2646.2 | 2645.6 | + | "Average X in T3U" | 545528 |-2.251427e+07 | -41.271 | 1319.7 | -3187.4 | 3187.9 | + | "Average X in T3V" | 573565 | -2605213 | -4.5421 | 1314.9 | -3189.9 | 3187.7 | + | "Average X in T3X1" | 520766 | -9465402 | -18.176 | 1331.5 | -3176.3 | 3175.9 | + | "Average X in T3X2" | 622746 | -5955182 | -9.5628 | 1295.9 | -3176.9 | 3175.4 | + | "Hits in T1U" | 19852 | 514621 | 25.923 | 40.223 | 0.0000 | 304.00 | + | "Hits in T1V" | 19852 | 510324 | 25.706 | 40.007 | 0.0000 | 232.00 | + | "Hits in T1X1" | 19852 | 484356 | 24.398 | 38.016 | 0.0000 | 243.00 | + | "Hits in T1X2" | 19852 | 535399 | 26.970 | 41.570 | 0.0000 | 271.00 | + | "Hits in T2U" | 19852 | 507208 | 25.549 | 39.089 | 0.0000 | 239.00 | + | "Hits in T2V" | 19852 | 523738 | 26.382 | 40.467 | 0.0000 | 267.00 | + | "Hits in T2X1" | 19852 | 481638 | 24.261 | 37.219 | 0.0000 | 285.00 | + | "Hits in T2X2" | 19852 | 546398 | 27.524 | 41.897 | 0.0000 | 257.00 | + | "Hits in T3U" | 19852 | 545528 | 27.480 | 41.683 | 0.0000 | 267.00 | + | "Hits in T3V" | 19852 | 573565 | 28.892 | 43.525 | 0.0000 | 241.00 | + | "Hits in T3X1" | 19852 | 520766 | 26.232 | 39.691 | 0.0000 | 232.00 | + | "Hits in T3X2" | 19852 | 622746 | 31.369 | 45.543 | 0.0000 | 274.00 | + | "Total number of hits" | 4963 | 6366287 | 1282.7 | 1912.4 | 25.000 | 8506.0 | +PrStoreUTHitClusters_69298ec0 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# RawBank::UT banks" | 4963 | 0 | 0.0000 | + | "# RawBank::UTError banks" | 4963 | 0 | 0.0000 | + |*"Non-unique UT clusters in event" | 4963 | 0 |( 0.000000 +- 0.000000)% | +PrVPHitsToVPLightClusters_8cd36c45 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | +RichRecoStatsLong INFO Number of counters : 6 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Rich1Gas Photons" | 4963 |1.198456e+07 | 2414.8 | 5432.1 | 0.0000 | 46840. | + | "# Rich1Gas Segments" | 4963 | 19515 | 3.9321 | 6.7517 | 0.0000 | 41.000 | + | "# Rich2Gas Photons" | 4963 | 3257811 | 656.42 | 1457.5 | 0.0000 | 11552. | + | "# Rich2Gas Segments" | 4963 | 14195 | 2.8602 | 4.9078 | 0.0000 | 26.000 | + | "# Selected Tracks" | 4963 | 27216 | 5.4838 | 9.1525 | 0.0000 | 47.000 | + |*"RICH selection efficiency" | 33915 | 27216 |( 80.24768 +- 0.2161869)% | +TBTCMatch_af037d7b INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 32301 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 32301 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 32301 | +TBTC_Forward_c3634c48 INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + |*"BadInput" | 1614 | 0 |( 0.000000 +- 0.000000)% | + |*"FitFailed" | 1614 | 0 |( 0.000000 +- 0.000000)% | + | "FittedBefore" | 1614 | +UTHitClustersToPrUTHitsConverter... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 4963 | 0 | 0.0000 | +VPLightClustersToVPMicroClusters... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# Converted Clusters" | 4963 | 4354398 | 877.37 | +VeloRetinaClusterTrackingSIMD_66... INFO Number of counters : 2 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Nb of Produced Clusters" | 4963 | 4354398 | 877.37 | + | "Nb of Produced Tracks" | 4963 | 448981 | 90.466 | +FTRawBankDecoder INFO 1D histograms in directory "FTRawBankDecoder" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | no_end_fragment | "No end fragment found;iLink" | 286 | 3329.9 | 1206.4 | 0.36979 | -1.8632 | +RiCKResLong INFO 1D histograms in directory "RiCKResLong" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5185761 | 0.00010048 | 0.0030385 | -0.039229 | -1.0735 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5185761 | 0.00010048 | 0.0030385 | -0.039229 | -1.0735 | + | /RICH/RiCKResLong/Rich1Gas/bottom/ckResAllPer | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 5185761 | 0.00010048 | 0.0030385 | -0.039229 | -1.0735 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 80 |-4.2059e-05 | 0.0024850 | 0.62093 | -0.025083 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 518 |-2.5695e-05 | 0.0021611 | 0.5158 | 0.35771 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 130682 | 0.00035694 | 0.0029414 | -0.1262 | -0.96301 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2346 |-6.2483e-05 | 0.0023031 | 0.31645 | -0.030446 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6616 | 8.936e-06 | 0.0025302 | 0.16243 | -0.38928 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22499 | 9.5977e-05 | 0.0027155 | 0.036413 | -0.6635 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 93013 | 0.0002742 | 0.0028616 | -0.057692 | -0.87495 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 626676 | 0.00045146 | 0.0029885 | -0.1472 | -1.005 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1838073 | 6.3553e-05 | 0.0030631 | -0.021948 | -1.1001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1593583 | -4.064e-05 | 0.0030626 | 0.0042757 | -1.1053 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/Inner/ | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 871675 | 2.7286e-05 | 0.0030206 | -0.028468 | -1.0578 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 80 |-4.2059e-05 | 0.0024850 | 0.62093 | -0.025083 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 518 |-2.5695e-05 | 0.0021611 | 0.5158 | 0.35771 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 130682 | 0.00035694 | 0.0029414 | -0.1262 | -0.96301 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 2346 |-6.2483e-05 | 0.0023031 | 0.31645 | -0.030446 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 6616 | 8.936e-06 | 0.0025302 | 0.16243 | -0.38928 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 22499 | 9.5977e-05 | 0.0027155 | 0.036413 | -0.6635 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 93013 | 0.0002742 | 0.0028616 | -0.057692 | -0.87495 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 626676 | 0.00045146 | 0.0029885 | -0.1472 | -1.005 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1838073 | 6.3553e-05 | 0.0030631 | -0.021948 | -1.1001 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1593583 | -4.064e-05 | 0.0030626 | 0.0042757 | -1.1053 | + | /RICH/RiCKResLong/Rich1Gas/bottom/cols/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 871675 | 2.7286e-05 | 0.0030206 | -0.028468 | -1.0578 | + | /RICH/RiCKResLong/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 10745834 | 7.3695e-05 | 0.0030305 | -0.021463 | -1.0622 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllBetaCut | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 10745834 | 7.3695e-05 | 0.0030305 | -0.021463 | -1.0622 | + | /RICH/RiCKResLong/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 10745834 | 7.3695e-05 | 0.0030305 | -0.021463 | -1.0622 | + | /RICH/RiCKResLong/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 10745834 | 3.1546 | 1.8269 | -0.0077467 | -1.1936 | + | /RICH/RiCKResLong/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 10745834 | 0.040908 | 0.010892 | -0.65199 | -0.39884 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5560073 | 4.8891e-05 | 0.0030228 | -0.0050126 | -1.0509 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5560073 | 4.8891e-05 | 0.0030228 | -0.0050126 | -1.0509 | + | /RICH/RiCKResLong/Rich1Gas/top/ckResAllPerPan | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5560073 | 4.8891e-05 | 0.0030228 | -0.0050126 | -1.0509 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31 | 0.00067833 | 0.0017197 | 0.86104 | 0.68094 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417 | 0.00043531 | 0.0020471 | -0.38877 | 0.80663 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 203598 | 0.00010697 | 0.0030023 | 0.018089 | -1.0626 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1772 | 0.00030087 | 0.0023618 | -0.15637 | -0.19739 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5996 | 0.00025669 | 0.0025472 | -0.13481 | -0.43557 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20395 | 0.0002742 | 0.0026594 | -0.11353 | -0.60839 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 75134 | 0.00038793 | 0.0028050 | -0.15009 | -0.78495 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 557689 | 0.00052719 | 0.0029639 | -0.1802 | -0.9586 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1862685 | 4.9102e-05 | 0.0030406 | -0.011355 | -1.0697 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1763945 |-9.5716e-05 | 0.0030373 | 0.045965 | -1.0646 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/Inner/ckR | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1068411 | -0.0001086 | 0.0030063 | 0.064915 | -1.0261 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 31 | 0.00067833 | 0.0017197 | 0.86104 | 0.68094 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 417 | 0.00043531 | 0.0020471 | -0.38877 | 0.80663 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 203598 | 0.00010697 | 0.0030023 | 0.018089 | -1.0626 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1772 | 0.00030087 | 0.0023618 | -0.15637 | -0.19739 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 5996 | 0.00025669 | 0.0025472 | -0.13481 | -0.43557 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 20395 | 0.0002742 | 0.0026594 | -0.11353 | -0.60839 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 75134 | 0.00038793 | 0.0028050 | -0.15009 | -0.78495 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 557689 | 0.00052719 | 0.0029639 | -0.1802 | -0.9586 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1862685 | 4.9102e-05 | 0.0030406 | -0.011355 | -1.0697 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1763945 |-9.5716e-05 | 0.0030373 | 0.045965 | -1.0646 | + | /RICH/RiCKResLong/Rich1Gas/top/cols/ckResAllC | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1068411 | -0.0001086 | 0.0030063 | 0.064915 | -1.0261 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1565651 | 5.2493e-05 | 0.0018724 | -0.023185 | -0.93975 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1565651 | 5.2493e-05 | 0.0018724 | -0.023185 | -0.93975 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1487812 | 4.1709e-05 | 0.0018804 | -0.017296 | -0.95494 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/ckResAl | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 77839 | 0.00021529 | 0.0017388 | -0.088977 | -0.66854 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 10700 |-4.3867e-05 | 0.0017772 | 0.018015 | -0.74401 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29844 | 0.00044759 | 0.0018303 | -0.24931 | -0.84074 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8403 | 0.00026214 | 0.0018586 | -0.13675 | -0.88419 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3387 | 0.00026594 | 0.0018592 | -0.16924 | -0.86197 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 33396 | 0.00023105 | 0.0017925 | -0.071648 | -0.7939 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 94861 | 7.6726e-05 | 0.0018572 | -0.035474 | -0.90076 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 169437 | 3.6118e-05 | 0.0018598 | -0.0077895 | -0.90963 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 244681 |-4.0973e-05 | 0.0018649 | 0.035635 | -0.91463 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 288432 |-0.00010053 | 0.0018908 | 0.057252 | -0.96497 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 305469 |-3.0224e-05 | 0.0019009 | 0.019362 | -1.0014 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 206251 | 0.00014244 | 0.0018925 | -0.074412 | -0.98953 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/In | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 92951 | 0.00026657 | 0.0018707 | -0.15209 | -0.92935 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1679 | 0.00016024 | 0.0016224 | -0.11267 | -0.34176 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2487 | 0.00015131 | 0.0017059 | -0.088008 | -0.61246 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1029 | 0.00032074 | 0.0016597 | -0.094546 | -0.67457 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 480 | 0.00028142 | 0.0017877 | -0.20602 | -0.64715 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2721 | 0.00024024 | 0.0016179 | -0.076472 | -0.41473 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5847 | 0.00023601 | 0.0016968 | -0.052373 | -0.60257 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9091 | 0.00026144 | 0.0017305 | -0.092227 | -0.68982 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12429 | 0.00021228 | 0.0017566 | -0.082637 | -0.67515 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 15345 | 0.00019752 | 0.0017707 | -0.088583 | -0.71668 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 13364 | 0.00017582 | 0.0017500 | -0.064964 | -0.69969 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8529 | 0.00024044 | 0.0017493 | -0.13175 | -0.69722 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/Ou | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4838 | 0.00023153 | 0.0017482 | -0.11942 | -0.6827 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 12379 |-9.4643e-06 | 0.0017538 | -0.0076739 | -0.69061 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 32331 | 0.00042444 | 0.0018226 | -0.234 | -0.83082 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9432 | 0.00026898 | 0.0018366 | -0.13538 | -0.85748 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 3867 | 0.00026797 | 0.0018500 | -0.17386 | -0.83601 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 36117 | 0.00023177 | 0.0017796 | -0.072208 | -0.76815 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 100708 | 8.8105e-05 | 0.0018466 | -0.039243 | -0.88132 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 178528 | 5.0195e-05 | 0.0018528 | -0.014878 | -0.89789 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 257110 |-2.4629e-05 | 0.0018592 | 0.02648 | -0.90277 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 303777 |-7.8994e-05 | 0.0018839 | 0.04467 | -0.95226 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 318833 |-1.9084e-05 | 0.0018936 | 0.01325 | -0.9879 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 214780 | 0.00014676 | 0.0018866 | -0.077399 | -0.97831 | + | /RICH/RiCKResLong/Rich2Gas/ASide-left/cols/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 97789 | 0.00026478 | 0.0018646 | -0.1504 | -0.91813 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1613074 | 5.0533e-05 | 0.0018688 | -0.021279 | -0.93177 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1613074 | 5.0533e-05 | 0.0018688 | -0.021279 | -0.93177 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1534602 | 3.841e-05 | 0.0018768 | -0.014125 | -0.94769 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/ckResA | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 78472 | 0.00023663 | 0.0017318 | -0.10625 | -0.63134 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3954 | 0.00029206 | 0.0017973 | -0.12134 | -0.83337 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 72176 | 0.0001146 | 0.0018272 | -0.044725 | -0.84505 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 20672 | 0.00022513 | 0.0017837 | -0.10686 | -0.75207 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 9382 |-5.2009e-05 | 0.0017214 | 0.019558 | -0.63247 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10969 | 0.00035019 | 0.0018639 | -0.1636 | -0.93771 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49783 | 0.00038248 | 0.0018449 | -0.19371 | -0.88939 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 120635 | 0.00017637 | 0.0018846 | -0.087691 | -0.96952 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 254449 | 9.078e-05 | 0.0018971 | -0.046403 | -1.0013 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 329273 |-6.5559e-05 | 0.0018925 | 0.040454 | -0.9817 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 284789 |-9.6105e-05 | 0.0018869 | 0.059291 | -0.94977 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 235367 | 3.093e-06 | 0.0018601 | 0.0016881 | -0.89809 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/I | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 143153 | 5.7247e-05 | 0.0018452 | -0.015456 | -0.88725 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 761 | 4.3579e-05 | 0.0017305 | 0.061394 | -0.73346 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5035 | 0.00023142 | 0.0016960 | -0.11163 | -0.55506 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2726 | 0.00013626 | 0.0016633 | -0.078847 | -0.38851 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1504 | 0.00010288 | 0.0015361 | -0.017464 | -0.25538 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1353 | 6.4551e-05 | 0.0017858 | 0.0048293 | -0.65441 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2822 | 0.00019038 | 0.0017669 | -0.087501 | -0.68708 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5891 | 0.0002622 | 0.0017052 | -0.12755 | -0.60575 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10033 | 0.00020609 | 0.0017551 | -0.11326 | -0.69684 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 13918 | 0.00022497 | 0.0017508 | -0.11042 | -0.67324 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 14256 | 0.00028068 | 0.0017325 | -0.11603 | -0.62223 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 11922 | 0.00025234 | 0.0017449 | -0.10332 | -0.65492 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/O | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8251 | 0.00028773 | 0.0017261 | -0.12369 | -0.6246 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 4715 | 0.00025274 | 0.0017892 | -0.090909 | -0.82767 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 77211 | 0.00012331 | 0.0018180 | -0.050621 | -0.82629 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 23398 | 0.00021335 | 0.0017684 | -0.10152 | -0.71055 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 10886 |-2.7672e-05 | 0.0016946 | 0.0076727 | -0.57979 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 12322 | 0.00031902 | 0.0018577 | -0.14333 | -0.91665 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 52605 | 0.00037265 | 0.0018415 | -0.18757 | -0.88158 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 126526 | 0.00018102 | 0.0018754 | -0.090639 | -0.95254 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 264482 | 9.5877e-05 | 0.0018912 | -0.049882 | -0.9898 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 343191 |-4.9966e-05 | 0.0018863 | 0.030683 | -0.96985 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 299045 |-7.0459e-05 | 0.0018791 | 0.044154 | -0.93528 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 247289 | 1.8962e-05 | 0.0018540 | -0.0066665 | -0.88566 | + | /RICH/RiCKResLong/Rich2Gas/CSide-right/cols/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 151404 | 7.2413e-05 | 0.0018385 | -0.024137 | -0.87335 | + | /RICH/RiCKResLong/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 3178725 | 5.1497e-05 | 0.0018706 | -0.022217 | -0.93571 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllBetaCut | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3178725 | 5.1497e-05 | 0.0018706 | -0.022217 | -0.93571 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 3022414 | 4.0033e-05 | 0.0018785 | -0.015684 | -0.95127 | + | /RICH/RiCKResLong/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 156311 | 0.00022604 | 0.0017353 | -0.0977 | -0.65006 | + | /RICH/RiCKResLong/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 3178725 | 3.1373 | 1.8155 | 0.0044418 | -1.1886 | + | /RICH/RiCKResLong/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 3178725 | 0.024929 | 0.0054867 | -0.56652 | -0.58231 | +RiCKResLongTight INFO 1D histograms in directory "RiCKResLongTight" : 141 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1987443 | 6.8596e-05 | 0.0030253 | -0.023442 | -1.0589 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1987443 | 6.8596e-05 | 0.0030253 | -0.023442 | -1.0589 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/ckResA | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1987443 | 6.8596e-05 | 0.0030253 | -0.023442 | -1.0589 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 52 | 0.000286 | 0.0025907 | 0.47412 | -0.13385 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 279 | 1.0532e-05 | 0.0018879 | 0.72664 | 0.13975 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 44529 | 0.00034135 | 0.0029255 | -0.11576 | -0.94856 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1563 | 4.1574e-06 | 0.0022819 | 0.30855 | -0.034298 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4905 |-9.3967e-06 | 0.0025756 | 0.17563 | -0.44353 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15929 | 3.7055e-05 | 0.0027093 | 0.045493 | -0.63805 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54651 | 0.00019439 | 0.0028589 | -0.036541 | -0.87021 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 277509 | 0.00033911 | 0.0029910 | -0.10606 | -1.0089 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 694337 | 2.7765e-05 | 0.0030581 | -0.0064459 | -1.0957 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 582818 |-5.5322e-05 | 0.0030531 | 0.013747 | -1.0928 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/I | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310871 | 1.0885e-05 | 0.0030044 | -0.016607 | -1.0392 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 52 | 0.000286 | 0.0025907 | 0.47412 | -0.13385 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 279 | 1.0532e-05 | 0.0018879 | 0.72664 | 0.13975 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 44529 | 0.00034135 | 0.0029255 | -0.11576 | -0.94856 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 1563 | 4.1574e-06 | 0.0022819 | 0.30855 | -0.034298 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 4905 |-9.3967e-06 | 0.0025756 | 0.17563 | -0.44353 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 15929 | 3.7055e-05 | 0.0027093 | 0.045493 | -0.63805 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 54651 | 0.00019439 | 0.0028589 | -0.036541 | -0.87021 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 277509 | 0.00033911 | 0.0029910 | -0.10606 | -1.0089 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 694337 | 2.7765e-05 | 0.0030581 | -0.0064459 | -1.0957 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 582818 |-5.5322e-05 | 0.0030531 | 0.013747 | -1.0928 | + | /RICH/RiCKResLongTight/Rich1Gas/bottom/cols/c | "Rich1Gas bottom Rec-Exp CKTheta - All ph..." | 310871 | 1.0885e-05 | 0.0030044 | -0.016607 | -1.0392 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAll | "Rich1Gas Rec-Exp CKTheta - All photons;d..." | 4115134 | 4.5543e-05 | 0.0030171 | -0.0087163 | -1.047 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllBetaC | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 4115134 | 4.5543e-05 | 0.0030171 | -0.0087163 | -1.047 | + | /RICH/RiCKResLongTight/Rich1Gas/ckResAllInner | "Rich1Gas Rec-Exp CKTheta - All photons -..." | 4115134 | 4.5543e-05 | 0.0030171 | -0.0087163 | -1.047 | + | /RICH/RiCKResLongTight/Rich1Gas/phiRec | "Rich1Gas Reconstructed CKPhi - All photo..." | 4115134 | 3.1537 | 1.8296 | -0.0067427 | -1.1957 | + | /RICH/RiCKResLongTight/Rich1Gas/thetaRec | "Rich1Gas Reconstructed CKTheta - All pho..." | 4115134 | 0.041267 | 0.010725 | -0.68933 | -0.30646 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2127691 | 2.4162e-05 | 0.0030094 | 0.004931 | -1.0352 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2127691 | 2.4162e-05 | 0.0030094 | 0.004931 | -1.0352 | + | /RICH/RiCKResLongTight/Rich1Gas/top/ckResAllP | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 2127691 | 2.4162e-05 | 0.0030094 | 0.004931 | -1.0352 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27 | 0.0005445 | 0.0016520 | 1.0508 | 1.4951 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 211 | 0.00028003 | 0.0018416 | -0.16975 | 0.99649 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73291 | 3.4392e-05 | 0.0029851 | 0.044487 | -1.0406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1087 | 0.00024794 | 0.0023075 | -0.13899 | -0.12373 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4152 | 0.00021796 | 0.0025496 | -0.10604 | -0.41835 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13928 | 0.00024504 | 0.0026619 | -0.10408 | -0.62533 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 44447 | 0.00028759 | 0.0028195 | -0.11801 | -0.80474 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 244901 | 0.00041504 | 0.0029639 | -0.14016 | -0.9653 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 707677 | 1.8254e-05 | 0.0030326 | 0.0028576 | -1.0611 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 651368 |-0.00010393 | 0.0030295 | 0.049658 | -1.0535 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/Inne | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 386602 |-0.00012288 | 0.0029945 | 0.072285 | -1.0111 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 27 | 0.0005445 | 0.0016520 | 1.0508 | 1.4951 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 211 | 0.00028003 | 0.0018416 | -0.16975 | 0.99649 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 73291 | 3.4392e-05 | 0.0029851 | 0.044487 | -1.0406 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 1087 | 0.00024794 | 0.0023075 | -0.13899 | -0.12373 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 4152 | 0.00021796 | 0.0025496 | -0.10604 | -0.41835 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 13928 | 0.00024504 | 0.0026619 | -0.10408 | -0.62533 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 44447 | 0.00028759 | 0.0028195 | -0.11801 | -0.80474 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 244901 | 0.00041504 | 0.0029639 | -0.14016 | -0.9653 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 707677 | 1.8254e-05 | 0.0030326 | 0.0028576 | -1.0611 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 651368 |-0.00010393 | 0.0030295 | 0.049658 | -1.0535 | + | /RICH/RiCKResLongTight/Rich1Gas/top/cols/ckRe | "Rich1Gas top Rec-Exp CKTheta - All photo..." | 386602 |-0.00012288 | 0.0029945 | 0.072285 | -1.0111 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 723632 | 3.8134e-05 | 0.0018758 | -0.012832 | -0.94786 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 723632 | 3.8134e-05 | 0.0018758 | -0.012832 | -0.94786 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 675019 | 2.566e-05 | 0.0018874 | -0.0058396 | -0.96926 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/ck | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 48613 | 0.00017661 | 0.0017363 | -0.069604 | -0.66754 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7952 |-3.3363e-05 | 0.0017820 | 0.021771 | -0.74167 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9963 | 0.00030115 | 0.0018794 | -0.18692 | -0.91831 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4903 | 0.00017912 | 0.0018558 | -0.09225 | -0.88178 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2093 | 0.0002227 | 0.0018474 | -0.14086 | -0.85531 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 24338 | 0.0002321 | 0.0017908 | -0.068095 | -0.79565 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 63627 | 6.8798e-06 | 0.0018488 | 0.0089481 | -0.8896 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 95570 |-6.1323e-05 | 0.0018680 | 0.046608 | -0.93151 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 112977 | -7.621e-05 | 0.0018839 | 0.047505 | -0.9483 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 129480 |-0.00011171 | 0.0019043 | 0.063526 | -0.99385 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 132428 | 2.0676e-05 | 0.0019124 | 0.0011462 | -1.0284 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 65166 | 0.00028298 | 0.0019004 | -0.15474 | -0.98469 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26522 | 0.0002332 | 0.0018631 | -0.13938 | -0.92442 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1338 | 0.0001448 | 0.0016538 | -0.1371 | -0.40958 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 1587 | 9.9733e-05 | 0.0017067 | -0.086581 | -0.61031 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 697 | 0.00026521 | 0.0016385 | -0.061906 | -0.66467 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 326 | 0.00018278 | 0.0017667 | -0.11234 | -0.63167 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2079 | 0.00018969 | 0.0016274 | -0.081161 | -0.42452 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 4135 | 0.00022409 | 0.0017023 | -0.063287 | -0.63216 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 6067 | 0.00023391 | 0.0017484 | -0.071856 | -0.73277 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7904 | 0.00021337 | 0.0017612 | -0.07855 | -0.67576 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 8916 | 0.0001465 | 0.0017704 | -0.046731 | -0.72699 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 7514 | 9.0711e-05 | 0.0017465 | -0.038857 | -0.69354 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5099 | 0.00018772 | 0.0017152 | -0.10616 | -0.64546 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2951 | 0.00017522 | 0.0017352 | -0.08088 | -0.65756 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 9290 |-1.7845e-06 | 0.0017613 | -0.0077529 | -0.69591 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 11550 | 0.00026987 | 0.0018551 | -0.16708 | -0.88074 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 5600 | 0.00019021 | 0.0018295 | -0.093197 | -0.85029 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 2419 | 0.00021712 | 0.0018364 | -0.13667 | -0.827 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 26417 | 0.0002287 | 0.0017783 | -0.068022 | -0.76975 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 67762 | 2.3035e-05 | 0.0018392 | 0.0010262 | -0.87308 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 101637 |-3.8361e-05 | 0.0018607 | 0.034834 | -0.91976 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 120881 |-4.8878e-05 | 0.0018746 | 0.032732 | -0.92878 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 138396 |-8.8597e-05 | 0.0018942 | 0.050957 | -0.97511 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 139942 | 2.4868e-05 | 0.0019030 | -0.0017439 | -1.0112 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 70265 | 0.00027574 | 0.0018872 | -0.15008 | -0.96299 | + | /RICH/RiCKResLongTight/Rich2Gas/ASide-left/co | "Rich2Gas ASide-left Rec-Exp CKTheta - Al..." | 29473 | 0.00022703 | 0.0018500 | -0.13312 | -0.89967 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 730871 | 3.7803e-05 | 0.0018646 | -0.0084691 | -0.92672 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 730871 | 3.7803e-05 | 0.0018646 | -0.0084691 | -0.92672 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 682936 | 2.3251e-05 | 0.0018764 | 0.00027518 | -0.94927 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 47935 | 0.00020341 | 0.0017162 | -0.082887 | -0.61289 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2418 | 0.00025635 | 0.0018291 | -0.093848 | -0.89414 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 49820 | 5.8804e-05 | 0.0018236 | -0.018694 | -0.84079 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 15517 | 0.00022448 | 0.0017664 | -0.096978 | -0.72999 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6949 |-7.7676e-05 | 0.0016983 | 0.026459 | -0.5895 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5769 | 0.00018318 | 0.0018911 | -0.053602 | -1.004 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17076 | 0.000276 | 0.0018523 | -0.12828 | -0.91089 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 36151 | 0.00011847 | 0.0018865 | -0.054205 | -0.96762 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 86437 | 0.00022944 | 0.0019082 | -0.11758 | -1.0106 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 144894 |-5.3548e-05 | 0.0018985 | 0.040213 | -0.99887 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 125711 |-0.00010002 | 0.0018939 | 0.069623 | -0.96855 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 108473 |-3.8834e-05 | 0.0018634 | 0.036706 | -0.91117 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 83721 |-3.1739e-05 | 0.0018401 | 0.028041 | -0.87743 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 553 | 3.4211e-06 | 0.0017196 | 0.081544 | -0.68782 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3638 | 0.0002358 | 0.0016895 | -0.077953 | -0.58344 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2115 | 0.00012701 | 0.0016451 | -0.060332 | -0.32709 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1147 | 0.00017734 | 0.0015213 | -0.038352 | -0.25986 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 881 | 7.8144e-05 | 0.0018141 | 0.001129 | -0.69967 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 1830 | 0.00019038 | 0.0017818 | -0.086035 | -0.74289 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 3573 | 0.00025887 | 0.0017116 | -0.12869 | -0.60174 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5632 | 0.0001257 | 0.0017502 | -0.096458 | -0.68992 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7568 | 0.00012077 | 0.0017200 | -0.062866 | -0.62909 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8255 | 0.00022431 | 0.0017144 | -0.078282 | -0.60703 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 7289 | 0.00027673 | 0.0017290 | -0.085815 | -0.6477 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 5454 | 0.00026324 | 0.0017070 | -0.10879 | -0.61129 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 2971 | 0.00020702 | 0.0018110 | -0.056683 | -0.86725 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 53458 | 7.283e-05 | 0.0018139 | -0.025481 | -0.8228 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 17632 | 0.00021104 | 0.0017505 | -0.090141 | -0.6827 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 8096 |-3.8236e-05 | 0.0016747 | 0.0070627 | -0.54523 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 6650 | 0.00016918 | 0.0018813 | -0.045507 | -0.96828 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 18906 | 0.00026774 | 0.0018458 | -0.1237 | -0.89636 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 39724 | 0.00013311 | 0.0018695 | -0.063948 | -0.93528 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 92069 | 0.00022284 | 0.0018987 | -0.11501 | -0.99314 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 152462 |-4.3275e-05 | 0.0018889 | 0.032885 | -0.98157 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 133966 |-7.2118e-05 | 0.0018814 | 0.052712 | -0.94638 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 115762 |-1.0706e-05 | 0.0018540 | 0.022247 | -0.89328 | + | /RICH/RiCKResLongTight/Rich2Gas/CSide-right/c | "Rich2Gas CSide-right Rec-Exp CKTheta - A..." | 89175 |-8.6998e-06 | 0.0018317 | 0.014688 | -0.86216 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAll | "Rich2Gas Rec-Exp CKTheta - All photons;d..." | 1454503 | 3.7967e-05 | 0.0018702 | -0.010655 | -0.93728 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllBetaC | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1454503 | 3.7967e-05 | 0.0018702 | -0.010655 | -0.93728 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllInner | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 1357955 | 2.4446e-05 | 0.0018819 | -0.0027748 | -0.95924 | + | /RICH/RiCKResLongTight/Rich2Gas/ckResAllOuter | "Rich2Gas Rec-Exp CKTheta - All photons -..." | 96548 | 0.00018995 | 0.0017264 | -0.076366 | -0.64075 | + | /RICH/RiCKResLongTight/Rich2Gas/phiRec | "Rich2Gas Reconstructed CKPhi - All photo..." | 1454503 | 3.1341 | 1.8168 | 0.0081304 | -1.1864 | + | /RICH/RiCKResLongTight/Rich2Gas/thetaRec | "Rich2Gas Reconstructed CKTheta - All pho..." | 1454503 | 0.025054 | 0.0054407 | -0.60301 | -0.50301 | +RiTkDetectableYieldsLong INFO 1D histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1911 | 33.373 | 22.542 | 0.21338 | -1.0715 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0);Phot..." | 19515 | 62.548 | 10.086 | -0.37737 | -0.87934 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19515 | 51.456 | 18.946 | -0.28717 | -1.1107 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19515 | 61.637 | 9.9351 | -0.37034 | -0.91352 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19515 | 60.971 | 9.8027 | -0.372 | -0.90302 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0);Photon..." | 8497 | 39.618 | 23.407 | -0.071092 | -1.175 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1223 | 19.635 | 13.457 | 0.32129 | -1.0201 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0);Phot..." | 14195 | 54.507 | 2.2967 | 0.8095 | 1.7898 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14188 | 37.334 | 9.3751 | -0.23354 | -1.0667 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14195 | 53.72 | 2.1546 | 0.74916 | 2.0938 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14195 | 53.135 | 2.1041 | 0.61806 | 2.1505 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0);Photon..." | 6682 | 24.508 | 14.200 | 0.010822 | -1.0964 | +RiTkEmittedYieldsLong INFO 1D histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 2008 | 226 | 159.70 | 0.27201 | -1.0472 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0);Phot..." | 19515 | 596.22 | 20.869 | -8.344 | 95.692 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19515 | 379.21 | 137.85 | -0.31455 | -1.0787 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19515 | 586.22 | 20.933 | -7.8372 | 87.015 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19515 | 578.83 | 22.184 | -6.3253 | 64.581 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0);Photon..." | 8805 | 276.69 | 169.60 | -0.034198 | -1.1827 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1307 | 117.84 | 86.353 | 0.36785 | -1.0176 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0);Phot..." | 14217 | 343.14 | 14.870 | 0.95374 | 2.722 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14217 | 235.98 | 58.482 | -0.22999 | -1.0671 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14217 | 338.25 | 13.962 | 0.89777 | 3.0101 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14217 | 334.53 | 13.685 | 0.80395 | 3.0881 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0);Photon..." | 7012 | 148.97 | 92.054 | 0.031048 | -1.1347 | +RiTkMaterialLong INFO 1D histograms in directory "RiTkMaterialLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkMaterialLong/Rich1Gas/PathL | "Rich1Gas Track pathlength" | 4193 | 1073.9 | 23.722 | 0.82966 | 0.96191 | + | /RICH/RiTkMaterialLong/Rich2Gas/PathL | "Rich2Gas Track pathlength" | 7696 | 1898.5 | 83.994 | 0.59987 | 2.5571 | +RiTkSignalYieldsLong INFO 1D histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0);Phot..." | 1911 | 22.818 | 15.596 | 0.288 | -0.92973 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0);Phot..." | 19515 | 58.632 | 4.5982 | -1.2382 | 3.7553 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0);Photon Y..." | 19515 | 36.993 | 14.091 | -0.2292 | -1.0239 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0);Photon Y..." | 19515 | 57.636 | 4.5416 | -1.1842 | 3.5688 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0);Photon Y..." | 19515 | 56.9 | 4.5627 | -1.087 | 3.1927 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0);Photon..." | 8497 | 27.749 | 16.651 | 0.015289 | -1.0909 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0);Phot..." | 1223 | 13.207 | 9.1176 | 0.34668 | -0.99129 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0);Phot..." | 14195 | 36.025 | 4.4374 | -1.3269 | 4.1214 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0);Photon Y..." | 14188 | 24.801 | 6.8460 | -0.17629 | -0.77183 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0);Photon Y..." | 14195 | 35.505 | 4.3538 | -1.3908 | 4.3182 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0);Photon Y..." | 14195 | 35.123 | 4.3022 | -1.4218 | 4.4317 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0);Photon..." | 6682 | 16.42 | 9.6180 | 0.060708 | -1.0286 | +RichMassRingsLong INFO 1D histograms in directory "RichMassRingsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 118128 | -0.016568 | 0.56938 | 2.5589 | 15.469 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1717320 | -0.0060849 | 0.71525 | 1.7345 | 12.525 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 1458760 | -0.0085404 | 0.63590 | 2.2116 | 12.909 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1717320 | -0.0060849 | 0.71525 | 1.7345 | 12.525 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1717320 | -0.0060849 | 0.71525 | 1.7345 | 12.525 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 563696 | -0.011818 | 0.60910 | 2.4171 | 13.507 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 67600 | 0.00072485 | 7.1296 | 0.93487 | 0.5376 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1250712 | -0.17914 | 7.8239 | 0.30257 | 1.0534 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1094576 | -0.0046673 | 7.0088 | 0.76324 | 0.6111 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1250712 | -0.17914 | 7.8239 | 0.30257 | 1.0534 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1250712 | -0.17914 | 7.8239 | 0.30257 | 1.0534 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 411416 | -0.0097344 | 6.7653 | 0.88586 | 1.3319 | +RichRecPixBkgsLong INFO 1D histograms in directory "RichRecPixBkgsLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixBkgsLong/Rich1/pixBkg | "Rich1 Pixel Background Likelihood" | 7553874 | 0.11928 | 0.10108 | 1.255 | 1.4144 | + | /RICH/RichRecPixBkgsLong/Rich2/pixBkg | "Rich2 Pixel Background Likelihood" | 3784902 | 0.051544 | 0.035612 | 1.4737 | 3.3265 | +RichRecPixelClusters INFO 1D histograms in directory "RichRecPixelClusters" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelClusters/Rich1/clusterSize | "Rich1 Pixel Cluster Sizes" | 5454204 | 1.385 | 1.3193 | 10.3 | 199.51 | + | /RICH/RichRecPixelClusters/Rich2/clusterSize | "Rich2 Pixel Cluster Sizes" | 3342309 | 1.1324 | 0.45279 | 5.1814 | 48.718 | +RichRecPixelQC INFO 1D histograms in directory "RichRecPixelQC" : 21 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/bottom/pixXGlo | "Rich1 bottom Global X hits;Global X / mm" | 3694786 | -6.3116 | 241.06 | -0.02764 | -0.0056357 | + | /RICH/RichRecPixelQC/Rich1/bottom/pixYGlo | "Rich1 bottom Global Y hits;Global Y / mm" | 3694786 | -1358.9 | 65.559 | -0.79792 | 0.25708 | + | /RICH/RichRecPixelQC/Rich1/nActivePDs | "Rich1 # Active PDs (nHits>0)" | 4963 | 359.42 | 487.08 | 1.035 | -0.30411 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixs | "Rich1 Overall occupancy (nHits>0)" | 3439 | 2213.3 | 2833.9 | 2.1 | 8.2595 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerInner | "Rich1 Average overall Inner PD occupancy..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/nTotalPixsPerPD | "Rich1 Average overall PD occupancy (nHit..." | 1783805 | 4.2347 | 4.8443 | 2.6917 | 9.6113 | + | /RICH/RichRecPixelQC/Rich1/pixXLoc | "Rich1 Local X hits;Local X / mm" | 7553874 | -7.0185 | 239.76 | -0.010029 | 0.017329 | + | /RICH/RichRecPixelQC/Rich1/pixYLoc | "Rich1 Local Y hits;Local Y / mm" | 7553874 | 0.93082 | 255.99 | -0.023116 | -0.85543 | + | /RICH/RichRecPixelQC/Rich1/top/pixXGlo | "Rich1 top Global X hits;Global X / mm" | 3859088 | -7.5671 | 239.29 | 0.0061815 | 0.044222 | + | /RICH/RichRecPixelQC/Rich1/top/pixYGlo | "Rich1 top Global Y hits;Global Y / mm" | 3859088 | 1356 | 65.993 | 0.78835 | 0.23847 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixXGlo | "Rich2 ASide-left Global X hits;Global X ..." | 1867792 | 3906.6 | 84.057 | -0.15555 | -0.91566 | + | /RICH/RichRecPixelQC/Rich2/ASide-left/pixYGlo | "Rich2 ASide-left Global Y hits;Global Y ..." | 1867792 | 11.602 | 263.93 | 0.0095413 | 0.22711 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixXGl | "Rich2 CSide-right Global X hits;Global X..." | 1917110 | -3905.2 | 82.964 | 0.19214 | -0.86555 | + | /RICH/RichRecPixelQC/Rich2/CSide-right/pixYGl | "Rich2 CSide-right Global Y hits;Global Y..." | 1917110 | 14.034 | 266.01 | 0.010153 | 0.20255 | + | /RICH/RichRecPixelQC/Rich2/nActivePDs | "Rich2 # Active PDs (nHits>0)" | 4963 | 288.65 | 379.17 | 0.8383 | -0.95515 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixs | "Rich2 Overall occupancy (nHits>0)" | 2821 | 1352.2 | 1294.1 | 0.84143 | -0.23701 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerInner | "Rich2 Average overall Inner PD occupancy..." | 935376 | 2.6945 | 2.0489 | 1.7581 | 4.0413 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerOuter | "Rich2 Average overall Outer PD occupancy..." | 497196 | 2.5433 | 2.0215 | 2.1188 | 6.5646 | + | /RICH/RichRecPixelQC/Rich2/nTotalPixsPerPD | "Rich2 Average overall PD occupancy (nHit..." | 1432572 | 2.642 | 2.0407 | 1.8779 | 4.8567 | + | /RICH/RichRecPixelQC/Rich2/pixXLoc | "Rich2 Local X hits;Local X / mm" | 3784902 | -7.9484 | 466.22 | 0.027524 | -1.5389 | + | /RICH/RichRecPixelQC/Rich2/pixYLoc | "Rich2 Local Y hits;Local Y / mm" | 3784902 | 12.572 | 264.70 | 0.0086346 | 0.21105 | +RichRefCalibLong INFO 1D histograms in directory "RichRefCalibLong" : 14 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaExp | "Rich1Gas Exp CKTheta;Cherenkov theta / r..." | 10745834 | 0.052528 | 0.00051435 | -0.33817 | -1.0768 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRec | "Rich1Gas Rec CKTheta;Cherenkov theta / r..." | 10745834 | 0.052542 | 0.0067147 | -0.053936 | -1.0372 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaRes | "Rich1Gas Rec-Exp CKTheta;delta(Cherenkov..." | 10745834 | 7.3732e-05 | 0.0030305 | -0.021462 | -1.0621 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 2834225 | 2.7266e-05 | 0.0030332 | 0.010837 | -1.0649 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 2723182 | 7.8637e-05 | 0.0030134 | -0.023419 | -1.0368 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 2653005 | 0.00013493 | 0.0030532 | -0.065425 | -1.0908 | + | /RICH/RichRefCalibLong/Rich1Gas/ckThetaResQua | "Rich1Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 2535422 | 5.6084e-05 | 0.0030209 | -0.0091672 | -1.0501 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaExp | "Rich2Gas Exp CKTheta;Cherenkov theta / r..." | 3178725 | 0.029445 | 0.00022791 | -0.20376 | -1.1145 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRec | "Rich2Gas Rec CKTheta;Cherenkov theta / r..." | 3178725 | 0.028078 | 0.0041035 | -0.21137 | -1.0066 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaRes | "Rich2Gas Rec-Exp CKTheta;delta(Cherenkov..." | 3178725 | 5.1533e-05 | 0.0018706 | -0.022256 | -0.93558 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 797672 | 5.1993e-05 | 0.0018671 | -0.023204 | -0.93131 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 810246 | 5.3457e-05 | 0.0018670 | -0.024352 | -0.9266 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x>0 ..." | 767192 | 5.1046e-05 | 0.0018790 | -0.021544 | -0.94883 | + | /RICH/RichRefCalibLong/Rich2Gas/ckThetaResQua | "Rich2Gas Rec-Exp CKTheta | Quadrant x<0 ..." | 803615 | 4.9598e-05 | 0.0018698 | -0.019884 | -0.93607 | +RichTkGeomLong INFO 1D histograms in directory "RichTkGeomLong" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkGeomLong/Rich1Gas/tkEntryZ | "Rich1Gas Track Entry point Z;Track Entry..." | 19515 | 975.1 | 32.711 | 11.808 | 149.71 | + | /RICH/RichTkGeomLong/Rich1Gas/tkExitZ | "Rich1Gas Track Exit point Z;Track Exit P..." | 19515 | 2044.9 | 14.060 | 1.2643 | 3.2775 | + | /RICH/RichTkGeomLong/Rich1Gas/tkPathLength | "Rich1Gas Track Path Length;Track Path Le..." | 19515 | 1073.9 | 37.712 | -8.3029 | 95.268 | + | /RICH/RichTkGeomLong/Rich2Gas/tkEntryZ | "Rich2Gas Track Entry point Z;Track Entry..." | 14217 | 9495 | 0.0000 | 0 | 0 | + | /RICH/RichTkGeomLong/Rich2Gas/tkExitZ | "Rich2Gas Track Exit point Z;Track Exit P..." | 14217 | 11373 | 78.137 | 0.83634 | 2.1834 | + | /RICH/RichTkGeomLong/Rich2Gas/tkPathLength | "Rich2Gas Track Path Length;Track Path Le..." | 14217 | 1879.4 | 81.337 | 0.96332 | 2.7882 | +RichTkSelEffLong INFO 1D histograms in directory "RichTkSelEffLong" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/nRichTracks | "# Rich Tracks / Event" | 4963 | 5.4838 | 9.1525 | 1.8233 | 2.6457 | + | /RICH/RichTkSelEffLong/nTracks | "# Tracks / Event" | 4963 | 6.8336 | 11.259 | 1.7931 | 2.5644 | +RiTkDetectableYieldsLong INFO 1D profile histograms in directory "RiTkDetectableYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/deute | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1844 | 57152 | 15069. | 0.85899 | -0.029824 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/elect | "Rich1Gas electron Photon Yield (>0) V P ..." | 19448 | 19900 | 11628. | 2.5317 | 8.5057 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/kaon/ | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19448 | 23180 | 13016. | 2.1302 | 5.8319 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/muon/ | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19448 | 19996 | 11684. | 2.5152 | 8.385 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/pion/ | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19448 | 20070 | 11726. | 2.5027 | 8.2948 | + | /RICH/RiTkDetectableYieldsLong/Rich1Gas/proto | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8430 | 35213 | 14856. | 1.5844 | 2.6438 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/deute | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 982 | 81360 | 10264. | 0.017836 | -1.1103 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/elect | "Rich2Gas electron Photon Yield (>0) V P ..." | 13954 | 34167 | 14693. | 1.7422 | 3.1704 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/kaon/ | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13947 | 37413 | 15826. | 1.4487 | 1.9412 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/muon/ | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13954 | 34269 | 14741. | 1.7308 | 3.1175 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/pion/ | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13954 | 34348 | 14777. | 1.7223 | 3.0778 | + | /RICH/RiTkDetectableYieldsLong/Rich2Gas/proto | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6441 | 53559 | 15932. | 0.90824 | 0.11559 | +RiTkEmittedYieldsLong INFO 1D profile histograms in directory "RiTkEmittedYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/deuteron | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1941 | 56820 | 15111. | 0.86519 | -0.0079598 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/electron | "Rich1Gas electron Photon Yield (>0) V P ..." | 19448 | 19900 | 11628. | 2.5317 | 8.5057 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/kaon/yie | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19448 | 23105 | 12995. | 2.1361 | 5.8684 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/muon/yie | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19448 | 19995 | 11683. | 2.5154 | 8.3868 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/pion/yie | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19448 | 20068 | 11725. | 2.5031 | 8.2978 | + | /RICH/RiTkEmittedYieldsLong/Rich1Gas/proton/y | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8738 | 35016 | 14841. | 1.5906 | 2.6768 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/deuteron | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 1066 | 81080 | 10388. | 0.023949 | -1.1081 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/electron | "Rich2Gas electron Photon Yield (>0) V P ..." | 13976 | 34154 | 14686. | 1.7436 | 3.1774 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/kaon/yie | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13976 | 37348 | 15808. | 1.4534 | 1.9592 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/muon/yie | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13976 | 34255 | 14733. | 1.7323 | 3.1248 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/pion/yie | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13976 | 34333 | 14769. | 1.7239 | 3.0854 | + | /RICH/RiTkEmittedYieldsLong/Rich2Gas/proton/y | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6771 | 53360 | 15950. | 0.91281 | 0.13029 | +RiTkSignalYieldsLong INFO 1D profile histograms in directory "RiTkSignalYieldsLong" : 12 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/deuteron/ | "Rich1Gas deuteron Photon Yield (>0) V P ..." | 1844 | 57154 | 15114. | 0.8629 | -0.030705 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/electron/ | "Rich1Gas electron Photon Yield (>0) V P ..." | 19448 | 19911 | 11644. | 2.5302 | 8.4788 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/kaon/yiel | "Rich1Gas kaon Photon Yield (>0) V P (MeV..." | 19448 | 23190 | 13036. | 2.1285 | 5.8064 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/muon/yiel | "Rich1Gas muon Photon Yield (>0) V P (MeV..." | 19448 | 20007 | 11701. | 2.5136 | 8.3582 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/pion/yiel | "Rich1Gas pion Photon Yield (>0) V P (MeV..." | 19448 | 20081 | 11743. | 2.5011 | 8.268 | + | /RICH/RiTkSignalYieldsLong/Rich1Gas/proton/yi | "Rich1Gas proton Photon Yield (>0) V P (M..." | 8430 | 35257 | 14876. | 1.5773 | 2.6107 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/deuteron/ | "Rich2Gas deuteron Photon Yield (>0) V P ..." | 982 | 81354 | 10243. | 0.014322 | -1.1046 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/electron/ | "Rich2Gas electron Photon Yield (>0) V P ..." | 13954 | 34238 | 14724. | 1.7356 | 3.1423 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/kaon/yiel | "Rich2Gas kaon Photon Yield (>0) V P (MeV..." | 13947 | 37444 | 15834. | 1.4488 | 1.9419 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/muon/yiel | "Rich2Gas muon Photon Yield (>0) V P (MeV..." | 13954 | 34340 | 14772. | 1.7244 | 3.0899 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/pion/yiel | "Rich2Gas pion Photon Yield (>0) V P (MeV..." | 13954 | 34418 | 14808. | 1.7159 | 3.0506 | + | /RICH/RiTkSignalYieldsLong/Rich2Gas/proton/yi | "Rich2Gas proton Photon Yield (>0) V P (M..." | 6441 | 53525 | 15920. | 0.91282 | 0.12912 | +RichMassRingsLong INFO 1D profile histograms in directory "RichMassRingsLong" : 16 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichMassRingsLong/Rich1Gas/deuteron/pnt | "Rich1Gas deuteron Ring - Segment local p..." | 118128 |-4.7366e+13 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/electron/pnt | "Rich1Gas electron Ring - Segment local p..." | 1717320 | 1.1845e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/kaon/pntSegS | "Rich1Gas kaon Ring - Segment local point..." | 1458760 |-2.3866e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/muon/pntSegS | "Rich1Gas muon Ring - Segment local point..." | 1717320 | 1.1845e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/pion/pntSegS | "Rich1Gas pion Ring - Segment local point..." | 1717320 | 1.1845e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/proton/pntSe | "Rich1Gas proton Ring - Segment local poi..." | 563696 | 1.1558e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich1Gas/ringReuse | "Rich1Gas Ring Reuse (%) V Mass Hypothesi..." | 88873 | 1.117 | 0.93826 | 0.37461 | -0.47428 | + | /RICH/RichMassRingsLong/Rich1Gas/sepVckt | "Rich1Gas Local Seperation V CK Theta" | 88187 | 0.049891 | 0.0068132 | -2.6297 | 7.05 | + | /RICH/RichMassRingsLong/Rich2Gas/deuteron/pnt | "Rich2Gas deuteron Ring - Segment local p..." | 67600 | 9.2924e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/electron/pnt | "Rich2Gas electron Ring - Segment local p..." | 1250712 | 1.2579e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/kaon/pntSegS | "Rich2Gas kaon Ring - Segment local point..." | 1094576 | 2.3545e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/muon/pntSegS | "Rich2Gas muon Ring - Segment local point..." | 1250712 | 1.2579e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/pion/pntSegS | "Rich2Gas pion Ring - Segment local point..." | 1250712 | 1.2579e+15 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/proton/pntSe | "Rich2Gas proton Ring - Segment local poi..." | 411416 |-7.0875e+14 | 0.0000 | 0 | 0 | + | /RICH/RichMassRingsLong/Rich2Gas/ringReuse | "Rich2Gas Ring Reuse (%) V Mass Hypothesi..." | 64782 | 1.2272 | 1.0267 | 0.42619 | -0.48835 | + | /RICH/RichMassRingsLong/Rich2Gas/sepVckt | "Rich2Gas Local Seperation V CK Theta" | 63275 | 0.02807 | 0.0033395 | -2.3745 | 5.4089 | +RichRecPixelQC INFO 1D profile histograms in directory "RichRecPixelQC" : 8 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichRecPixelQC/Rich1/hitDensityX | "Rich1 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/hitDensityY | "Rich1 <#hits/mm^2> (Y);Local Y / mm;hits..." | 11911200 | 28.426 | 258.58 | -0.018554 | -0.82646 | + | /RICH/RichRecPixelQC/Rich1/pdOccXLoc | "Rich1 PD Average Occupancy (X);Local X /..." | 12407500 | 19.26 | 241.34 | -0.010121 | 0.0054274 | + | /RICH/RichRecPixelQC/Rich1/pdOccYLoc | "Rich1 PD Average Occupancy (Y);Local Y /..." | 12407500 | 28.323 | 259.99 | -0.024489 | -0.92194 | + | /RICH/RichRecPixelQC/Rich2/hitDensityX | "Rich2 <#hits/mm^2> (X);Local X / mm;hits..." | 12407500 | 24.385 | 466.40 | 0.025812 | -1.541 | + | /RICH/RichRecPixelQC/Rich2/hitDensityY | "Rich2 <#hits/mm^2> (Y);Local Y / mm;hits..." | 12407500 | 42.952 | 219.33 | 0.021621 | 1.0913 | + | /RICH/RichRecPixelQC/Rich2/pdOccXLoc | "Rich2 PD Average Occupancy (X);Local X /..." | 12407500 | 24.796 | 469.04 | 0.028955 | -1.5355 | + | /RICH/RichRecPixelQC/Rich2/pdOccYLoc | "Rich2 PD Average Occupancy (Y);Local Y /..." | 12407500 | 41.956 | 315.60 | 0.016524 | -0.69297 | +RichTkSelEffLong INFO 1D profile histograms in directory "RichTkSelEffLong" : 5 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | /RICH/RichTkSelEffLong/All/effVChi2PDOF | "RICH Track Sel. Eff. V Chi^2 / D.O.F." | 33915 | 1.5271 | 0.44836 | 0.51316 | -0.10272 | + | /RICH/RichTkSelEffLong/All/effVCloneDist | "RICH Track Sel. Eff. V Clone Distance" | 33915 | 5460 | 0.0000 | 0 | 0 | + | /RICH/RichTkSelEffLong/All/effVGhostProb | "RICH Track Sel. Eff. V Ghost Probability" | 21751 | 0.18387 | 0.10712 | 0.28958 | -1.048 | + | /RICH/RichTkSelEffLong/All/effVP | "RICH Track Sel. Eff. V P" | 33673 | 24509 | 14899. | 1.8247 | 3.9626 | + | /RICH/RichTkSelEffLong/All/effVPt | "RICH Track Sel. Eff. V Pt" | 33604 | 927.04 | 655.18 | 2.4298 | 9.5057 | diff --git a/Rich/RichOnlineCalib/src/RichRefIndexCalib.cpp b/Rich/RichOnlineCalib/src/RichRefIndexCalib.cpp index 6c3af6c8fc0b77b008a5d5e0e97f7d090e62e27f..cf71afeecb9c542cd1d5a44248d35533ab4f97e8 100644 --- a/Rich/RichOnlineCalib/src/RichRefIndexCalib.cpp +++ b/Rich/RichOnlineCalib/src/RichRefIndexCalib.cpp @@ -285,12 +285,14 @@ namespace Rich::Future::Rec::Calib { ( Rich::text( rad ) + " Rec-Exp CK Theta Resolution" ).c_str(), // nBins1D(), -m_ckResRange[rich], m_ckResRange[rich] ); ok &= initTHist( h_ckResAll[rich].get() ); - for ( const auto q : quadrants() ) { - h_ckResAllQuads[rich][q] = std::make_unique<TH1D>( - ( "ckResAll" + Rich::text( rad ) + "Q" + std::to_string( q ) ).c_str(), // - ( Rich::text( rad ) + " Rec-Exp CK Theta Resolution" + quadString( q ) ).c_str(), // - nBins1D(), -m_ckResRange[rich], m_ckResRange[rich] ); - ok &= initTHist( h_ckResAllQuads[rich][q].get() ); + if ( m_enableQuadFits[rich] ) { + for ( const auto q : quadrants() ) { + h_ckResAllQuads[rich][q] = std::make_unique<TH1D>( + ( "ckResAll" + Rich::text( rad ) + "Q" + std::to_string( q ) ).c_str(), // + ( Rich::text( rad ) + " Rec-Exp CK Theta Resolution" + quadString( q ) ).c_str(), // + nBins1D(), -m_ckResRange[rich], m_ckResRange[rich] ); + ok &= initTHist( h_ckResAllQuads[rich][q].get() ); + } } } // active rad loop if ( !m_enableRunByRunHists ) { initExtraHists(); } @@ -320,7 +322,9 @@ namespace Rich::Future::Rec::Calib { }; for ( const auto rich : activeDetectors() ) { reset_h( h_ckResAll[rich].get() ); - for ( auto& h : h_ckResAllQuads[rich] ) { reset_h( h.get() ); } + if ( m_enableQuadFits[rich] ) { + for ( auto& h : h_ckResAllQuads[rich] ) { reset_h( h.get() ); } + } // reset failed fit counts resetFailedfitCounts( rich ); } @@ -456,6 +460,9 @@ namespace Rich::Future::Rec::Calib { /// Override for run number (e.g. for testing to merge runs) Gaudi::Property<unsigned int> m_forcedRunNumber{ this, "ForcedRunNumber", 0 }; + /// Include quadrant fits in PDFs + Gaudi::Property<DetectorArray<bool>> m_enableQuadFits{ this, "EnableQuadrantFits", { true, true } }; + private: // cached datax @@ -803,7 +810,7 @@ void RefIndexCalib::operator()( const LHCb::ODIN& odin, if ( phot.validityMask()[i] ) { // plots used for condition update and PDFs h_ckResAll[rich]->Fill( deltaTheta[i] ); - h_ckResAllQuads[rich][q]->Fill( deltaTheta[i] ); + if ( m_enableQuadFits[rich] ) { h_ckResAllQuads[rich][q]->Fill( deltaTheta[i] ); } // these are for monitoring (Monet) fillRunByRunHist( h_ckThetaRec_run[rich], phot.CherenkovTheta()[i] ); fillRunByRunHist( h_ckThetaExp_run[rich], thetaExp[i] ); @@ -958,7 +965,7 @@ void RefIndexCalib::runCalibration( const std::string& type ) const { calib_message( MSG::DEBUG, "Scale factor for ", rad, ": ", scale ); // Add quadrant plots to PDF if main fit was OK - if ( hasNewScaleF ) { + if ( m_enableQuadFits[iRich] && hasNewScaleF ) { for ( auto& h : h_ckResAllQuads[iRich] ) { if ( h.get() ) { if ( checkCKThetaStats( h.get() ) ) {