From 4293ebf170f9318fba0e44b867df6cedb4da7b3d Mon Sep 17 00:00:00 2001 From: Saverio Mariani Date: Mon, 10 Mar 2025 00:23:36 +0100 Subject: [PATCH 1/5] WIP dropping no_ut from AllenOnline tests --- .../{no_ut_output.py => forward_output.py} | 2 +- ...cates.qmt => check_forward_duplicates.qmt} | 8 +- ...de_no_ut_output.qmt => decode_forward.qmt} | 4 +- .../qmtest/{mep_no_ut.qmt => mep_forward.qmt} | 12 +- ...sthrough_no_ut.qmt => mep_passthrough.qmt} | 8 +- ...no_ut.qmt => register_hlt1_pp_forward.qmt} | 2 +- ...ugh_no_ut.qmt => register_passthrough.qmt} | 2 +- AllenOnline/tests/qmtest/test_mep_banks.qmt | 4 +- .../tests/qmtest/test_mep_banks_transpose.qmt | 4 +- AllenOnline/tests/refs/mep_forward.ref | 151 ++++++++++++++++++ 10 files changed, 174 insertions(+), 23 deletions(-) rename AllenOnline/tests/options/{no_ut_output.py => forward_output.py} (96%) rename AllenOnline/tests/qmtest/{check_no_ut_duplicates.qmt => check_forward_duplicates.qmt} (85%) rename AllenOnline/tests/qmtest/{decode_no_ut_output.qmt => decode_forward.qmt} (90%) rename AllenOnline/tests/qmtest/{mep_no_ut.qmt => mep_forward.qmt} (81%) rename AllenOnline/tests/qmtest/{mep_passthrough_no_ut.qmt => mep_passthrough.qmt} (82%) rename AllenOnline/tests/qmtest/{register_hlt1_pp_no_ut.qmt => register_hlt1_pp_forward.qmt} (96%) rename AllenOnline/tests/qmtest/{register_passthrough_no_ut.qmt => register_passthrough.qmt} (95%) create mode 100644 AllenOnline/tests/refs/mep_forward.ref diff --git a/AllenOnline/tests/options/no_ut_output.py b/AllenOnline/tests/options/forward_output.py similarity index 96% rename from AllenOnline/tests/options/no_ut_output.py rename to AllenOnline/tests/options/forward_output.py index 62a4bfe3b..06eba5e5b 100644 --- a/AllenOnline/tests/options/no_ut_output.py +++ b/AllenOnline/tests/options/forward_output.py @@ -15,7 +15,7 @@ options.print_freq = 100 options.data_type = 'Upgrade' options.simulation = not UseDD4Hep options.input_type = 'MDF' -options.input_files = ["mep_no_ut.mdf"] +options.input_files = ["mep_forward.mdf"] if not UseDD4Hep: options.dddb_tag = "upgrade/dddb-20221004" options.conddb_tag = "upgrade/mu_VP_SciFi_macromicrosurvey_from20220923" diff --git a/AllenOnline/tests/qmtest/check_no_ut_duplicates.qmt b/AllenOnline/tests/qmtest/check_forward_duplicates.qmt similarity index 85% rename from AllenOnline/tests/qmtest/check_no_ut_duplicates.qmt rename to AllenOnline/tests/qmtest/check_forward_duplicates.qmt index 9e8e258a9..e24c05077 100644 --- a/AllenOnline/tests/qmtest/check_no_ut_duplicates.qmt +++ b/AllenOnline/tests/qmtest/check_forward_duplicates.qmt @@ -15,12 +15,12 @@ python ${ALLENONLINEROOT}/tests/options/check_duplicates.py - mep_no_ut.mdf - mep_no_ut_rates.json - hlt1_pp_no_ut.json + mep_forward.mdf + mep_forward_rates.json + hlt1_pp_forward.json - mep_no_utPASS + mep_forwardPASS true 600 diff --git a/AllenOnline/tests/qmtest/decode_no_ut_output.qmt b/AllenOnline/tests/qmtest/decode_forward.qmt similarity index 90% rename from AllenOnline/tests/qmtest/decode_no_ut_output.qmt rename to AllenOnline/tests/qmtest/decode_forward.qmt index b3c80ddb6..b0d78914d 100644 --- a/AllenOnline/tests/qmtest/decode_no_ut_output.qmt +++ b/AllenOnline/tests/qmtest/decode_forward.qmt @@ -15,11 +15,11 @@ Run CPU decoding on Allen MDF output created from MEP input gaudirun.py - $ALLENONLINEROOT/tests/options/no_ut_output.py + $ALLENONLINEROOT/tests/options/forward_output.py $ALLENONLINEROOT/tests/options/cpu_decoding.py - mep_no_utPASS + mep_forwardPASS true diff --git a/AllenOnline/tests/qmtest/mep_no_ut.qmt b/AllenOnline/tests/qmtest/mep_forward.qmt similarity index 81% rename from AllenOnline/tests/qmtest/mep_no_ut.qmt rename to AllenOnline/tests/qmtest/mep_forward.qmt index e01bd624c..7c44c545c 100644 --- a/AllenOnline/tests/qmtest/mep_no_ut.qmt +++ b/AllenOnline/tests/qmtest/mep_forward.qmt @@ -15,26 +15,26 @@ python ${BINARYDUMPERSROOT}/options/allen.py - --monitoring-filenamemep_no_ut.root + --monitoring-filenamemep_forward.root -m750 -t3 -n2000 --events-per-slice500 --tagsdetdesc:upgrade/dddb-20221004,upgrade/mu_VP_SciFi_macromicrosurvey_from20220923|dd4hep:run3/trunk,master - --sequencehlt1_pp_no_ut.json + --sequencehlt1_pp_forward.json --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep - --output-filemep_no_ut.mdf + --output-filemep_forward.mdf --register-monitoring-counters0 - register_hlt1_pp_no_utPASS + register_hlt1_pp_forwardPASS true - ../refs/mep_no_ut.ref + ../refs/mep_forward.ref 600 from AllenOnline.qmtest.validators import write_rates_json -write_rates_json(stdout, causes, "mep_no_ut_rates.json") +write_rates_json(stdout, causes, "mep_forward_rates.json") from Allen.qmtest.exclusions import preprocessor from AllenOnline.qmtest.exclusions import skip_mep_provider diff --git a/AllenOnline/tests/qmtest/mep_passthrough_no_ut.qmt b/AllenOnline/tests/qmtest/mep_passthrough.qmt similarity index 82% rename from AllenOnline/tests/qmtest/mep_passthrough_no_ut.qmt rename to AllenOnline/tests/qmtest/mep_passthrough.qmt index 2ef8e3757..930b17f72 100644 --- a/AllenOnline/tests/qmtest/mep_passthrough_no_ut.qmt +++ b/AllenOnline/tests/qmtest/mep_passthrough.qmt @@ -11,19 +11,19 @@ -n2000 --events-per-slice500 --tagsdetdesc:upgrade/dddb-20221004,upgrade/mu_VP_SciFi_macromicrosurvey_from20220923|dd4hep:run3/trunk,master - --sequencepassthrough_no_ut.json + --sequencepassthrough.json --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep - --output-filemep_passthrough_no_ut.mdf + --output-filemep_passthrough.mdf --register-monitoring-counters0 - register_passthrough_no_utPASS + register_passthroughPASS true 600 from AllenOnline.qmtest.validators import write_rates_json -write_rates_json(stdout, causes, "mep_passthrough_no_ut.json") +write_rates_json(stdout, causes, "mep_passthrough.json") countErrorLines({"FATAL":0,"ERROR":0,"WARNING":0}) diff --git a/AllenOnline/tests/qmtest/register_hlt1_pp_no_ut.qmt b/AllenOnline/tests/qmtest/register_hlt1_pp_forward.qmt similarity index 96% rename from AllenOnline/tests/qmtest/register_hlt1_pp_no_ut.qmt rename to AllenOnline/tests/qmtest/register_hlt1_pp_forward.qmt index ab6108ce8..efe79713b 100644 --- a/AllenOnline/tests/qmtest/register_hlt1_pp_no_ut.qmt +++ b/AllenOnline/tests/qmtest/register_hlt1_pp_forward.qmt @@ -15,7 +15,7 @@ python ${ALLENONLINEROOT}/tests/options/sequence_with_tck.py - hlt1_pp_no_ut + hlt1_pp_forward true 600 diff --git a/AllenOnline/tests/qmtest/register_passthrough_no_ut.qmt b/AllenOnline/tests/qmtest/register_passthrough.qmt similarity index 95% rename from AllenOnline/tests/qmtest/register_passthrough_no_ut.qmt rename to AllenOnline/tests/qmtest/register_passthrough.qmt index aa66ad652..02aeec4cc 100644 --- a/AllenOnline/tests/qmtest/register_passthrough_no_ut.qmt +++ b/AllenOnline/tests/qmtest/register_passthrough.qmt @@ -6,7 +6,7 @@ python ${ALLENONLINEROOT}/tests/options/sequence_with_tck.py - passthrough_no_ut + passthrough true 600 diff --git a/AllenOnline/tests/qmtest/test_mep_banks.qmt b/AllenOnline/tests/qmtest/test_mep_banks.qmt index fa7b9e116..c5944922a 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks.qmt @@ -18,11 +18,11 @@ --nevents2000 --eps500 --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep - --mdfmep_passthrough_no_ut.mdf + --mdfmep_passthrough.mdf true - mep_passthrough_no_utPASS + mep_passthroughPASS ../refs/test_mep_banks.ref 600 diff --git a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt index 06badf12d..72cf33475 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt @@ -19,11 +19,11 @@ --nevents2000 --eps500 --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep - --mdfmep_passthrough_no_ut.mdf + --mdfmep_passthrough.mdf true - mep_passthrough_no_utPASS + mep_passthroughPASS ../refs/test_mep_banks_transpose-SYMLINK-DO_NOT_UPDATE_WITH_NEW.ref 600 diff --git a/AllenOnline/tests/refs/mep_forward.ref b/AllenOnline/tests/refs/mep_forward.ref new file mode 100644 index 000000000..36ef30f17 --- /dev/null +++ b/AllenOnline/tests/refs/mep_forward.ref @@ -0,0 +1,151 @@ +HLTControlFlowMgr INFO Start initialization +HLTControlFlowMgr INFO Will not use an EventSelector. +HLTControlFlowMgr INFO Concurrency level information: +HLTControlFlowMgr INFO o Number of events slots: 1 +HLTControlFlowMgr INFO o TBB thread pool size: 'ThreadPoolSize':1 +ApplicationMgr INFO Application Manager Initialized successfully + rate_validator + global_decision + make_selected_object_lists + make_subbanks + make_selreps + host_routingbits_writer +ApplicationMgr INFO Application Manager Started successfully +HLTControlFlowMgr INFO Will measure time between events 0 and 0 (stop might be some events later) +HLTControlFlowMgr INFO Starting loop on events +DeviceFTGeometry INFO Conditions DB is compatible with FT bank version 7 and 8. +Starting timer for throughput measurement +Input complete +calo_find_clusters INFO Booked 6 Histogram(s) : 1D=6 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +error_bank_filter INFO Booked 10 Histogram(s) : 1D=10 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +fit_dihadron_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +fit_dilepton_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +fit_prompt_dihadron_secondary_ve... INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +fit_v0_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +gather_selections INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +make_long_track_particles INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +pv_beamline_cleanup INFO Booked 6 Histogram(s) : 1D=6 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +scifi_consolidate_tracks_forward INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +velo_consolidate_tracks INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +velo_kalman_filter INFO Booked 9 Histogram(s) : 1D=9 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +ApplicationMgr INFO Application Manager Stopped successfully +HLTControlFlowMgr INFO +HLTControlFlowMgr INFO StateTree: CFNode #executed #passed +NONLAZY_OR: allen_non_event_data #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + AllenODINProducer/AllenODINProducer_e608fece #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpBeamline/DeviceBeamline #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpVPGeometry/DeviceVPGeometry #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpUTGeometry/DeviceUTGeometry #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpUTLookupTables/DeviceUTLookupTables #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpCaloGeometry/DeviceCaloGeometry #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpMagneticField/DeviceMagneticField #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpFTGeometry/DeviceFTGeometry #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpMuonGeometry/DeviceMuonGeometry #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| + DumpMuonTable/DeviceMuonTable #=1 Sum=1 Eff=|( 100.0000 +- 0.00000 )%| +HLTControlFlowMgr INFO Histograms converted successfully according to request. +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +Bursts INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "IN" | 1 | +Events INFO Number of counters : 3 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "IN" | 2000 | + | "MB_IN" | 1055 | + | "SLICED" | 2000 | +HLTControlFlowMgr INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Processed events" | 1 | +calo_filter_clusters_b3e43409 INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "n_calo_clusters" | 1643 | 40944 | 24.920 | +gather_selections INFO Number of counters : 15 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Hlt1DiPhotonHighMassPass" | 2 | + | "Hlt1DiPhotonHighMassRate" | 2 | + | "Hlt1ODINCalibPass" | 2 | + | "Hlt1ODINCalibRate" | 2 | + | "Hlt1ODINLumiPass" | 6 | + | "Hlt1ODINLumiRate" | 6 | + | "Hlt1OneMuonTrackLinePass" | 516 | + | "Hlt1Pi02GammaGammaPass" | 27 | + | "Hlt1Pi02GammaGammaRate" | 27 | + | "Hlt1SMOG2PassThroughLowMult5Pass" | 2 | + | "Hlt1SMOG2PassThroughLowMult5Rate" | 2 | + | "Hlt1TAEPassthroughPass" | 1 | + | "Hlt1TAEPassthroughRate" | 1 | + | "Hlt1VeloMicroBiasPass" | 1580 | + | "Hlt1VeloMicroBiasRate" | 2 | +pv_beamline_cleanup INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "n_PVs" | 2000 | 176 | 0.088000 | +scifi_consolidate_tracks_forward INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "n_long_tracks_forward" | 1643 | 0 | 0.0000 | +velo_consolidate_tracks INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "n_velo_tracks" | 2000 | 177852 | 88.926 | +calo_find_clusters INFO 1D histograms in directory "calo_find_clusters" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | ecal_cluster_e | "EcalClusterE" | 40544 | 7580.5 | 7420.7 | 2.4102 | 6.8078 | + | ecal_cluster_et | "EcalClusterEt" | 40827 | 733.92 | 408.61 | 2.6061 | 12.283 | + | ecal_cluster_x | "EcalClusterX" | 40944 | 10.073 | 1907.9 | 0.0048697 | -0.75126 | + | ecal_cluster_y | "EcalClusterY" | 40944 | 2.4477 | 998.50 | -0.03811 | 1.4607 | + | ecal_digit_e | "EcalDigitE" | 73424 | 1570.3 | 1507.6 | 2.2918 | 6.3338 | + | n_ecal_clusters | "NClusters" | 1643 | 24.92 | 20.272 | 1.1432 | 1.4233 | +error_bank_filter INFO 1D histograms in directory "error_bank_filter" : 10 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | ECal_banks | "ECal_banks" | 142000 | 0 | 0.0000 | 0 | 0 | + | FTCluster_banks | "FTCluster_banks" | 480000 | 0 | 0.0000 | 0 | 0 | + | HCal_banks | "HCal_banks" | 40000 | 0 | 0.0000 | 0 | 0 | + | Muon_banks | "Muon_banks" | 88000 | 0 | 0.0000 | 0 | 0 | + | ODIN_banks | "ODIN_banks" | 2000 | 0 | 0.0000 | 0 | 0 | + | Plume_banks | "Plume_banks" | 6000 | 0 | 0.0000 | 0 | 0 | + | Rich1_banks | "Rich1_banks" | 160000 | 0 | 0.0000 | 0 | 0 | + | Rich2_banks | "Rich2_banks" | 126000 | 0 | 0.0000 | 0 | 0 | + | VP_banks | "VP_banks" | 204000 | 2 | 0.0000 | 0 | 0 | + | n_data_banks | "n_data_banks" | 1248000 | 4.6651 | 3.2687 | -0.23139 | -1.2746 | +fit_dihadron_secondary_vertices INFO 1D histograms in directory "fit_dihadron_secondary_vertices" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | +fit_dilepton_secondary_vertices INFO 1D histograms in directory "fit_dilepton_secondary_vertices" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | +fit_prompt_dihadron_secondary_ve... INFO 1D histograms in directory "fit_prompt_dihadron_secondary_vertices" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | number_of_svs | "NSVs" | 1 | 0 | 0.0000 | 0 | 0 | +fit_v0_secondary_vertices INFO 1D histograms in directory "fit_v0_secondary_vertices" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | +gather_selections INFO 1D histograms in directory "gather_selections" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | line_passes | "line passes" | 2136 | 87.695 | 14.874 | -1.1035 | -0.76883 | + | line_rates | "line rates" | 42 | 66.429 | 9.3411 | 1.6723 | 3.7856 | +make_long_track_particles INFO 1D histograms in directory "make_long_track_particles" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | number_of_trks | "NTrks" | 1643 | 0 | 0.0000 | 0 | 0 | +pv_beamline_cleanup INFO 1D histograms in directory "pv_beamline_cleanup" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | n_pvs_event | "n_pvs_event" | 2000 | 0.088 | 0.33505 | 4.1659 | 18.392 | + | n_smog2_PVs | "n_smog2_PVs" | 2000 | 0.0005 | 0.022355 | 44.688 | 1995 | + | pv_x | "pv_x" | 175 | -0.0051314 | 0.11268 | -0.049951 | -0.18302 | + | pv_y | "pv_y" | 175 | -0.0044229 | 0.077259 | -0.029838 | 0.19669 | + | pv_z | "pv_z" | 175 | -4.8217 | 36.457 | 0.11442 | 0.072819 | + | smogpv_z | "smogpv_z" | 1 | -471 | 0.0000 | 0 | 0 | +scifi_consolidate_tracks_forward INFO 1D histograms in directory "scifi_consolidate_tracks_forward" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | n_long_tracks_forward_event | "n_long_tracks_forward_event" | 1643 | 0 | 0.0000 | 0 | 0 | +velo_consolidate_tracks INFO 1D histograms in directory "velo_consolidate_tracks" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | n_velo_tracks_event | "n_velo_tracks_event" | 2000 | 88.926 | 84.233 | 1.0259 | 0.74499 | +velo_kalman_filter INFO 1D histograms in directory "velo_kalman_filter" : 9 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | velo_backward_track_eta | "#backward_eta" | 48690 | -3.1246 | 0.66580 | -0.26237 | 2.2948 | + | velo_backward_track_nhits | "backward N. hits / track" | 48691 | 4.0562 | 0.86803 | 1.5889 | 15.41 | + | velo_backward_track_phi | "#backward_phi" | 48691 | -0.096037 | 1.8940 | 0.00062964 | -1.3393 | + | velo_forward_track_eta | "#forward_eta" | 129161 | 3.3912 | 0.94999 | -0.012974 | -0.68893 | + | velo_forward_track_nhits | "forward N. hits / track" | 129161 | 5.0536 | 2.0545 | 1.3047 | 1.5885 | + | velo_forward_track_phi | "#forward_phi" | 129161 | -0.25746 | 1.8420 | 0.22181 | -1.1454 | + | velo_total_track_eta | "#total_eta" | 177851 | 1.6074 | 3.0361 | -0.82649 | -0.93533 | + | velo_total_track_nhits | "total N. hits / track" | 177852 | 4.7806 | 1.8626 | 1.6209 | 3.0215 | + | velo_total_track_phi | "#total_phi" | 177852 | -0.21326 | 1.8578 | 0.16017 | -1.2128 | -- GitLab From b0c0b2c139a773a670833d83067167d0ac2ec1a2 Mon Sep 17 00:00:00 2001 From: Saverio Mariani Date: Thu, 27 Mar 2025 09:51:26 +0100 Subject: [PATCH 2/5] Update input files for several AllenOnline tests --- AllenOnline/tests/qmtest/mep_forward.qmt | 6 ++++-- AllenOnline/tests/qmtest/mep_passthrough.qmt | 5 +++-- AllenOnline/tests/qmtest/mep_real_data.qmt | 6 +++--- AllenOnline/tests/qmtest/test_mep_banks.qmt | 4 ++-- AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt | 4 ++-- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/AllenOnline/tests/qmtest/mep_forward.qmt b/AllenOnline/tests/qmtest/mep_forward.qmt index 7c44c545c..aab5822f8 100644 --- a/AllenOnline/tests/qmtest/mep_forward.qmt +++ b/AllenOnline/tests/qmtest/mep_forward.qmt @@ -13,6 +13,7 @@ --> python + detdesc ${BINARYDUMPERSROOT}/options/allen.py --monitoring-filenamemep_forward.root @@ -20,11 +21,12 @@ -t3 -n2000 --events-per-slice500 - --tagsdetdesc:upgrade/dddb-20221004,upgrade/mu_VP_SciFi_macromicrosurvey_from20220923|dd4hep:run3/trunk,master + --tagsrun3/2024.Q1.2-v00.00,master --sequencehlt1_pp_forward.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --output-filemep_forward.mdf --register-monitoring-counters0 + --real-data register_hlt1_pp_forwardPASS diff --git a/AllenOnline/tests/qmtest/mep_passthrough.qmt b/AllenOnline/tests/qmtest/mep_passthrough.qmt index 930b17f72..eb5258ba9 100644 --- a/AllenOnline/tests/qmtest/mep_passthrough.qmt +++ b/AllenOnline/tests/qmtest/mep_passthrough.qmt @@ -4,15 +4,16 @@ --> python + detdesc ${BINARYDUMPERSROOT}/options/allen.py -m750 -t3 -n2000 --events-per-slice500 - --tagsdetdesc:upgrade/dddb-20221004,upgrade/mu_VP_SciFi_macromicrosurvey_from20220923|dd4hep:run3/trunk,master + --tagsrun3/2024.Q1.2-v00.00,master --sequencepassthrough.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --output-filemep_passthrough.mdf --register-monitoring-counters0 diff --git a/AllenOnline/tests/qmtest/mep_real_data.qmt b/AllenOnline/tests/qmtest/mep_real_data.qmt index a9607c95b..30f013587 100644 --- a/AllenOnline/tests/qmtest/mep_real_data.qmt +++ b/AllenOnline/tests/qmtest/mep_real_data.qmt @@ -21,9 +21,9 @@ -m750 -t3 --events-per-slice1000 - --tagsrun3/trunk,master - --sequence${ALLEN_INSTALL_DIR}/constants/hlt1_pp_matching_no_muon_veloSP.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/247547-LHCb-MEP/bu_247547_BU_0000.mep + --tagsrun3/2024.Q1.2-v00.00,master + --sequence${ALLEN_INSTALL_DIR}/constants/hlt1_pp_default.json + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --register-monitoring-counters0 --enable-run-changes --real-data diff --git a/AllenOnline/tests/qmtest/test_mep_banks.qmt b/AllenOnline/tests/qmtest/test_mep_banks.qmt index c5944922a..6e681493e 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks.qmt @@ -14,10 +14,10 @@ allen_mep_test_banks - --subdetectorsVP,FTCluster,ECal,Muon,ODIN + --subdetectorsVP,UT,FTCluster,ECal,Muon,ODIN --nevents2000 --eps500 - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --mdfmep_passthrough.mdf true diff --git a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt index 72cf33475..32b1ad56b 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt @@ -14,11 +14,11 @@ allen_mep_test_banks - --subdetectorsVP,FTCluster,ECal,Muon,ODIN + --subdetectorsVP,UT,FTCluster,ECal,Muon,ODIN --transpose-mep --nevents2000 --eps500 - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/253895-LHCb-MEP/bu_253895_LHCb_ECEB02_BU_0.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --mdfmep_passthrough.mdf true -- GitLab From 168130d98ad5482a94997246c19ca14173102ea0 Mon Sep 17 00:00:00 2001 From: Saverio Mariani Date: Thu, 27 Mar 2025 23:46:44 +0100 Subject: [PATCH 3/5] Disable a few tests for DetDesc, as now MEP is data --- .../tests/qmtest/check_forward_duplicates.qmt | 1 + AllenOnline/tests/qmtest/decode_forward.qmt | 1 + AllenOnline/tests/qmtest/test_mep_banks.qmt | 1 + .../tests/qmtest/test_mep_banks_transpose.qmt | 1 + AllenOnline/tests/refs/mep_forward.ref | 273 ++++++++++++++---- 5 files changed, 213 insertions(+), 64 deletions(-) diff --git a/AllenOnline/tests/qmtest/check_forward_duplicates.qmt b/AllenOnline/tests/qmtest/check_forward_duplicates.qmt index e24c05077..f75b86eea 100644 --- a/AllenOnline/tests/qmtest/check_forward_duplicates.qmt +++ b/AllenOnline/tests/qmtest/check_forward_duplicates.qmt @@ -13,6 +13,7 @@ --> python + detdesc ${ALLENONLINEROOT}/tests/options/check_duplicates.py mep_forward.mdf diff --git a/AllenOnline/tests/qmtest/decode_forward.qmt b/AllenOnline/tests/qmtest/decode_forward.qmt index b0d78914d..62c4a5c6c 100644 --- a/AllenOnline/tests/qmtest/decode_forward.qmt +++ b/AllenOnline/tests/qmtest/decode_forward.qmt @@ -13,6 +13,7 @@ Run CPU decoding on Allen MDF output created from MEP input --> + detdesc gaudirun.py $ALLENONLINEROOT/tests/options/forward_output.py diff --git a/AllenOnline/tests/qmtest/test_mep_banks.qmt b/AllenOnline/tests/qmtest/test_mep_banks.qmt index 6e681493e..3ed71c904 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks.qmt @@ -13,6 +13,7 @@ --> allen_mep_test_banks + detdesc --subdetectorsVP,UT,FTCluster,ECal,Muon,ODIN --nevents2000 diff --git a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt index 32b1ad56b..190642fb8 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt @@ -13,6 +13,7 @@ --> allen_mep_test_banks + detdesc --subdetectorsVP,UT,FTCluster,ECal,Muon,ODIN --transpose-mep diff --git a/AllenOnline/tests/refs/mep_forward.ref b/AllenOnline/tests/refs/mep_forward.ref index 36ef30f17..c05714ea5 100644 --- a/AllenOnline/tests/refs/mep_forward.ref +++ b/AllenOnline/tests/refs/mep_forward.ref @@ -14,18 +14,34 @@ ApplicationMgr INFO Application Manager Started successf HLTControlFlowMgr INFO Will measure time between events 0 and 0 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events DeviceFTGeometry INFO Conditions DB is compatible with FT bank version 7 and 8. +DeviceFTGeometry INFO Deactivated 38 links. Starting timer for throughput measurement Input complete +Hlt1D2KK INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1D2KPi INFO Booked 6 Histogram(s) : 1D=6 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1D2PiPi INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiElectronLowMass_NoIP INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiElectronLowMass_NoIPNorm INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiElectronLowMass_SS_NoIP INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiElectronLowMass_SS_NoIPNorm INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiMuonHighMass INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiMuonNoIP INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1DiMuonNoIP_SS INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1Dst2D0Pi INFO Booked 3 Histogram(s) : 1D=3 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1Dst2D0PiAlignment INFO Booked 3 Histogram(s) : 1D=3 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1KsToPiPi INFO Booked 4 Histogram(s) : 1D=4 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1TrackMVA INFO Booked 3 Histogram(s) : 1D=3 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +Hlt1TwoTrackMVA INFO Booked 7 Histogram(s) : 1D=7 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 calo_find_clusters INFO Booked 6 Histogram(s) : 1D=6 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 -error_bank_filter INFO Booked 10 Histogram(s) : 1D=10 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +error_bank_filter INFO Booked 13 Histogram(s) : 1D=13 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 fit_dihadron_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 fit_dilepton_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 -fit_prompt_dihadron_secondary_ve... INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 fit_v0_secondary_vertices INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 gather_selections INFO Booked 2 Histogram(s) : 1D=2 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 -make_long_track_particles INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 -pv_beamline_cleanup INFO Booked 6 Histogram(s) : 1D=6 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 -scifi_consolidate_tracks_forward INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +is_muon INFO Booked 3 Histogram(s) : 1D=3 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +make_long_track_particles INFO Booked 4 Histogram(s) : 1D=4 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +pv_beamline_cleanup INFO Booked 5 Histogram(s) : 1D=5 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +scifi_consolidate_tracks_forward INFO Booked 5 Histogram(s) : 1D=5 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 velo_consolidate_tracks INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 velo_kalman_filter INFO Booked 9 Histogram(s) : 1D=9 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 ApplicationMgr INFO Application Manager Stopped successfully @@ -51,101 +67,230 @@ Bursts INFO Number of counters : 1 Events INFO Number of counters : 3 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "IN" | 2000 | - | "MB_IN" | 1055 | + | "MB_IN" | 1736 | | "SLICED" | 2000 | HLTControlFlowMgr INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Processed events" | 1 | calo_filter_clusters_b3e43409 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "n_calo_clusters" | 1643 | 40944 | 24.920 | -gather_selections INFO Number of counters : 15 + | "n_calo_clusters" | 1806 | 79482 | 44.010 | +error_bank_filter INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Hlt1DiPhotonHighMassPass" | 2 | - | "Hlt1DiPhotonHighMassRate" | 2 | - | "Hlt1ODINCalibPass" | 2 | - | "Hlt1ODINCalibRate" | 2 | - | "Hlt1ODINLumiPass" | 6 | - | "Hlt1ODINLumiRate" | 6 | - | "Hlt1OneMuonTrackLinePass" | 516 | - | "Hlt1Pi02GammaGammaPass" | 27 | - | "Hlt1Pi02GammaGammaRate" | 27 | - | "Hlt1SMOG2PassThroughLowMult5Pass" | 2 | - | "Hlt1SMOG2PassThroughLowMult5Rate" | 2 | - | "Hlt1TAEPassthroughPass" | 1 | - | "Hlt1TAEPassthroughRate" | 1 | - | "Hlt1VeloMicroBiasPass" | 1580 | - | "Hlt1VeloMicroBiasRate" | 2 | + | "n_UT_error_banks" | 33425 | +gather_selections INFO Number of counters : 56 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "Hlt1BGIPseudoPVsIRBeamBeamPass" | 2 | + | "Hlt1BGIPseudoPVsIRBeamBeamRate" | 2 | + | "Hlt1D2KKPass" | 4 | + | "Hlt1D2KKRate" | 4 | + | "Hlt1D2KPiPass" | 3 | + | "Hlt1D2KPiRate" | 3 | + | "Hlt1D2PiPiPass" | 5 | + | "Hlt1D2PiPiRate" | 5 | + | "Hlt1DiElectronDisplacedPass" | 3 | + | "Hlt1DiElectronDisplacedRate" | 3 | + | "Hlt1DiElectronLowMass_DisplacedPass" | 1 | + | "Hlt1DiElectronLowMass_DisplacedRate" | 1 | + | "Hlt1DiElectronLowMass_NoIPNormPass" | 1 | + | "Hlt1DiElectronLowMass_NoIPNormRate" | 1 | + | "Hlt1DiElectronLowMass_SS_NoIPNormPass" | 5 | + | "Hlt1DiElectronLowMass_SS_NoIPPass" | 1 | + | "Hlt1DiMuonDisplacedPass" | 24 | + | "Hlt1DiMuonDisplacedRate" | 24 | + | "Hlt1DiMuonDrellYanPass" | 1 | + | "Hlt1DiMuonDrellYanRate" | 1 | + | "Hlt1DiMuonHighMassPass" | 9 | + | "Hlt1DiMuonHighMassRate" | 9 | + | "Hlt1DiMuonNoIPPass" | 1 | + | "Hlt1DiMuonNoIPRate" | 1 | + | "Hlt1DiMuonNoIP_SSPass" | 1 | + | "Hlt1DiMuonSoftPass" | 2 | + | "Hlt1DiMuonSoftRate" | 2 | + | "Hlt1DiPhotonHighMassPass" | 1 | + | "Hlt1DiPhotonHighMassRate" | 1 | + | "Hlt1Dst2D0PiAlignmentPass" | 1 | + | "Hlt1Dst2D0PiAlignmentRate" | 1 | + | "Hlt1Dst2D0PiPass" | 1 | + | "Hlt1Dst2D0PiRate" | 1 | + | "Hlt1ErrorBankPass" | 1 | + | "Hlt1ErrorBankRate" | 1 | + | "Hlt1KsToPiPiPass" | 50 | + | "Hlt1ODIN1kHzLumiPass" | 1 | + | "Hlt1ODIN1kHzLumiRate" | 1 | + | "Hlt1ODINLumiPass" | 1 | + | "Hlt1ODINLumiRate" | 1 | + | "Hlt1OneMuonTrackLinePass" | 1130 | + | "Hlt1OneMuonTrackLineRate" | 3 | + | "Hlt1SingleHighPtElectronPass" | 1 | + | "Hlt1SingleHighPtElectronRate" | 1 | + | "Hlt1SingleHighPtMuonNoMuIDPass" | 1 | + | "Hlt1SingleHighPtMuonNoMuIDRate" | 1 | + | "Hlt1TrackElectronMVAPass" | 10 | + | "Hlt1TrackElectronMVARate" | 10 | + | "Hlt1TrackMVAPass" | 14 | + | "Hlt1TrackMVARate" | 14 | + | "Hlt1TrackMuonMVAPass" | 1 | + | "Hlt1TrackMuonMVARate" | 1 | + | "Hlt1TwoTrackMVAPass" | 28 | + | "Hlt1TwoTrackMVARate" | 28 | + | "Hlt1VeloMicroBiasPass" | 1802 | + | "Hlt1VeloMicroBiasRate" | 3 | pv_beamline_cleanup INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "n_PVs" | 2000 | 176 | 0.088000 | + | "n_PVs" | 2000 | 8014 | 4.0070 | +scifi_calculate_cluster_count_76... INFO Number of counters : 1 + | Counter | # | sum | mean/eff^* | rms/err^* | min | max | + | "n_misordered_cluster" | 14 | scifi_consolidate_tracks_forward INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "n_long_tracks_forward" | 1643 | 0 | 0.0000 | + | "n_long_tracks_forward" | 1806 | 40765 | 22.572 | velo_consolidate_tracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "n_velo_tracks" | 2000 | 177852 | 88.926 | + | "n_velo_tracks" | 2000 | 415642 | 207.82 | +Hlt1D2KK INFO 1D histograms in directory "Hlt1D2KK" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d02kk_mass | "m(D0)" | 4 | 1822.5 | 47.505 | 1.0918 | -0.7211 | + | d02kk_pt | "pT(D0)" | 4 | 2755 | 237.91 | -0.24394 | -1.2555 | +Hlt1D2KPi INFO 1D histograms in directory "Hlt1D2KPi" : 6 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d0_mass | "m(D0)" | 5 | 1860.4 | 69.310 | -0.072207 | -1.5987 | + | d0_pt | "pT(D0)" | 3 | 3146 | 791.41 | 0.1728 | -1.5 | + | p0_ipx | "IP_{x}(p0)" | 3 | 0.05 | 0.056569 | -0.70711 | -1.5 | + | p0_ipy | "IP_{y}(p0)" | 3 | 0.05 | 0.028284 | 0.70711 | -1.5 | + | p1_ipx | "IP_{x}(p1)" | 3 | 0.09 | 0.12961 | 0.59517 | -1.5 | + | p1_ipy | "IP_{y}(p1)" | 3 | -0.15 | 0.048990 | 0 | -1.5 | +Hlt1D2PiPi INFO 1D histograms in directory "Hlt1D2PiPi" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d02pipi_mass | "m(D0)" | 5 | 1864.4 | 52.739 | -0.60918 | -1.0311 | + | d02pipi_pt | "pT(D0)" | 5 | 2557.2 | 803.30 | 1.4727 | 0.2148 | +Hlt1DiElectronLowMass_NoIP INFO 1D histograms in directory "Hlt1DiElectronLowMass_NoIP" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dielectron_mass_counts | "dielectron masses" | 7 | 1366.6 | 99.071 | -0.53692 | -1.1323 | + | dielectron_mass_counts_brem | "dielectron masses with brem" | 6 | 1403.8 | 55.902 | -1.3228 | 0.45458 | +Hlt1DiElectronLowMass_NoIPNorm INFO 1D histograms in directory "Hlt1DiElectronLowMass_NoIPNorm" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dielectron_mass_counts | "dielectron masses" | 31 | 1372.6 | 125.00 | -1.077 | 0.32678 | + | dielectron_mass_counts_brem | "dielectron masses with brem" | 27 | 1385.7 | 114.45 | -1.2281 | 0.95324 | +Hlt1DiElectronLowMass_SS_NoIP INFO 1D histograms in directory "Hlt1DiElectronLowMass_SS_NoIP" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dielectron_mass_counts | "dielectron masses" | 9 | 1360.4 | 200.36 | -2.2716 | 3.5485 | + | dielectron_mass_counts_brem | "dielectron masses with brem" | 5 | 1332.8 | 244.89 | -1.4881 | 0.23409 | +Hlt1DiElectronLowMass_SS_NoIPNorm INFO 1D histograms in directory "Hlt1DiElectronLowMass_SS_NoIPNorm" : 2 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dielectron_mass_counts | "dielectron masses" | 29 | 1285.5 | 223.86 | -1.4399 | 1.0214 | + | dielectron_mass_counts_brem | "dielectron masses with brem" | 23 | 1288.5 | 227.20 | -1.4256 | 1.0068 | +Hlt1DiMuonHighMass INFO 1D histograms in directory "Hlt1DiMuonHighMass" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | Jpsi_mass | "m(J/Psi)" | 4 | 3044 | 151.15 | 0.79887 | -1.0144 | +Hlt1DiMuonNoIP INFO 1D histograms in directory "Hlt1DiMuonNoIP" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dimuon_q | "dimuon q" | 1 | 26326 | 0.0000 | 0 | 0 | +Hlt1DiMuonNoIP_SS INFO 1D histograms in directory "Hlt1DiMuonNoIP_SS" : 1 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | dimuon_q | "dimuon q" | 1 | 22243 | 0.0000 | 0 | 0 | +Hlt1Dst2D0Pi INFO 1D histograms in directory "Hlt1Dst2D0Pi" : 3 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d0_mass | "m(D0)" | 1 | 1850 | 0.0000 | 0 | 0 | + | d0_pt | "pT(D0)" | 1 | 2550 | 0.0000 | 0 | 0 | + | dst_dm | "m(D*)-m(D0)" | 1 | 158.88 | 0.0000 | 0 | 0 | +Hlt1Dst2D0PiAlignment INFO 1D histograms in directory "Hlt1Dst2D0PiAlignment" : 3 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d0_mass | "m(D0)" | 1 | 1850 | 0.0000 | 0 | 0 | + | d0_pt | "pT(D0)" | 1 | 2550 | 0.0000 | 0 | 0 | + | dst_dm | "m(D*)-m(D0)" | 1 | 158.88 | 0.0000 | 0 | 0 | +Hlt1KsToPiPi INFO 1D histograms in directory "Hlt1KsToPiPi" : 4 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | ks_mass | "m(ks)" | 51 | 496.8 | 7.2842 | -2.3174 | 8.081 | + | ks_pt | "pT(ks)" | 51 | 1414.7 | 564.58 | 1.3553 | 2.849 | + | p0_ghost_prob | "track0 GhostProb" | 51 | 0.059353 | 0.10717 | 2.5571 | 5.5801 | + | p1_ghost_prob | "track1 GhostProb" | 51 | 0.047941 | 0.088257 | 3.2138 | 11.831 | +Hlt1TrackMVA INFO 1D histograms in directory "Hlt1TrackMVA" : 3 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | ghost_prob | "track GhostProb" | 14 | 0.097714 | 0.15753 | 1.4195 | 0.46734 | + | ip_x | "IP_{x}" | 14 | -0.098571 | 0.41869 | -3.1893 | 8.5189 | + | ip_y | "IP_{y}" | 14 | -0.038571 | 0.12800 | 0.62791 | -0.072191 | +Hlt1TwoTrackMVA INFO 1D histograms in directory "Hlt1TwoTrackMVA" : 7 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | d0_mass | "m(K#pi)" | 4 | 1853.5 | 46.441 | 0.41434 | -1.4328 | + | p0_ghost_prob | "track0 GhostProb" | 33 | 0.056091 | 0.099889 | 2.3597 | 4.2701 | + | p0_ip_x | "IP_{x}(p0)" | 30 | -0.03 | 0.18590 | -0.62533 | 2.5946 | + | p0_ip_y | "IP_{y}(p0)" | 30 | 0.018 | 0.34481 | -2.6416 | 8.8351 | + | p1_ghost_prob | "track1 GhostProb" | 33 | 0.037909 | 0.088237 | 3.6343 | 12.729 | + | p1_ip_x | "IP_{x}(p1)" | 28 | 0.072857 | 0.48502 | 1.1136 | 6.2064 | + | p1_ip_y | "IP_{y}(p1)" | 30 | 0.002 | 0.92677 | 0.75325 | 5.0615 | calo_find_clusters INFO 1D histograms in directory "calo_find_clusters" : 6 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | ecal_cluster_e | "EcalClusterE" | 40544 | 7580.5 | 7420.7 | 2.4102 | 6.8078 | - | ecal_cluster_et | "EcalClusterEt" | 40827 | 733.92 | 408.61 | 2.6061 | 12.283 | - | ecal_cluster_x | "EcalClusterX" | 40944 | 10.073 | 1907.9 | 0.0048697 | -0.75126 | - | ecal_cluster_y | "EcalClusterY" | 40944 | 2.4477 | 998.50 | -0.03811 | 1.4607 | - | ecal_digit_e | "EcalDigitE" | 73424 | 1570.3 | 1507.6 | 2.2918 | 6.3338 | - | n_ecal_clusters | "NClusters" | 1643 | 24.92 | 20.272 | 1.1432 | 1.4233 | -error_bank_filter INFO 1D histograms in directory "error_bank_filter" : 10 + | ecal_cluster_e | "EcalClusterE" | 77480 | 8522 | 8316.5 | 2.171 | 5.1041 | + | ecal_cluster_et | "EcalClusterEt" | 78656 | 816.6 | 480.25 | 2.2545 | 8.2416 | + | ecal_cluster_x | "EcalClusterX" | 79482 | 4.8606 | 1893.7 | 1.9517e-05 | -0.69287 | + | ecal_cluster_y | "EcalClusterY" | 79482 | 7.6742 | 991.81 | -0.014657 | 1.546 | + | ecal_digit_e | "EcalDigitE" | 161283 | 1755.1 | 1661.4 | 2.0408 | 4.6573 | + | n_ecal_clusters | "NClusters" | 1806 | 44.01 | 26.678 | 0.77836 | 0.42149 | +error_bank_filter INFO 1D histograms in directory "error_bank_filter" : 13 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | ECal_banks | "ECal_banks" | 142000 | 0 | 0.0000 | 0 | 0 | | FTCluster_banks | "FTCluster_banks" | 480000 | 0 | 0.0000 | 0 | 0 | | HCal_banks | "HCal_banks" | 40000 | 0 | 0.0000 | 0 | 0 | | Muon_banks | "Muon_banks" | 88000 | 0 | 0.0000 | 0 | 0 | | ODIN_banks | "ODIN_banks" | 2000 | 0 | 0.0000 | 0 | 0 | - | Plume_banks | "Plume_banks" | 6000 | 0 | 0.0000 | 0 | 0 | + | Plume_banks | "Plume_banks" | 8000 | 0 | 0.0000 | 0 | 0 | | Rich1_banks | "Rich1_banks" | 160000 | 0 | 0.0000 | 0 | 0 | | Rich2_banks | "Rich2_banks" | 126000 | 0 | 0.0000 | 0 | 0 | + | UT_banks | "UT_banks" | 432000 | 0.15475 | 0.53436 | 3.1636 | 8.0083 | | VP_banks | "VP_banks" | 204000 | 2 | 0.0000 | 0 | 0 | - | n_data_banks | "n_data_banks" | 1248000 | 4.6651 | 3.2687 | -0.23139 | -1.2746 | + | error_banks_per_daq_source | "error_banks_per_daq_source" | 33425 | 5.5418 | 0.49825 | -0.16771 | -1.9719 | + | n_data_banks | "n_data_banks" | 1648575 | 4.9943 | 2.9061 | -0.55963 | -0.70847 | + | n_error_banks | "n_error_banks" | 33425 | 2 | 0.0000 | 0 | 0 | fit_dihadron_secondary_vertices INFO 1D histograms in directory "fit_dihadron_secondary_vertices" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | + | number_of_svs | "NSVs" | 1806 | 17.274 | 21.622 | 2.7167 | 11.91 | fit_dilepton_secondary_vertices INFO 1D histograms in directory "fit_dilepton_secondary_vertices" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | -fit_prompt_dihadron_secondary_ve... INFO 1D histograms in directory "fit_prompt_dihadron_secondary_vertices" : 1 - | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | number_of_svs | "NSVs" | 1 | 0 | 0.0000 | 0 | 0 | + | number_of_svs | "NSVs" | 1806 | 4.562 | 9.6493 | 5.5103 | 44.407 | fit_v0_secondary_vertices INFO 1D histograms in directory "fit_v0_secondary_vertices" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | number_of_svs | "NSVs" | 1643 | 0 | 0.0000 | 0 | 0 | + | number_of_svs | "NSVs" | 1806 | 0.42082 | 1.0111 | 3.9337 | 22.779 | gather_selections INFO 1D histograms in directory "gather_selections" : 2 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | line_passes | "line passes" | 2136 | 87.695 | 14.874 | -1.1035 | -0.76883 | - | line_rates | "line rates" | 42 | 66.429 | 9.3411 | 1.6723 | 3.7856 | -make_long_track_particles INFO 1D histograms in directory "make_long_track_particles" : 1 + | line_passes | "line passes" | 3106 | 75.966 | 18.161 | -0.6874 | -0.74238 | + | line_rates | "line rates" | 123 | 56.02 | 30.151 | -0.11884 | -1.7067 | +is_muon INFO 1D histograms in directory "is_muon" : 3 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | n_muons | "# muons" | 40765 | 0.097118 | 0.29612 | 2.7211 | 5.4044 | + | pv_x | "pv_x" | 3145 | 2 | 0.0000 | 0 | 0 | + | pv_y | "pv_y" | 3959 | 688.42 | 351.26 | 2.3474 | 11.417 | +make_long_track_particles INFO 1D histograms in directory "make_long_track_particles" : 4 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | number_of_trks | "NTrks" | 1643 | 0 | 0.0000 | 0 | 0 | -pv_beamline_cleanup INFO 1D histograms in directory "pv_beamline_cleanup" : 6 + | number_of_trks | "NTrks" | 1806 | 22.572 | 12.827 | 0.6292 | 0.20891 | + | trk_eta | "etaTrk" | 40765 | 3.5405 | 0.73322 | 0.020747 | -0.95305 | + | trk_phi | "phiTrk" | 40765 | -0.018108 | 1.7678 | -0.026228 | -1.2376 | + | trk_pt | "ptTrk" | 40752 | 851 | 614.28 | 3.196 | 18.33 | +pv_beamline_cleanup INFO 1D histograms in directory "pv_beamline_cleanup" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | n_pvs_event | "n_pvs_event" | 2000 | 0.088 | 0.33505 | 4.1659 | 18.392 | - | n_smog2_PVs | "n_smog2_PVs" | 2000 | 0.0005 | 0.022355 | 44.688 | 1995 | - | pv_x | "pv_x" | 175 | -0.0051314 | 0.11268 | -0.049951 | -0.18302 | - | pv_y | "pv_y" | 175 | -0.0044229 | 0.077259 | -0.029838 | 0.19669 | - | pv_z | "pv_z" | 175 | -4.8217 | 36.457 | 0.11442 | 0.072819 | - | smogpv_z | "smogpv_z" | 1 | -471 | 0.0000 | 0 | 0 | -scifi_consolidate_tracks_forward INFO 1D histograms in directory "scifi_consolidate_tracks_forward" : 1 + | n_pvs_event | "n_pvs_event" | 2000 | 4.007 | 2.2792 | 0.12237 | -0.17251 | + | n_smog2_PVs | "n_smog2_PVs" | 2000 | 0 | 0.0000 | 0 | 0 | + | pv_x | "pv_x" | 8014 | 0.45876 | 0.024107 | -0.012563 | 1.6433 | + | pv_y | "pv_y" | 8014 | 0.057084 | 0.023844 | 0.033543 | 3.2708 | + | pv_z | "pv_z" | 8014 | -0.44053 | 42.596 | -0.011964 | -0.19221 | +scifi_consolidate_tracks_forward INFO 1D histograms in directory "scifi_consolidate_tracks_forward" : 5 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | n_long_tracks_forward_event | "n_long_tracks_forward_event" | 1643 | 0 | 0.0000 | 0 | 0 | + | long_track_forward_eta | "#eta" | 40765 | 4.3702 | 0.51798 | 0.014968 | -0.25251 | + | long_track_forward_nhits | "N. hits / track" | 40765 | 24.104 | 2.8339 | -0.081924 | -0.51932 | + | long_track_forward_phi | "#phi" | 40765 | -0.93921 | 1.4735 | 0.5006 | -0.46166 | + | long_track_forward_qop | "q/p" | 40765 | 3.4806e-06 | 0.00013676 | -0.015431 | 0.35902 | + | n_long_tracks_forward_event | "n_long_tracks_forward_event" | 1806 | 22.572 | 12.827 | 0.6292 | 0.20891 | velo_consolidate_tracks INFO 1D histograms in directory "velo_consolidate_tracks" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | n_velo_tracks_event | "n_velo_tracks_event" | 2000 | 88.926 | 84.233 | 1.0259 | 0.74499 | + | n_velo_tracks_event | "n_velo_tracks_event" | 2000 | 207.82 | 144.09 | 0.68753 | 0.38164 | velo_kalman_filter INFO 1D histograms in directory "velo_kalman_filter" : 9 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | velo_backward_track_eta | "#backward_eta" | 48690 | -3.1246 | 0.66580 | -0.26237 | 2.2948 | - | velo_backward_track_nhits | "backward N. hits / track" | 48691 | 4.0562 | 0.86803 | 1.5889 | 15.41 | - | velo_backward_track_phi | "#backward_phi" | 48691 | -0.096037 | 1.8940 | 0.00062964 | -1.3393 | - | velo_forward_track_eta | "#forward_eta" | 129161 | 3.3912 | 0.94999 | -0.012974 | -0.68893 | - | velo_forward_track_nhits | "forward N. hits / track" | 129161 | 5.0536 | 2.0545 | 1.3047 | 1.5885 | - | velo_forward_track_phi | "#forward_phi" | 129161 | -0.25746 | 1.8420 | 0.22181 | -1.1454 | - | velo_total_track_eta | "#total_eta" | 177851 | 1.6074 | 3.0361 | -0.82649 | -0.93533 | - | velo_total_track_nhits | "total N. hits / track" | 177852 | 4.7806 | 1.8626 | 1.6209 | 3.0215 | - | velo_total_track_phi | "#total_phi" | 177852 | -0.21326 | 1.8578 | 0.16017 | -1.2128 | + | velo_backward_track_eta | "#backward_eta" | 150746 | -3.0366 | 0.75560 | 0.096382 | -0.41348 | + | velo_backward_track_nhits | "backward N. hits / track" | 150746 | 4.3618 | 1.1201 | 1.3179 | 10.582 | + | velo_backward_track_phi | "#backward_phi" | 150746 | -0.0010972 | 1.7979 | -0.027396 | -1.1545 | + | velo_forward_track_eta | "#forward_eta" | 264896 | 3.3534 | 1.0508 | 0.030272 | -0.9346 | + | velo_forward_track_nhits | "forward N. hits / track" | 264896 | 6.8892 | 3.0373 | 0.48899 | -0.65265 | + | velo_forward_track_phi | "#forward_phi" | 264896 | -0.034332 | 1.8392 | 0.023215 | -1.2286 | + | velo_total_track_eta | "#total_eta" | 415642 | 1.0359 | 3.2170 | -0.42543 | -1.4752 | + | velo_total_track_nhits | "total N. hits / track" | 415642 | 5.9725 | 2.7948 | 1.0237 | 0.31706 | + | velo_total_track_phi | "#total_phi" | 415642 | -0.022278 | 1.8244 | 0.0050796 | -1.2031 | -- GitLab From 4f64b600cb48b9072070ea483cf5fa911502c583 Mon Sep 17 00:00:00 2001 From: Saverio Mariani Date: Mon, 31 Mar 2025 12:17:08 +0200 Subject: [PATCH 4/5] Add real-data argument to mep passthrough test --- AllenOnline/tests/qmtest/mep_passthrough.qmt | 1 + 1 file changed, 1 insertion(+) diff --git a/AllenOnline/tests/qmtest/mep_passthrough.qmt b/AllenOnline/tests/qmtest/mep_passthrough.qmt index eb5258ba9..58521f673 100644 --- a/AllenOnline/tests/qmtest/mep_passthrough.qmt +++ b/AllenOnline/tests/qmtest/mep_passthrough.qmt @@ -16,6 +16,7 @@ --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep --output-filemep_passthrough.mdf --register-monitoring-counters0 + --real-data register_passthroughPASS -- GitLab From 62d6d10dc5a3583b814b49b0f8466c67edab2166 Mon Sep 17 00:00:00 2001 From: Saverio Mariani Date: Fri, 4 Jul 2025 20:38:30 +0200 Subject: [PATCH 5/5] Update MEPs to 2025 --- AllenOnline/tests/qmtest/mep_forward.qmt | 4 ++-- AllenOnline/tests/qmtest/mep_passthrough.qmt | 4 ++-- AllenOnline/tests/qmtest/mep_real_data.qmt | 4 ++-- AllenOnline/tests/qmtest/test_mep_banks.qmt | 2 +- AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/AllenOnline/tests/qmtest/mep_forward.qmt b/AllenOnline/tests/qmtest/mep_forward.qmt index aab5822f8..f133b117b 100644 --- a/AllenOnline/tests/qmtest/mep_forward.qmt +++ b/AllenOnline/tests/qmtest/mep_forward.qmt @@ -21,9 +21,9 @@ -t3 -n2000 --events-per-slice500 - --tagsrun3/2024.Q1.2-v00.00,master + --tagsrun3/2025-v00.01,master --sequencehlt1_pp_forward.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/321834-LHCb-MEP/bu_321834_LHCb_ECEB01_BU_0.mep --output-filemep_forward.mdf --register-monitoring-counters0 --real-data diff --git a/AllenOnline/tests/qmtest/mep_passthrough.qmt b/AllenOnline/tests/qmtest/mep_passthrough.qmt index 58521f673..43bf11074 100644 --- a/AllenOnline/tests/qmtest/mep_passthrough.qmt +++ b/AllenOnline/tests/qmtest/mep_passthrough.qmt @@ -11,9 +11,9 @@ -t3 -n2000 --events-per-slice500 - --tagsrun3/2024.Q1.2-v00.00,master + --tagsrun3/2025-v00.01,master --sequencepassthrough.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/321834-LHCb-MEP/bu_321834_LHCb_ECEB01_BU_0.mep --output-filemep_passthrough.mdf --register-monitoring-counters0 --real-data diff --git a/AllenOnline/tests/qmtest/mep_real_data.qmt b/AllenOnline/tests/qmtest/mep_real_data.qmt index 30f013587..28027304c 100644 --- a/AllenOnline/tests/qmtest/mep_real_data.qmt +++ b/AllenOnline/tests/qmtest/mep_real_data.qmt @@ -21,9 +21,9 @@ -m750 -t3 --events-per-slice1000 - --tagsrun3/2024.Q1.2-v00.00,master + --tagsrun3/2025-v00.01,master --sequence${ALLEN_INSTALL_DIR}/constants/hlt1_pp_default.json - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/321834-LHCb-MEP/bu_321834_LHCb_ECEB01_BU_0.mep --register-monitoring-counters0 --enable-run-changes --real-data diff --git a/AllenOnline/tests/qmtest/test_mep_banks.qmt b/AllenOnline/tests/qmtest/test_mep_banks.qmt index 3ed71c904..90dac0b52 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks.qmt @@ -18,7 +18,7 @@ --subdetectorsVP,UT,FTCluster,ECal,Muon,ODIN --nevents2000 --eps500 - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/321834-LHCb-MEP/bu_321834_LHCb_ECEB01_BU_0.mep --mdfmep_passthrough.mdf true diff --git a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt index 190642fb8..e3fe94988 100644 --- a/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt +++ b/AllenOnline/tests/qmtest/test_mep_banks_transpose.qmt @@ -19,7 +19,7 @@ --transpose-mep --nevents2000 --eps500 - --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/cern-swtest/lhcb/swtest/2024_mep_02102024/bu_307533_LHCb_PLEB01_BU_1.mep + --mepmdf:root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/321834-LHCb-MEP/bu_321834_LHCb_ECEB01_BU_0.mep --mdfmep_passthrough.mdf true -- GitLab