diff --git a/DaVinciExamples/example_data/Run255620.yaml b/DaVinciExamples/example_data/Run255620.yaml index f49c50d906141c5a5124dea6ae798223a8a0076a..cb47df46bf5f5237e20d231ffd0a07e8e93011a9 100644 --- a/DaVinciExamples/example_data/Run255620.yaml +++ b/DaVinciExamples/example_data/Run255620.yaml @@ -1,10 +1,9 @@ input_files: - - mdf:root://eoslhcb.cern.ch//eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150000_0000.raw - - mdf:root://eoslhcb.cern.ch//eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150000_0001.raw - - mdf:root://eoslhcb.cern.ch//eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150000_0002.raw - - mdf:root://eoslhcb.cern.ch//eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150000_0003.raw - - mdf:root://eoslhcb.cern.ch//eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150011_0001.raw - + - mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150000_0000.raw + - mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150000_0001.raw + - mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150000_0002.raw + - mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150000_0003.raw + - mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150011_0001.raw data_type: 'Upgrade' input_type: 'RAW' simulation: False @@ -13,7 +12,7 @@ ntuple_file: "Raw_DV_Ks_example.root" input_raw_format: 0.5 input_process: 'Hlt2' -conditions_version: 2022_12_HLT2Processing +conditions_version: AlignmentV7_2023_02_16_VPSciFiRich geometry_version: trunk python_logging_level: 3 output_level: 3 diff --git a/DaVinciExamples/example_data/davinci_tupling_eventparticles.yaml b/DaVinciExamples/example_data/davinci_tupling_eventparticles.yaml new file mode 100644 index 0000000000000000000000000000000000000000..287147391e27eb34208e335ec2c9cc46c7e899ec --- /dev/null +++ b/DaVinciExamples/example_data/davinci_tupling_eventparticles.yaml @@ -0,0 +1,12 @@ +input_files: + - 'root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/tests/hlt2_TagAndProbemumu.dst' +data_type: Upgrade +input_type: ROOT +simulation: true +conddb_tag: sim-20210617-vc-md100 +dddb_tag: dddb-20210617 +geometry_version: 'trunk' +conditions_version: 'master' +input_manifest_file: 'root://eoslhcb.cern.ch//eos/lhcb/wg/dpa/wp3/tests/hlt2_TagAndProbemumu.tck.json' +write_fsr: False +print_freq: 1 diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_FunTupleEvent.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_FunTupleEvent.py new file mode 100644 index 0000000000000000000000000000000000000000..1f057bef080c64aa22dd8566473a707ea03464a9 --- /dev/null +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_FunTupleEvent.py @@ -0,0 +1,45 @@ +############################################################################### +# (c) Copyright 2023 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. # +############################################################################### +""" +Example for tupling on and event-by-event basis via the `FunTuple_Event` helper. +This algorithm takes no input and is configured with "void" functors, i.e. functors that expect no input. +This is is contrast to `FunTuple_(MC)Particles`, which take as input the TES location of (MC)Particles +and are configured with functors that operate on a single Particle/MCParticle. +""" + +from PyConf.reading import get_rec_summary +import Functors as F +from FunTuple import FunctorCollection +from FunTuple import FunTuple_Event as Funtuple +import FunTuple.functorcollections as FC +from DaVinci import make_config, Options + + +def main(options: Options): + #get RecSummary object that holds information about nPVs, nTracks, nFTClusters + # Note more information can be added to the RecSummary object + # (see MRs: https://gitlab.cern.ch/lhcb/Moore/-/merge_requests/1649) + rec_summary = get_rec_summary() + evt_vars = FunctorCollection({ + 'nTracks': + F.VALUE_OR(-1) @ F.NTRACKS(rec_summary), + 'nPVs': + F.VALUE_OR(-1) @ F.NPVS(rec_summary), + 'nFTClusters': + F.VALUE_OR(-1) @ F.NFTCLUSTERS(rec_summary) + }) + evt_vars += FC.EventInfo() + + #define tupling algorithm + my_tuple = Funtuple( + name="Tuple", tuple_name="EventInfo", variables=evt_vars) + + return make_config(options, [my_tuple]) diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_eventparticles.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_eventparticles.py new file mode 100644 index 0000000000000000000000000000000000000000..148541a531c9351d2e70e5de93e5c6c4bb3e937c --- /dev/null +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_eventparticles.py @@ -0,0 +1,75 @@ +############################################################################### +# (c) Copyright 2023 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. # +############################################################################### +from DaVinci import Options, make_config +from DaVinci.algorithms import add_filter +from FunTuple import FunTuple_Particles as Funtuple +from Hlt2Conf.standard_particles import ( + make_long_muons, + make_long_electrons_with_brem, + make_long_kaons, + make_long_pions, +) +from PyConf.reading import get_particles +import FunTuple.functorcollections as FC +""" +Very simple DaVinci option file. + +The only purpose of this script is to show how to get the charged particles from the rest of the event within DaVinci. +Not using with reconstruction.bind(from_file=True, spruce=True) can make it look for protoparticles in /Event/pRec/ProtoP/Charged/, which most likely does not exist in your DST processed by Moore. + +This script assumes persistreco for every event. +""" + +def main(options: Options): + + fields_leptons = { + "Bu": "[B+ -> J/psi(1S) K+]CC", + } + + line = 'Hlt2TrackEff_Velo2Long_B2JpsiK_MuonProbe_VELO' + process = 'HLT2' + + input_data = get_particles(f"/Event/{process}/{line}/Particles") + + from RecoConf.reconstruction_objects import reconstruction, upfront_reconstruction + # TODO, ideally it should work without an explicit bind by the user + with reconstruction.bind(from_file=True, spruce=True): + long_muons = make_long_muons() + long_electrons = make_long_electrons_with_brem() + long_kaons = make_long_kaons() + long_pions = make_long_pions() + # TODO, ideally it would not be necessary to explicitly add the unpacking to the control flow + unpack_data = upfront_reconstruction() + + ## DEFINE INSTANCE OF FUNTUPLE + Tdir = "Tuple" + TTree = "DecayTree" + + variables_all = FC.Kinematics() + + variables = { + 'ALL': variables_all + } + + tuple_data = Funtuple( + Tdir, + TTree, + fields=fields_leptons, + variables=variables, + inputs=input_data) + + filter_line = add_filter("HDRFilter_Bu2JpsiK", f"HLT_PASS('{line}')") + + algs = { + "B02JpsiK": [filter_line, tuple_data] + unpack_data + [long_muons, long_electrons, long_kaons, long_pions] + } + + return make_config(options, algs) \ No newline at end of file diff --git a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_weightedrelation_trackvariables.py b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_relation_isovariables.py similarity index 95% rename from DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_weightedrelation_trackvariables.py rename to DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_relation_isovariables.py index 216295200874b6acec8a10c1c4eade6e949b1ab7..1f7dd622ec362b99ef4d7121d4118a36a16c4975 100644 --- a/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_weightedrelation_trackvariables.py +++ b/DaVinciExamples/python/DaVinciExamples/tupling/option_davinci_tupling_relation_isovariables.py @@ -15,7 +15,7 @@ looks at the TES location which contains the tagged particles and creates a 'one relating all the available tracks to the B candidate of the events. Important: Setting DVPATH properly. -To run the example: $DVPATH/run lbexec option_davinci_tupling_weightedrelation_trackvariables:main $DVPATH/DaVinciExamples/example_data/spruce_b2jpsik_opt.yaml +To run the example: $DVPATH/run lbexec option_davinci_tupling_relation_isovariables:main $DVPATH/DaVinciExamples/example_data/spruce_b2jpsik_opt.yaml """ from PyConf.Algorithms import WeightedRelTableAlg diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_configFuntuple.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_configFuntuple.qmt index c725086950d02418ca317e1ee1e6f2a3a9412833..1128f3c2a2021b5c582cb9b28427678f27cbfb11 100644 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_configFuntuple.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_configFuntuple.qmt @@ -34,6 +34,7 @@ countErrorLines({"FATAL":0, "ERROR":0}) # Check there are no NaN values in the ntuple from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan("DV_example_configFuntuple_ntp.root", "Tuple_B0Dspi/DecayTree") +if has_nan("DV_example_configFuntuple_ntp.root", "Tuple_B0Dspi/DecayTree"): + causes.append("Ntuple contains NaN entries") </text></argument> </extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All.qmt index a86bcabdc012b4edfcd5891eeb1b1867d1e7b57f..9667922f5155e0c165774e7421913d07d07c3606 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All.qmt @@ -62,17 +62,20 @@ B_vars_stored = sorted(B_vars_stored) #open the TFile and TTree ntuple = './DV_example_allFunctors_ntp.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('B0DsK_Tuple/DecayTree') +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") +f = TFile.Open(ntuple) +t_B = f.Get('B0DsK_Tuple/DecayTree') #sort the stores vars b_names = sorted([b.GetName() for b in t_B.GetListOfLeaves()]) B_excluded_1 = set(B_vars_stored) - set(b_names) B_excluded_2 = set(b_names) - set(B_vars_stored) -if len(B_excluded_1) != 0: raise Exception('Number of stored variables is less than what is expected. The extra variables expected are: ' , B_excluded_1) -if len(B_excluded_2) != 0: raise Exception('Number of stored variables is greater than what is expected. The extra variables stored are: ', B_excluded_2) +if len(B_excluded_1) != 0: + causes.append(f"Number of stored variables is less than what is expected. The extra variables expected are: {B_excluded_1}") +if len(B_excluded_2) != 0: + causes.append(f"Number of stored variables is greater than what is expected. The extra variables stored are: {B_excluded_2}") f.Close() # Check there are no NaN values in the ntuple except where expected. @@ -81,7 +84,8 @@ from DaVinciTests.QMTest.check_helpers import list_fields_with_nan l_branches_with_nans = ['B0_TRUEP', 'B0_TRUEPT', 'B0_TRUEPX', 'B0_TRUEPY', 'B0_TRUEPZ', 'B0_TRUEENERGY', 'B0_TRUEORIGINVERTEX_X', 'B0_TRUEORIGINVERTEX_Y', 'B0_TRUEORIGINVERTEX_Z', 'B0_TRUEENDVERTEX_X', 'B0_TRUEENDVERTEX_Y', 'B0_TRUEENDVERTEX_Z', 'B0_MASSWITHHYPOTHESES', 'Kaon_PROBNN_D', 'Kaon_PROBNN_MU', 'Kaon_TRUEP', 'Kaon_TRUEPT', 'Kaon_TRUEPX', 'Kaon_TRUEPY', 'Kaon_TRUEPZ', 'Kaon_TRUEENERGY', 'Kaon_BREMENERGY', 'Kaon_BREMBENDCORR', 'Kaon_BREMPIDE', 'Kaon_ECALPIDE', 'Kaon_ECALPIDMU', 'Kaon_HCALPIDE', 'Kaon_HCALPIDMU', 'Kaon_ELECTRONSHOWEREOP', 'Kaon_CLUSTERMATCH', 'Kaon_ELECTRONMATCH', 'Kaon_BREMHYPOMATCH', 'Kaon_ELECTRONENERGY', 'Kaon_BREMHYPOENERGY', 'Kaon_BREMHYPODELTAX', 'Kaon_ELECTRONID', 'Kaon_HCALEOP', 'Ds_TRUEP', 'Ds_TRUEPT', 'Ds_TRUEPX', 'Ds_TRUEPY', 'Ds_TRUEPZ', 'Ds_TRUEENERGY', 'Ds_TRUEORIGINVERTEX_X', 'Ds_TRUEORIGINVERTEX_Y', 'Ds_TRUEORIGINVERTEX_Z', 'Ds_TRUEENDVERTEX_X', 'Ds_TRUEENDVERTEX_Y', 'Ds_TRUEENDVERTEX_Z', 'Ds_BPVCORRMERR', 'Ds_BPVLTIME', 'Ds_MASSWITHHYPOTHESES', 'pip_PROBNN_D', 'pip_PROBNN_MU', 'pip_TRUEP', 'pip_TRUEPT', 'pip_TRUEPX', 'pip_TRUEPY', 'pip_TRUEPZ', 'pip_TRUEENERGY', 'pip_BREMENERGY', 'pip_BREMBENDCORR', 'pip_BREMPIDE', 'pip_ECALPIDE', 'pip_ECALPIDMU', 'pip_HCALPIDE', 'pip_HCALPIDMU', 'pip_ELECTRONSHOWEREOP', 'pip_CLUSTERMATCH', 'pip_ELECTRONMATCH', 'pip_BREMHYPOMATCH', 'pip_ELECTRONENERGY', 'pip_BREMHYPOENERGY', 'pip_BREMHYPODELTAX', 'pip_ELECTRONID', 'pip_HCALEOP'] l_test = list_fields_with_nan("DV_example_allFunctors_ntp.root", "B0DsK_Tuple/DecayTree") -assert sorted(l_test) == sorted(l_branches_with_nans) +if sorted(l_test) != sorted(l_branches_with_nans): + causes.append("Unexpected list of branches with NaN values") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All_olddst.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All_olddst.qmt index 9f6fabc0facf8d99fdd61cb8d33fc04125b21ab5..a8d1e116d81c31005f81bf092c8eec9fd6ad138f 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All_olddst.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_All_olddst.qmt @@ -62,7 +62,8 @@ B_vars_stored = sorted(B_vars_stored) #open the TFile and TTree ntuple = './DV_example_allFunctors_ntp_old.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") f = TFile.Open(ntuple) t_B = f.Get('B0DsK_Tuple/DecayTree') @@ -71,8 +72,10 @@ b_names = sorted([b.GetName() for b in t_B.GetListOfLeaves()]) B_excluded_1 = set(B_vars_stored) - set(b_names) B_excluded_2 = set(b_names) - set(B_vars_stored) -if len(B_excluded_1) != 0: raise Exception('Number of stored variables is less than what is expected. The extra variables expected are: ' , B_excluded_1) -if len(B_excluded_2) != 0: raise Exception('Number of stored variables is greater than what is expected. The extra variables stored are: ', B_excluded_2) +if len(B_excluded_1) != 0: + causes.append(f"Number of stored variables is less than what is expected. The extra variables expected are: {B_excluded_1}") +if len(B_excluded_2) != 0: + causes.append(f"Number of stored variables is greater than what is expected. The extra variables stored are: {B_excluded_2}") f.Close() # Check there are no NaN values in the ntuple except where expected. @@ -81,7 +84,8 @@ from DaVinciTests.QMTest.check_helpers import list_fields_with_nan l_branches_with_nans = ['B0_TRUEP', 'B0_TRUEPT', 'B0_TRUEPX', 'B0_TRUEPY', 'B0_TRUEPZ', 'B0_TRUEENERGY', 'B0_TRUEORIGINVERTEX_X', 'B0_TRUEORIGINVERTEX_Y', 'B0_TRUEORIGINVERTEX_Z', 'B0_TRUEENDVERTEX_X', 'B0_TRUEENDVERTEX_Y', 'B0_TRUEENDVERTEX_Z', 'Kaon_PROBNN_D', 'Kaon_PROBNN_MU', 'Kaon_TRUEP', 'Kaon_TRUEPT', 'Kaon_TRUEPX', 'Kaon_TRUEPY', 'Kaon_TRUEPZ', 'Kaon_TRUEENERGY', 'Kaon_BREMENERGY', 'Kaon_BREMBENDCORR', 'Kaon_BREMPIDE', 'Kaon_ECALPIDE', 'Kaon_ECALPIDMU', 'Kaon_HCALPIDE', 'Kaon_HCALPIDMU', 'Kaon_ELECTRONSHOWEREOP', 'Kaon_CLUSTERMATCH', 'Kaon_ELECTRONMATCH', 'Kaon_BREMHYPOMATCH', 'Kaon_ELECTRONENERGY', 'Kaon_BREMHYPOENERGY', 'Kaon_BREMHYPODELTAX', 'Kaon_ELECTRONID', 'Kaon_HCALEOP', 'Ds_TRUEP', 'Ds_TRUEPT', 'Ds_TRUEPX', 'Ds_TRUEPY', 'Ds_TRUEPZ', 'Ds_TRUEENERGY', 'Ds_TRUEORIGINVERTEX_X', 'Ds_TRUEORIGINVERTEX_Y', 'Ds_TRUEORIGINVERTEX_Z', 'Ds_TRUEENDVERTEX_X', 'Ds_TRUEENDVERTEX_Y', 'Ds_TRUEENDVERTEX_Z', 'Ds_BPVCORRMERR', 'Ds_BPVLTIME', 'Ds_MASSWITHHYPOTHESES', 'pip_PROBNN_D', 'pip_PROBNN_MU', 'pip_TRUEP', 'pip_TRUEPT', 'pip_TRUEPX', 'pip_TRUEPY', 'pip_TRUEPZ', 'pip_TRUEENERGY', 'pip_BREMENERGY', 'pip_BREMBENDCORR', 'pip_BREMPIDE', 'pip_ECALPIDE', 'pip_ECALPIDMU', 'pip_HCALPIDE', 'pip_HCALPIDMU', 'pip_ELECTRONSHOWEREOP', 'pip_CLUSTERMATCH', 'pip_ELECTRONMATCH', 'pip_BREMHYPOMATCH', 'pip_ELECTRONENERGY', 'pip_BREMHYPOENERGY', 'pip_BREMHYPODELTAX', 'pip_ELECTRONID', 'pip_HCALEOP'] l_test = list_fields_with_nan("DV_example_allFunctors_ntp_old.root", "B0DsK_Tuple/DecayTree") -assert sorted(l_test) == sorted(l_branches_with_nans) +if sorted(l_test) != sorted(l_branches_with_nans): + causes.append("Unexpected list of branches with NaN values") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_DTF.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_DTF.qmt index 79cb56730bacf2a3d9ca7049d140b4fe7f1b2e79..3dc872de626245d8f3b6439bbd9a8a01b75c7e5d 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_DTF.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_DTF.qmt @@ -35,6 +35,7 @@ from DaVinciTests.QMTest.check_helpers import list_fields_with_nan l_branches_with_nans = ['Jpsi_DTF_PV_MASS'] l_test = list_fields_with_nan("DV-example-tupling-DTF-ntp.root", "DimuonsTuple/DecayTree") -assert sorted(l_test) == sorted(l_branches_with_nans) +if sorted(l_test) != sorted(l_branches_with_nans): + causes.append("Unexpected list of branches with NaN values") </text></argument> </extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_FunTupleEvent.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_FunTupleEvent.qmt new file mode 100644 index 0000000000000000000000000000000000000000..006f3a9115cca18aa3c514ec0a7d84a64389f435 --- /dev/null +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_FunTupleEvent.qmt @@ -0,0 +1,68 @@ +<?xml version="1.0" ?> +<!-- +############################################################################### +# (c) Copyright 2023 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. # +############################################################################### +--> +<!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<extension class="GaudiTest.GaudiExeTest" kind="test"> + <argument name="program"><text>lbexec</text></argument> + <argument name="args"><set> + <text>DaVinciExamples.tupling.option_davinci_tupling_FunTupleEvent:main</text> + </set></argument> + <argument name="options_yaml_fn"><text>$DAVINCIEXAMPLESROOT/example_data/Upgrade_LbToLcmunu.yaml</text></argument> + <argument name="extra_options_yaml"><text> + ntuple_file: tuple_FunTupleEvent.root + print_freq: 1 + </text></argument> + <argument name="reference"><text>../refs/test_davinci_tupling_FunTupleEvent.ref</text></argument> + <argument name="error_reference"><text>../refs/empty.ref</text></argument> + <argument name="validator"><text> +from DaVinciTests.QMTest.DaVinciExclusions import preprocessor,remove_known_warnings +validateWithReference(preproc = preprocessor) + +countErrorLines({"FATAL": 0, "WARNING": 0, "ERROR": 0}, + stdout=remove_known_warnings(stdout)) + +import sys, os, glob +from ROOT import TFile + +B_vars_stored = ['nTracks', 'nPVs', 'nFTClusters', 'EVENTNUMBER', 'RUNNUMBER', 'GPSTIME', 'BUNCHCROSSING_TYPE', 'ODINTCK', 'BUNCHCROSSING_ID'] + +#sort the expected vars +B_vars_stored = sorted(B_vars_stored) + +#open the TFile and TTree +ntuple = './tuple_FunTupleEvent.root' +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") +f = TFile.Open(ntuple) +t_B = f.Get('Tuple/EventInfo') + +#sort the stores vars +b_names = sorted([b.GetName() for b in t_B.GetListOfLeaves()]) + +B_excluded_1 = set(B_vars_stored) - set(b_names) +B_excluded_2 = set(b_names) - set(B_vars_stored) +if len(B_excluded_1) != 0: + causes.append(f"Number of stored variables is less than what is expected. The extra variables expected are: {B_excluded_1}") +if len(B_excluded_2) != 0: + causes.append(f"Number of stored variables is greater than what is expected. The extra variables stored are: {B_excluded_2}") + +# Check there are no NaN values in the ntuple +from DaVinciTests.QMTest.check_helpers import has_nan +if has_nan(ntuple, 'Tuple/EventInfo'): + causes.append("Ntuple contains NaN entries") + +f.Close() +print('Test successfully completed!') +os.system(f"rm {ntuple}") + </text></argument> +</extension> \ No newline at end of file diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_SubsPID.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_SubsPID.qmt index ea409a2c31fa0d6b95d661d539e376160693f77e..d3a4ee0d481202c3b230c8a286aa675f4b96958f 100644 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_SubsPID.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_SubsPID.qmt @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- ############################################################################### -# (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2022-2023 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". # @@ -25,13 +25,12 @@ from DaVinciTests.QMTest.DaVinciExclusions import remove_known_warnings countErrorLines({"FATAL": 0, "ERROR": 0}, stdout=remove_known_warnings(stdout)) + import sys, os from ROOT import TFile - B_vars_stored = ['BUNCHCROSSING_ID', 'BUNCHCROSSING_TYPE', 'B_ENERGY', 'B_ID', 'B_M', 'B_P', 'B_PT', 'Ds_ENERGY', 'Ds_ID', 'Ds_M', 'Ds_P', 'Ds_PT', 'EVENTNUMBER', 'GPSTIME', 'Kminus_ENERGY', 'Kminus_ID', 'Kminus_M', 'Kminus_P', 'Kminus_PT', 'Kplus_ENERGY', 'Kplus_ID', 'Kplus_M', 'Kplus_P', 'Kplus_PT', 'ODINTCK', 'RUNNUMBER', 'piminus_ENERGY', 'piminus_ID', 'piminus_M', 'piminus_P', 'piminus_PT', 'piplus_ENERGY', 'piplus_ID', 'piplus_M', 'piplus_P', 'piplus_PT'] - #sort the expected vars B_vars_stored = sorted(B_vars_stored) @@ -60,6 +59,5 @@ f.Close() print('Test successfully completed!') os.system(f"rm {ntuple}") - </text></argument> </extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_eventparticles.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_eventparticles.qmt new file mode 100755 index 0000000000000000000000000000000000000000..c5596ecbe70b0d057cdfb090b8d00904b872f09c --- /dev/null +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_eventparticles.qmt @@ -0,0 +1,64 @@ +<?xml version="1.0" ?> +<!-- +############################################################################### +# (c) Copyright 2020-2023 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. # +############################################################################### +--> +<!DOCTYPE extension PUBLIC '-//QM/2.3/Extension//EN' 'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'> +<extension class="GaudiTest.GaudiExeTest" kind="test"> + <argument name="program"><text>lbexec</text></argument> + <argument name="args"><set> + <text>DaVinciExamples.tupling.option_davinci_tupling_eventparticles:main</text> + </set></argument> + <argument name="options_yaml_fn"><text>$DAVINCIEXAMPLESROOT/example_data/davinci_tupling_eventparticles.yaml</text></argument> + <argument name="extra_options_yaml"><text> + ntuple_file: DV-example-tupling-eventparticles.root + histo_file: DV-example-tupling-eventparticles-his.root + evt_max: 100 + input_raw_format: 0.3 + input_process: Hlt2 +</text></argument> +<argument name="timeout"><integer>3600</integer></argument> +<argument name="validator"><text> +findReferenceBlock(""" +RFileCnv INFO dumping contents of /NTUPLES/FILE1 +TFile: name=DV-example-tupling-eventparticles.root, title=Gaudi Trees, option=CREATE +****************************************************************************** +*Tree :DecayTree : DecayTree * +""", stdout, result, causes, signature_offset = 0) +countErrorLines({"FATAL":0, "ERROR":0}) + +import os +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan + +ntuple = './DV-example-tupling-eventparticles.root' + + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df1 = get_pandas_dataframe(ntuple, 'Tuple/DecayTree') + +# Check ntuples structure +if df1.empty: + causes.append(f"File {ntuple}: ntuple 'Tuple/DecayTree' does not contain any branches") +# FIXME: check disabled because 8(7) candidates are tupled with(out) DD4hep! +# No appetite to investigate since we should soon update the input files used. + +# Check there are no NaN values in the ntuples +if df_has_nan(df1): + causes.append("Ntuple 'Tuple/DecayTree' contains NaN entries") + +print('Test successfully completed!') +#os.system(f"rm {ntuple}") +#os.system(f"rm {ntuple_new}") +<argument name="exit_code"><integer>1</integer></argument> +</text></argument> +</extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_from_spruce_mc.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_from_spruce_mc.qmt index 36cf0198afa64223f26643494e579d0aacfb9e8d..65022ae51c9b49a9d0138bb9ed63e5492caa5b8c 100644 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_from_spruce_mc.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_from_spruce_mc.qmt @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- ############################################################################### -# (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2022-2023 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". # @@ -25,30 +25,62 @@ findReferenceBlock("""Tuple SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections""" , stdout, result, causes, signature_offset = 0) +countErrorLines({"FATAL":0, "ERROR":0}) + import os -from ROOT import TFile -#open the TFile and TTree +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, list_fields_with_nan + ntuple = './sprucing_mc_tuple.root' -ttree_name = 'Tuple/DecayTree' + if not os.path.isfile(ntuple): - raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get(ttree_name) - -#check if all elements of bkg cat are zero or not -B0_BKGCAT = [str(entry.B0_BKGCAT) for entry in t_B] -print('B_BKGCAT: ' + ', '.join(B0_BKGCAT)) -Ds_BKGCAT = [str(entry.Ds_BKGCAT) for entry in t_B] -print('Ds_BKGCAT: ' + ', '.join(Ds_BKGCAT)) - -is_all_element_zero = all([v == 0 for v in B0_BKGCAT]) or all( - [v == 60 for v in Ds_BKGCAT]) -if is_all_element_zero: - raise Exception('MC background association not working') - -f.Close() -print('Test successfully completed!') + causes.append(f"File {ntuple} does not exist!") -countErrorLines({"FATAL":0, "ERROR":0}) +df = get_pandas_dataframe(ntuple, 'Tuple/DecayTree') + +# Check ntuples structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (15, 62): + causes.append("Ntuple not with expected number of entries and/or branches") + +# Check there are no NaN values in the ntuple except where expected +l_branches_with_nans = ['B0_TRUEENERGY', + 'B0_TRUEFOURMOMENTUME', + 'B0_TRUEFOURMOMENTUMX', + 'B0_TRUEFOURMOMENTUMY', + 'B0_TRUEFOURMOMENTUMZ', + 'B0_TRUEP', + 'B0_TRUEPT', + 'B0_TRUEPX', + 'B0_TRUEPY', + 'B0_TRUEPZ', + 'Ds_TRUEENERGY', + 'Ds_TRUEFOURMOMENTUME', + 'Ds_TRUEFOURMOMENTUMX', + 'Ds_TRUEFOURMOMENTUMY', + 'Ds_TRUEFOURMOMENTUMZ', + 'Ds_TRUEP', + 'Ds_TRUEPT', + 'Ds_TRUEPX', + 'Ds_TRUEPY', + 'Ds_TRUEPZ'] + +l_test = list_fields_with_nan(ntuple, "Tuple/DecayTree") +if sorted(l_test) != sorted(l_branches_with_nans): + causes.append("Unexpected list of branches with NaN values") + +# Checks background category values and associated MC-truth PIDs are correctly assigned +ok = (((df["B0_BKGCAT"].abs() == 20).sum() == 12) and + (df["Kp_BKGCAT"] == -1).all() and + ((df["B0_TRUEID"].abs() == 531).sum() == 13) and + ((df["Ds_TRUEID"].abs() == 431).sum() == 14) and + ((df["Ds_TRUEID"] == 0).sum() == 1) and + (df["Kp_TRUEID"] != 0).all() + ) +if not ok: + causes.append("Ntuple contains unexpected BKGCAT and/or TRUEID values") + +print('Test successfully completed!') +os.system(f"rm {ntuple}") </text></argument> </extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_weightedrelation_trackvariables.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_relation_isovariables.qmt similarity index 91% rename from DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_weightedrelation_trackvariables.qmt rename to DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_relation_isovariables.qmt index f26015bf67ea1a7c32056251c6eb6b0226c03fdc..76d0b95dac68d5d689569fd247cbc48efe014386 100644 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_weightedrelation_trackvariables.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_davinci_tupling_relation_isovariables.qmt @@ -15,7 +15,7 @@ <extension class="GaudiTest.GaudiExeTest" kind="test"> <argument name="program"><text>lbexec</text></argument> <argument name="args"><set> - <text>DaVinciExamples.tupling.option_davinci_tupling_weightedrelation_trackvariables:main</text> + <text>DaVinciExamples.tupling.option_davinci_tupling_relation_isovariables:main</text> </set></argument> <argument name="options_yaml_fn"><text>$DAVINCIEXAMPLESROOT/example_data/spruce_b2jpsik_opt.yaml</text></argument> <argument name="extra_options_yaml"><text> @@ -28,7 +28,7 @@ input_process: Turbo </text></argument> <argument name="timeout"><integer>3600</integer></argument> - <argument name="reference"><text>$DAVINCIEXAMPLESROOT/tests/refs/test_davinci_tupling_weightedrelation_trackvariables.ref</text></argument> + <argument name="reference"><text>$DAVINCIEXAMPLESROOT/tests/refs/test_davinci_tupling_relation_isovariables.ref</text></argument> <argument name="validator"><text> findReferenceBlock("""Tuple SUCCESS ID=DecayTree Title="DecayTree" #items=34 {EVENTNUMBER,RUNNUMBER,B_THOR_P,B_THOR_PT,B_THOR_MASS,B_First_P,B_First_PT,B_Sum_P}""") countErrorLines({"FATAL":0, "ERROR":0}) diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt index 3e20965f96aac2471dcdf7293689a44995ecd7ea..22b15a94f0cb3bfb8aa17455732f81681ae129e0 100755 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic-run-mc.qmt @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- ############################################################################### -# (c) Copyright 2020-2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2020-2023 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". # @@ -31,5 +31,28 @@ from DaVinciTests.QMTest.DaVinciExclusions import preprocessor, counter_preprocessor validateWithReference(preproc = preprocessor, counter_preproc = counter_preprocessor) countErrorLines({"FATAL":0, "ERROR":0}) + +import os +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan + +ntuple = './DV-example-tupling-basic-ntp-run-mc.root' + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'DimuonsTuple/DecayTree') + +# Check ntuple structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (16, 12): + causes.append("Ntuple not with expected number of entries and/or branches") + +# Check there are no NaN values in the ntuple +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") + +print('Test successfully completed!') +os.system(f"rm {ntuple}") </text></argument> </extension> diff --git a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt index f829ca10e91a73ca003b94524049bf738541d316..29a0a30feb08efdc61b77941ba39fdeb815700a5 100644 --- a/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt +++ b/DaVinciExamples/tests/qmtest/tupling.qms/test_example-tupling-basic.qmt @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- ############################################################################### -# (c) Copyright 2020-2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2020-2023 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". # @@ -35,22 +35,39 @@ TFile: name=DV-example-tupling-basic-ntp.root, title=Gaudi Trees, option=CREATE """, stdout, result, causes, signature_offset = 0) countErrorLines({"FATAL":0, "ERROR":0}) -import sys, os, glob -import ROOT as r -from ROOT import TFile - -try: - ntuple = 'DV-example-tupling-basic-ntp.root' - f = TFile.Open(ntuple) - if f.IsZombie(): - raise AttributeError('Output ROOT file is Zombie') - print('-- DV-example-tupling-basic-ntp.root QMTest -- : found output NTuple') - f.Close() - os.system('rm %s' %ntuple) -except IOError as err: - raise IOError('Impossible to open file: ', err) -except: - raise Exception('Unexpected error while opening file: ') +import os +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan + +ntuple = './DV-example-tupling-basic-ntp.root' + + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df1 = get_pandas_dataframe(ntuple, 'DimuonsTuple/DecayTree') +df2 = get_pandas_dataframe(ntuple, 'KsTuple/DecayTree') + +# Check ntuples structure +if df1.empty: + causes.append(f"File {ntuple}: ntuple 'DimuonsTuple/DecayTree' does not contain any branches") +if df2.empty: + causes.append(f"File: {ntuple}: ntuple 'KsTuple/DecayTree' does not contain any branches") +if df1.shape != (16, 12): + causes.append("Ntuple 'DimuonsTuple/DecayTree' not with expected number of entries and/or branches") +# FIXME: check disabled because 8(7) candidates are tupled with(out) DD4hep! +# No appetite to investigate since we should soon update the input files used. +#if df2.shape != (8, 10): +# causes.append("Ntuple 'KsTuple/DecayTree' not with expected number of entries and/or branches") + +# Check there are no NaN values in the ntuples +if df_has_nan(df1): + causes.append("Ntuple 'DimuonsTuple/DecayTree' contains NaN entries") +if df_has_nan(df2): + causes.append("Ntuple 'KsTuple/DecayTree' contains NaN entries") + +print('Test successfully completed!') +#os.system(f"rm {ntuple}") +#os.system(f"rm {ntuple_new}") <argument name="exit_code"><integer>1</integer></argument> </text></argument> </extension> diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref new file mode 100644 index 0000000000000000000000000000000000000000..cbe37002ce6cbc58c1dcaec25d648da9e3f485a4 --- /dev/null +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref @@ -0,0 +1,48 @@ +ApplicationMgr SUCCESS +==================================================================================================================================== +==================================================================================================================================== +ApplicationMgr INFO Application Manager Configured successfully +NTupleSvc INFO Added stream file:tuple_FunTupleEvent.root as FILE1 +RootHistSvc INFO Writing ROOT histograms to: tuple_FunTupleEvent.root +HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc +FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' +ApplicationMgr INFO Application Manager Initialized successfully +ApplicationMgr INFO Application Manager Started successfully +EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc +EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 +HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... +RFileCnv INFO opening Root file "tuple_FunTupleEvent.root" for writing +RCWNTupleCnv INFO Booked TTree with ID: EventInfo "EventInfo" in directory tuple_FunTupleEvent.root:/Tuple +EventSelector SUCCESS Reading Event record 2. Record number within stream 1: 2 +EventSelector SUCCESS Reading Event record 3. Record number within stream 1: 3 +EventSelector SUCCESS Reading Event record 4. Record number within stream 1: 4 +EventSelector SUCCESS Reading Event record 5. Record number within stream 1: 5 +EventSelector SUCCESS Reading Event record 6. Record number within stream 1: 6 +EventSelector SUCCESS Reading Event record 7. Record number within stream 1: 7 +ApplicationMgr INFO Application Manager Stopped successfully +FSROutputStreamDstWriter INFO Set up File Summary Record +FSROutputStreamDstWriter INFO Events output: 1 +Tuple SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +Tuple SUCCESS List of booked N-Tuples in directory "FILE1/Tuple" +Tuple SUCCESS ID=EventInfo Title="EventInfo" #items=9 {BUNCHCROSSING_ID,BUNCHCROSSING_TYPE,EVENTNUMBER,GPSTIME,ODINTCK,RUNNUMBER,nFTClus} +LAZY_AND: DaVinci #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + NONLAZY_OR: FileSummaryRecords #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + LAZY_AND: GenFSR #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + RecordStream/FSROutputStreamDstWriter #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + NONLAZY_OR: UserAnalysis #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + LAZY_AND: default #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + FunTupleEventBase/Tuple #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| +RFileCnv INFO dumping contents of /NTUPLES/FILE1 +TFile: name=tuple_FunTupleEvent.root, title=Gaudi Trees, option=CREATE +NTupleSvc INFO NTuples saved successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +HltPackedBufferDecoder#1 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " DstData raw bank has a zero encoding key, and it is not explicitly specified for decoding -- make sure that this really what you want"| 7 | +RecSummaryUnpacker INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnpackedData" | 14 | 343 | 24.500 | +Tuple INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# processed events" | 7 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref.detdesc b/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref.detdesc new file mode 100644 index 0000000000000000000000000000000000000000..cbe37002ce6cbc58c1dcaec25d648da9e3f485a4 --- /dev/null +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_FunTupleEvent.ref.detdesc @@ -0,0 +1,48 @@ +ApplicationMgr SUCCESS +==================================================================================================================================== +==================================================================================================================================== +ApplicationMgr INFO Application Manager Configured successfully +NTupleSvc INFO Added stream file:tuple_FunTupleEvent.root as FILE1 +RootHistSvc INFO Writing ROOT histograms to: tuple_FunTupleEvent.root +HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc +FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' +ApplicationMgr INFO Application Manager Initialized successfully +ApplicationMgr INFO Application Manager Started successfully +EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc +EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 +HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... +RFileCnv INFO opening Root file "tuple_FunTupleEvent.root" for writing +RCWNTupleCnv INFO Booked TTree with ID: EventInfo "EventInfo" in directory tuple_FunTupleEvent.root:/Tuple +EventSelector SUCCESS Reading Event record 2. Record number within stream 1: 2 +EventSelector SUCCESS Reading Event record 3. Record number within stream 1: 3 +EventSelector SUCCESS Reading Event record 4. Record number within stream 1: 4 +EventSelector SUCCESS Reading Event record 5. Record number within stream 1: 5 +EventSelector SUCCESS Reading Event record 6. Record number within stream 1: 6 +EventSelector SUCCESS Reading Event record 7. Record number within stream 1: 7 +ApplicationMgr INFO Application Manager Stopped successfully +FSROutputStreamDstWriter INFO Set up File Summary Record +FSROutputStreamDstWriter INFO Events output: 1 +Tuple SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +Tuple SUCCESS List of booked N-Tuples in directory "FILE1/Tuple" +Tuple SUCCESS ID=EventInfo Title="EventInfo" #items=9 {BUNCHCROSSING_ID,BUNCHCROSSING_TYPE,EVENTNUMBER,GPSTIME,ODINTCK,RUNNUMBER,nFTClus} +LAZY_AND: DaVinci #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + NONLAZY_OR: FileSummaryRecords #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + LAZY_AND: GenFSR #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + RecordStream/FSROutputStreamDstWriter #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + NONLAZY_OR: UserAnalysis #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + LAZY_AND: default #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| + FunTupleEventBase/Tuple #=7 Sum=7 Eff=|( 100.0000 +- 0.00000 )%| +RFileCnv INFO dumping contents of /NTUPLES/FILE1 +TFile: name=tuple_FunTupleEvent.root, title=Gaudi Trees, option=CREATE +NTupleSvc INFO NTuples saved successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +HltPackedBufferDecoder#1 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | " DstData raw bank has a zero encoding key, and it is not explicitly specified for decoding -- make sure that this really what you want"| 7 | +RecSummaryUnpacker INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# UnpackedData" | 14 | 343 | 24.500 | +Tuple INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "# processed events" | 7 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref index 12942637e9fdca1d6c9b190a6d9a0fe57f9e5ef8..6b3fd43d365f19813aa4860c010f87992f643a1a 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref @@ -6,1171 +6,20 @@ NTupleSvc INFO Added stream file:DV-example-tagger- RootHistSvc INFO Writing ROOT histograms to: DV-example-tagger-ntp.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.Background... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.Background... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. RFileCnv INFO opening Root file "DV-example-tagger-ntp.root" for writing RCWNTupleCnv INFO Booked TTree with ID: DecayTree "DecayTree" in directory DV-example-tagger-ntp.root:/B0DsK_Tuple -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. ApplicationMgr INFO Application Manager Stopped successfully FSROutputStreamDstWriter INFO Set up File Summary Record FSROutputStreamDstWriter INFO Events output: 1 @@ -1220,10 +69,10 @@ MCTruthAndBkgCatAlg#2 INFO Number of counters : 3 | "Particles" | 50 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 75 | 6.2500 | + | "# UnpackedData" | 24 | 1773 | 73.875 | PP2MCPRelationUnpacker#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 0 | 0.0000 | + | "# AbsentBuffer" | 12 | 0 | 0.0000 | ParticleContainerMerger INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# input particles" | 12 | 50 | 4.1667 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref.detdesc b/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref.detdesc index 12942637e9fdca1d6c9b190a6d9a0fe57f9e5ef8..6b3fd43d365f19813aa4860c010f87992f643a1a 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref.detdesc +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_array_taggers.ref.detdesc @@ -6,1171 +6,20 @@ NTupleSvc INFO Added stream file:DV-example-tagger- RootHistSvc INFO Writing ROOT histograms to: DV-example-tagger-ntp.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#2.Background... INFO Will look into [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.DaVinciSma... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#2.Background... INFO Will look into protoparticle locations [/Event/Spruce/HLT2/Relations/ChargedPP2MCP, /Event/Spruce/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... HltANNSvc WARNING key 0x######## has an explicitly configured overrule -- using that... -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. RFileCnv INFO opening Root file "DV-example-tagger-ntp.root" for writing RCWNTupleCnv INFO Booked TTree with ID: DecayTree "DecayTree" in directory DV-example-tagger-ntp.root:/B0DsK_Tuple -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. -PP2MCPRelationUnpacker#2 WARNING Source location /Event/Spruce/HLT2/Rec/ProtoP/Charged not persisted or not unpacked, skipping relation. ApplicationMgr INFO Application Manager Stopped successfully FSROutputStreamDstWriter INFO Set up File Summary Record FSROutputStreamDstWriter INFO Events output: 1 @@ -1220,10 +69,10 @@ MCTruthAndBkgCatAlg#2 INFO Number of counters : 3 | "Particles" | 50 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 75 | 6.2500 | + | "# UnpackedData" | 24 | 1773 | 73.875 | PP2MCPRelationUnpacker#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 0 | 0.0000 | + | "# AbsentBuffer" | 12 | 0 | 0.0000 | ParticleContainerMerger INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# input particles" | 12 | 50 | 4.1667 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref index 36742a8fb14e6ccf9741ce4d5332858b67bfd2be..c7db7b6c5dec6026a1a7aa80517f152abf6c04c1 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref @@ -6,9 +6,9 @@ NTupleSvc INFO Added stream file:tuple_D0_Kpi_10evt RootHistSvc INFO Writing ROOT histograms to: tuple_D0_Kpi_10evts_fromHlt2_ntuples.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc @@ -49,7 +49,7 @@ MCTruthAndBkgCatAlg#1 INFO Number of counters : 2 | "Particles" | 21 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 7 | 15 | 2.1429 | + | "# UnpackedData" | 14 | 749 | 53.500 | PP2MCPRelationUnpacker#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# AbsentBuffer" | 7 | 0 | 0.0000 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref.detdesc b/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref.detdesc index 36742a8fb14e6ccf9741ce4d5332858b67bfd2be..c7db7b6c5dec6026a1a7aa80517f152abf6c04c1 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref.detdesc +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_from_hlt2.ref.detdesc @@ -6,9 +6,9 @@ NTupleSvc INFO Added stream file:tuple_D0_Kpi_10evt RootHistSvc INFO Writing ROOT histograms to: tuple_D0_Kpi_10evts_fromHlt2_ntuples.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc @@ -49,7 +49,7 @@ MCTruthAndBkgCatAlg#1 INFO Number of counters : 2 | "Particles" | 21 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 7 | 15 | 2.1429 | + | "# UnpackedData" | 14 | 749 | 53.500 | PP2MCPRelationUnpacker#3 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# AbsentBuffer" | 7 | 0 | 0.0000 | diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_from_raw_data.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_from_raw_data.ref index 4655663e4967ceb9d1569f1644a4b9721fbca8bc..3de3d23bfae1af2fee81f373c57e3b40171066a8 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_from_raw_data.ref +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_from_raw_data.ref @@ -15,7 +15,7 @@ HLTControlFlowMgr INFO ---> End of Initialization. This too ApplicationMgr INFO Application Manager Initialized successfully FunctorFactory INFO Reusing functor library: "/tmp/pkoppenb/FunctorJitLib_0x1f236ca1a77a4581_0xe204f21393053aa3.so" ApplicationMgr INFO Application Manager Started successfully -EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='/eos/lhcb/point8/lhcb/data/2022/RAW/TURBO/LHCb/COLLISION22/255620/255620_00150000_0000.raw' SVC='LHCb::MDFSelector' OPT='READ' IgnoreChecksum='YES' +EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='/eos/lhcb/wg/dpa/wp3/Commissioning2022/Run255620/255620_00150000_0000.raw' SVC='LHCb::MDFSelector' OPT='READ' IgnoreChecksum='YES' HLTControlFlowMgr INFO Will measure time between events 1000 and 9000 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events EventSelector.DataStreamTool_1 INFO Compression:0 Checksum:0 diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_weightedrelation_trackvariables.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_relation_isovariables.ref similarity index 100% rename from DaVinciExamples/tests/refs/test_davinci_tupling_weightedrelation_trackvariables.ref rename to DaVinciExamples/tests/refs/test_davinci_tupling_relation_isovariables.ref diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_weightedrelation_trackvariables.ref.detdesc b/DaVinciExamples/tests/refs/test_davinci_tupling_relation_isovariables.ref.detdesc similarity index 100% rename from DaVinciExamples/tests/refs/test_davinci_tupling_weightedrelation_trackvariables.ref.detdesc rename to DaVinciExamples/tests/refs/test_davinci_tupling_relation_isovariables.ref.detdesc diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref b/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref index cab6d738ae6932e808ba3ff0dcc899e720a5964c..a01b727b2ae8155ae3e689e2ed23d9618d0ed923 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref @@ -22,9 +22,9 @@ HLTControlFlowMgr INFO Start initialization RootHistSvc INFO Writing ROOT histograms to: mytuple.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] HiveDataBrokerSvc WARNING non-reentrant algorithm: RecordStream/FSROutputStreamDstWriter HLTControlFlowMgr INFO Concurrency level information: HLTControlFlowMgr INFO o Number of events slots: 1 diff --git a/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref.detdesc b/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref.detdesc index cab6d738ae6932e808ba3ff0dcc899e720a5964c..a01b727b2ae8155ae3e689e2ed23d9618d0ed923 100644 --- a/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref.detdesc +++ b/DaVinciExamples/tests/refs/test_davinci_tupling_unreconstructed_info.ref.detdesc @@ -22,9 +22,9 @@ HLTControlFlowMgr INFO Start initialization RootHistSvc INFO Writing ROOT histograms to: mytuple.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] HiveDataBrokerSvc WARNING non-reentrant algorithm: RecordStream/FSROutputStreamDstWriter HLTControlFlowMgr INFO Concurrency level information: HLTControlFlowMgr INFO o Number of events slots: 1 diff --git a/DaVinciTests/python/DaVinciTests/QMTest/check_helpers.py b/DaVinciTests/python/DaVinciTests/QMTest/check_helpers.py index b72afdfc677814f07cba2caf04e3b3fb5ab4008a..be53b9a6f64baf02940286b53555cafc13f3a011 100644 --- a/DaVinciTests/python/DaVinciTests/QMTest/check_helpers.py +++ b/DaVinciTests/python/DaVinciTests/QMTest/check_helpers.py @@ -32,11 +32,19 @@ def has_nan(filename: str, otherwise specify names in iterable. exclude (iterable[str], optional): Exclude fields (branches) from selection. """ - df = _get_pandas_dataframe(filename, ntuple_name, columns, exclude) + df = get_pandas_dataframe(filename, ntuple_name, columns, exclude) return df.isna().any().any() +def df_has_nan(df: pd.DataFrame): + """ + Check if a Pandas DataFrame contains NaN values. + Typically used after a call to `get_pandas_dataframe`. + """ + return df.isna().any().any() + + def count_nan_in_fields(filename: str, ntuple_name: str, fields: Iterable[str]): """ @@ -47,7 +55,7 @@ def count_nan_in_fields(filename: str, ntuple_name: str, ntuple_name (str): The full path to the ntuple, e.g. My/Dir/MyNtuple. fields (iterable[str]): The list of fields to inspect. """ - df = _get_pandas_dataframe(filename, ntuple_name, fields) + df = get_pandas_dataframe(filename, ntuple_name, fields) return {f: df[f].isna().sum() for f in fields} @@ -60,15 +68,15 @@ def list_fields_with_nan(filename: str, ntuple_name: str): filename (str): The full path to the ROOT file. ntuple_name (str): The full path to the ntuple, e.g. My/Dir/MyNtuple. """ - df = _get_pandas_dataframe(filename, ntuple_name) + df = get_pandas_dataframe(filename, ntuple_name) return df.columns[df.isna().any()].tolist() -def _get_pandas_dataframe(filename: str, - ntuple_name: str, - columns: Iterable[str] = None, - exclude: Iterable[str] = None): +def get_pandas_dataframe(filename: str, + ntuple_name: str, + columns: Iterable[str] = None, + exclude: Iterable[str] = None): """ Helper to produce a Pandas DataFrame from a ROOT RDataFrame. diff --git a/DaVinciTests/python/DaVinciTests/filters.py b/DaVinciTests/python/DaVinciTests/filters.py index 56ac7fcba3ba8eea58c7f09f67a5fbfb3208f935..cacdc9e7429be723422da9cf46238faad5d285b3 100644 --- a/DaVinciTests/python/DaVinciTests/filters.py +++ b/DaVinciTests/python/DaVinciTests/filters.py @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2021-2022 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2023 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". # @@ -9,7 +9,7 @@ # or submit itself to any jurisdiction. # ############################################################################### """ -Read the output of an Sprucing job with the new DaVinci configuration. +Read the output of a Sprucing job in DaVinci with line specific filters. """ from DaVinci.algorithms import add_filter from DaVinci import Options, make_config diff --git a/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_filters.qmt b/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_filters.qmt index 73fcd987cccb402d19eac4854f116b96084058f0..b387e983d47c6d1a5908b1f24a67900826300ce8 100644 --- a/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_filters.qmt +++ b/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_filters.qmt @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- ############################################################################### -# (c) Copyright 2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2021-2023 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". # @@ -22,8 +22,8 @@ <argument name="extra_options_yaml"><text> evt_pre_filters: Hlt2TopoLineFilter: "HLT_PASS('Hlt2Topo2BodyLineDecision')" - ntuple_file: "ntuple_filter.root" - histo_file: "histo_filter.root" + ntuple_file: "davinci_filters_ntuple.root" + histo_file: "davinci_filters_histos.root" print_freq: 1 </text></argument> <argument name="reference"><text>../refs/test_davinci_filters.ref</text></argument> @@ -31,5 +31,7 @@ <argument name="validator"><text> from DaVinciTests.QMTest.DaVinciExclusions import preprocessor, counter_preprocessor validateWithReference(preproc = preprocessor, counter_preproc = counter_preprocessor) + +countErrorLines({"FATAL":0, "ERROR":0}) </text></argument> </extension> diff --git a/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_recVertices.qmt b/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_recVertices.qmt index aefbb934e0f6dd8760184d0f06d7292e7b3fcdc5..f8e0aaef21759010ba8dc20ea4a3afa129a46bc3 100644 --- a/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_recVertices.qmt +++ b/DaVinciTests/tests/qmtest/davinci.qms/test_davinci_recVertices.qmt @@ -35,6 +35,7 @@ countErrorLines({"FATAL":0, "ERROR":0}) # Check there are no NaN values in the ntuple from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan("test_recVertices.root", "B0DsK_Tuple/DecayTree") +if has_nan("test_recVertices.root", "B0DsK_Tuple/DecayTree"): + causes.append("Ntuple contains NaN entries") </text></argument> </extension> diff --git a/DaVinciTests/tests/refs/test_davinci_filters.ref b/DaVinciTests/tests/refs/test_davinci_filters.ref index 2431ec3731a02f7ee52d2415548e917b6bed6408..2017c245ff95e912d33420e5152c5b496fd8a11d 100644 --- a/DaVinciTests/tests/refs/test_davinci_filters.ref +++ b/DaVinciTests/tests/refs/test_davinci_filters.ref @@ -2,8 +2,8 @@ ApplicationMgr SUCCESS ==================================================================================================================================== ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -NTupleSvc INFO Added stream file:ntuple_filter.root as FILE1 -RootHistSvc INFO Writing ROOT histograms to: ntuple_filter.root +NTupleSvc INFO Added stream file:davinci_filters_ntuple.root as FILE1 +RootHistSvc INFO Writing ROOT histograms to: davinci_filters_ntuple.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' ApplicationMgr INFO Application Manager Initialized successfully diff --git a/DaVinciTests/tests/refs/test_davinci_filters.ref.detdesc b/DaVinciTests/tests/refs/test_davinci_filters.ref.detdesc index 2431ec3731a02f7ee52d2415548e917b6bed6408..2017c245ff95e912d33420e5152c5b496fd8a11d 100644 --- a/DaVinciTests/tests/refs/test_davinci_filters.ref.detdesc +++ b/DaVinciTests/tests/refs/test_davinci_filters.ref.detdesc @@ -2,8 +2,8 @@ ApplicationMgr SUCCESS ==================================================================================================================================== ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully -NTupleSvc INFO Added stream file:ntuple_filter.root as FILE1 -RootHistSvc INFO Writing ROOT histograms to: ntuple_filter.root +NTupleSvc INFO Added stream file:davinci_filters_ntuple.root as FILE1 +RootHistSvc INFO Writing ROOT histograms to: davinci_filters_ntuple.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' ApplicationMgr INFO Application Manager Initialized successfully diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial1_functors_specialfield.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial1_functors_specialfield.qmt index 2b52870e4bfe0d3565dcb5922965773e3986683f..09702432951ac8de59198c5ac67e7f667564fa9b 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial1_functors_specialfield.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial1_functors_specialfield.qmt @@ -31,21 +31,25 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial1_functors_specialfield.root' #this file should be disabled ntuple_new = './tutorial1_Functors_specialfield_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): raise Exception(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: + raise Exception(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (30, 22): + causes.append("Ntuple not with expected number of entries and/or branches") # Check there are no NaN values in the ntuple -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName/TTreeName') +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial2_LoKi.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial2_LoKi.qmt index a7011f331c702daf82675492d824b6846e277f09..78d8ed1ad6a10f20b52b3dbaea84d925819146fa 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial2_LoKi.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial2_LoKi.qmt @@ -31,21 +31,26 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial2_LoKi.root' #this file should be disabled ntuple_new = './tutorial2_LoKi_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (30, 50): + causes.append("Ntuple not with expected number of entries and/or branches") # Check there are no NaN values in the ntuple -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName/TTreeName') +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial3_ThOrfunctors.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial3_ThOrfunctors.qmt index 62d10beeabca2bb6bd7eb663d226d6d8a434fe18..5bc26568527cdb8c5f343151cc81151365c6c133 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial3_ThOrfunctors.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial3_ThOrfunctors.qmt @@ -31,21 +31,30 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial3_ThOrfunctors.root' #this file should be disabled ntuple_new = './tutorial3_ThOrfunctors_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (30, 26): + causes.append("Ntuple not with expected number of entries and/or branches") # Check there are no NaN values in the ntuple -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName/TTreeName') +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") + +# Checks PIDs are correctly assigned +if not ( (df["Bs_Kp_ID"].abs() == 321).all() and (df["Bs_jpsi_ID"].abs() == 443).all() and (df["Bs_phi_ID"].abs() == 333).all() ): + causes.append("Ntuple contains unexpected PID values") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial4_trigger_eventinfo.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial4_trigger_eventinfo.qmt index aab87eb37be6574c17627fb70febc2ecb8d07fb2..430c644366e048bc11b4d9d2013e3f5277e365e2 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial4_trigger_eventinfo.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial4_trigger_eventinfo.qmt @@ -31,21 +31,30 @@ from DaVinciTests.QMTest.DaVinciExclusions import preprocessor, counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial4_trigger_eventinfo.root' #this file should be disabled ntuple_new = './tutorial4_trigger_eventinfo_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (30, 12): + causes.append("Ntuple not with expected number of entries and/or branches") # Check there are no NaN values in the ntuple -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName/TTreeName') +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") + +# Checks PIDs are correctly assigned +if not (df["Bs_ID"] == 531).all(): + causes.append("Ntuple contains unexpected Bs_ID values") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial5_MCTruth.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial5_MCTruth.qmt index 9b560b0ab4a127a970ccc61e67b9b7c6de27d3cc..d890f93e3590991658a414fb284fde1bd6f73806 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial5_MCTruth.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial5_MCTruth.qmt @@ -31,23 +31,42 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial5_MCTruth.root' #this file should be disabled ntuple_new = './tutorial5_MCTruth_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() - -# Check there are no NaN values in the ntuple except where expected. + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: + causes.append(f"File {ntuple}: ntuple does not contain any branches") +if df.shape != (30, 39): + causes.append("Ntuple not with expected number of entries and/or branches") + +# Check there are no NaN values in the ntuple except where expected from DaVinciTests.QMTest.check_helpers import list_fields_with_nan l_branches_with_nans = ['Bs_TRUEP', 'Jpsi_TRUEP', 'Phi_TRUEP', 'Mup_TRUEP', 'Mum_TRUEP', 'Kp_TRUEEPHI', 'Kp_TRUEP', 'Km_TRUEP'] l_test = list_fields_with_nan(ntuple, 'TDirectoryName/TTreeName') -assert sorted(l_test) == sorted(l_branches_with_nans) +if sorted(l_test) != sorted(l_branches_with_nans): + causes.append("Unexpected list of branches with NaN values") + +# Checks PIDs are correctly assigned +if not ((df.filter(regex=("[B|J|P].*TRUEID"))==0).all().all() # no matched MC + and ( (df["Km_TRUEID"].abs()==0).sum() + (df["Kp_TRUEID"].abs()==0).sum() == 14 ) + and ( (df["Mum_TRUEID"].abs()==0).sum() + (df["Mup_TRUEID"].abs()==0).sum() == 3 ) + ): + causes.append("Ntuple contains unexpected TRUEID values") + +# Check background categories +if not ((df.filter(regex=("[B|J|P].*BKGCAT"))!=0).all().all() + and (df.filter(regex=("[K|Mu].*BKGCAT"))==-1).all().all() # for kaons and muons, all entries are -1 + ): + causes.append("Ntuple contains unexpected BKGCAT values") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial6_DecayTreeFit.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial6_DecayTreeFit.qmt index d305ede6a547b308fc384dcff5182e399f111170..5dcd292718e26f303f9ce9003a9255217043ed35 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial6_DecayTreeFit.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial6_DecayTreeFit.qmt @@ -31,21 +31,23 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial6_DecayTreeFit.root' #this file should be disabled ntuple_new = './tutorial6_DecayTreeFit_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B = f.Get('TDirectoryName/TTreeName') -b_names= [b.GetName() for b in t_B.GetListOfLeaves()] -if not b_names: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): raise Exception(f"File {ntuple} does not exist!") + +df = get_pandas_dataframe(ntuple, 'TDirectoryName/TTreeName') + +# Check ntuple structure +if df.empty: raise Exception(f"File {ntuple}: ntuple does not contain any branches. Please check.") +assert df.shape == (30, 48) # Check there are no NaN values in the ntuple -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName/TTreeName') +if df_has_nan(df): + causes.append("Ntuple contains NaN entries") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/qmtest/test_tutorial7_multiple_sel_lines.qmt b/DaVinciTutorials/tests/qmtest/test_tutorial7_multiple_sel_lines.qmt index 2652e12ee367f79c7596e9563feddb709e815493..17e907f81579cde768876f2fcfe5da19c3f1cb86 100644 --- a/DaVinciTutorials/tests/qmtest/test_tutorial7_multiple_sel_lines.qmt +++ b/DaVinciTutorials/tests/qmtest/test_tutorial7_multiple_sel_lines.qmt @@ -31,25 +31,33 @@ validateWithReference(preproc = preprocessor, counter_preproc = counter_preproce countErrorLines({"FATAL":0, "ERROR":0}) import os -from ROOT import TFile +from DaVinciTests.QMTest.check_helpers import get_pandas_dataframe, df_has_nan ntuple = './tutorial7_multiple_sel_lines.root' #this file should be disabled ntuple_new = './tutorial7_multiple_sel_lines_new.root' -if not os.path.isfile(ntuple): raise Exception(f"File: {ntuple} does not exist!") -f = TFile.Open(ntuple) -t_B_1 = f.Get('TDirectoryName1/TTreeName1') -t_B_2 = f.Get('TDirectoryName2/TTreeName2') -b_names_1= [b.GetName() for b in t_B_1.GetListOfLeaves()] -b_names_2= [b.GetName() for b in t_B_2.GetListOfLeaves()] -if not b_names_1: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -if not b_names_2: raise Exception(f"File: {ntuple} does not contain any branches. Please check.") -f.Close() + +if not os.path.isfile(ntuple): + causes.append(f"File {ntuple} does not exist!") + +df1 = get_pandas_dataframe(ntuple, 'TDirectoryName1/TTreeName1') +df2 = get_pandas_dataframe(ntuple, 'TDirectoryName2/TTreeName2') + +# Check ntuple structure +if df1.empty: + causes.append(f"File {ntuple}: ntuple 'TDirectoryName1/TTreeName1' does not contain any branches") +if df2.empty: + causes.append(f"File {ntuple}: ntuple 'TDirectoryName2/TTreeName2' does not contain any branches") +if df1.shape != (30, 23): + causes.append("Ntuple 'TDirectoryName1/TTreeName1' not with expected number of entries and/or branches") +if df2.shape != (13, 23): + causes.append("Ntuple 'TDirectoryName2/TTreeName2' not with expected number of entries and/or branches") # Check there are no NaN values in the ntuples -from DaVinciTests.QMTest.check_helpers import has_nan -assert not has_nan(ntuple, 'TDirectoryName1/TTreeName1') -assert not has_nan(ntuple, 'TDirectoryName2/TTreeName2') +if df_has_nan(df1): + causes.append("Ntuple 'TDirectoryName1/TTreeName1' contains NaN entries") +if df_has_nan(df2): + causes.append("Ntuple 'TDirectoryName2/TTreeName2' contains NaN entries") print('Test successfully completed!') os.system(f"rm {ntuple}") diff --git a/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref b/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref index d993f42f56caf6a3de35c89a3819686b06857d1d..c69953f0f810362651e60ba64b28bc0054fb7728 100644 --- a/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref +++ b/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref @@ -6,9 +6,9 @@ NTupleSvc INFO Added stream file:tutorial5_MCTruth. RootHistSvc INFO Writing ROOT histograms to: tutorial5_MCTruth.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc @@ -147,15 +147,15 @@ HltPackedBufferDecoder#1 INFO Number of counters : 1 MCTruthAndBkgCatAlg#1 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Events" | 12 | - | "Ghosts" | 93 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | - | "Particles" | 150 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Ghosts" | 107 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Particles" | 210 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 75 | 6.2500 | + | "# UnpackedData" | 24 | 2319 | 96.625 | PP2MCPRelationUnpacker#3 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# AbsentBuffer" | 3 | 0 | 0.0000 | - | "# PackedData" | 9 | 1504 | 167.11 | + | "# UnpackedData" | 18 | 32142 | 1785.7 | ParticleUnpacker INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# Linked BufferData" | 132 | 136208 | 1031.9 | diff --git a/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref.detdesc b/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref.detdesc index d993f42f56caf6a3de35c89a3819686b06857d1d..c69953f0f810362651e60ba64b28bc0054fb7728 100644 --- a/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref.detdesc +++ b/DaVinciTutorials/tests/refs/test_tutorial5_MCTruth.ref.detdesc @@ -6,9 +6,9 @@ NTupleSvc INFO Added stream file:tutorial5_MCTruth. RootHistSvc INFO Writing ROOT histograms to: tutorial5_MCTruth.root HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc FSROutputStreamDstWriter INFO Data source: EventDataSvc output: SVC='Gaudi::RootCnvSvc' -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] -MCTruthAndBkgCatAlg#1.Background... INFO Will look into [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.DaVinciSma... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] +MCTruthAndBkgCatAlg#1.Background... INFO Will look into protoparticle locations [/Event/HLT2/Relations/ChargedPP2MCP, /Event/HLT2/Relations/NeutralPP2MCP] ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc @@ -147,15 +147,15 @@ HltPackedBufferDecoder#1 INFO Number of counters : 1 MCTruthAndBkgCatAlg#1 INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Events" | 12 | - | "Ghosts" | 93 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | - | "Particles" | 150 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Ghosts" | 107 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | + | "Particles" | 210 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | PP2MCPRelationUnpacker#2 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# PackedData" | 12 | 75 | 6.2500 | + | "# UnpackedData" | 24 | 2319 | 96.625 | PP2MCPRelationUnpacker#3 INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# AbsentBuffer" | 3 | 0 | 0.0000 | - | "# PackedData" | 9 | 1504 | 167.11 | + | "# UnpackedData" | 18 | 32142 | 1785.7 | ParticleUnpacker INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# Linked BufferData" | 132 | 136208 | 1031.9 | diff --git a/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref b/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref index 586f5a4a91650b0151b9ad7445b18bf3d8a70897..9cadda084ea1174108f347ca0914f17aacd09db4 100644 --- a/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref +++ b/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref @@ -137,13 +137,13 @@ DTF INFO Number of counters : 4 | "Events" | 12 | | "Fitted Particles" | 30 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | | "Input Particles" | 12 | 30 | 2.5000 | 1.6073 | 1.0000 | 6.0000 | - | "saved Particles" | 12 | 150 | 12.500 | 8.0364 | 5.0000 | 30.000 | + | "saved Particles" | 12 | 210 | 17.500 | 11.251 | 7.0000 | 42.000 | DTFpv INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Events" | 12 | | "Fitted Particles" | 30 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | | "Input Particles" | 12 | 30 | 2.5000 | 1.6073 | 1.0000 | 6.0000 | - | "saved Particles" | 12 | 150 | 12.500 | 8.0364 | 5.0000 | 30.000 | + | "saved Particles" | 12 | 210 | 17.500 | 11.251 | 7.0000 | 42.000 | HDRFilter_SeeNoEvil INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#passed" | 100 | 12 |( 12.00000 +- 3.249615)% | diff --git a/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref.detdesc b/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref.detdesc index 586f5a4a91650b0151b9ad7445b18bf3d8a70897..9cadda084ea1174108f347ca0914f17aacd09db4 100644 --- a/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref.detdesc +++ b/DaVinciTutorials/tests/refs/test_tutorial6_DecayTreeFit.ref.detdesc @@ -137,13 +137,13 @@ DTF INFO Number of counters : 4 | "Events" | 12 | | "Fitted Particles" | 30 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | | "Input Particles" | 12 | 30 | 2.5000 | 1.6073 | 1.0000 | 6.0000 | - | "saved Particles" | 12 | 150 | 12.500 | 8.0364 | 5.0000 | 30.000 | + | "saved Particles" | 12 | 210 | 17.500 | 11.251 | 7.0000 | 42.000 | DTFpv INFO Number of counters : 4 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Events" | 12 | | "Fitted Particles" | 30 | 0 | 0.0000 | 0.0000 | 4.2950e+09 | 0.0000 | | "Input Particles" | 12 | 30 | 2.5000 | 1.6073 | 1.0000 | 6.0000 | - | "saved Particles" | 12 | 150 | 12.500 | 8.0364 | 5.0000 | 30.000 | + | "saved Particles" | 12 | 210 | 17.500 | 11.251 | 7.0000 | 42.000 | HDRFilter_SeeNoEvil INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | |*"#passed" | 100 | 12 |( 12.00000 +- 3.249615)% |