Skip to content
Snippets Groups Projects

Update HLT1 PbPb sequence for 2024 ion run

Merged Benjamin Audurier requested to merge baudurie_ion_2024 into 2024-patches
Compare and
18 files
+ 159
34
Compare changes
  • Side-by-side
  • Inline
Files
18
@@ -18,7 +18,6 @@ from AllenConf.hlt1_calibration_lines import (
from AllenConf.hlt1_monitoring_lines import (
make_velo_micro_bias_line,
make_beam_gas_line,
make_velo_clusters_micro_bias_line,
make_odin_event_type_with_decoding_line,
)
from AllenConf.hlt1_heavy_ions_lines import (
@@ -48,7 +47,6 @@ def default_physics_lines(reconstructed_objects, prescale, reco_particles,
long_tracks = reconstructed_objects["long_tracks"]
long_track_particles = reconstructed_objects["long_track_particles"]
decoded_calo = reconstructed_objects["decoded_calo"]
ecal_clusters = reconstructed_objects["ecal_clusters"]
pvs = reconstructed_objects["pvs"]
dihadrons = reconstructed_objects["dihadron_secondary_vertices"]
dileptons = reconstructed_objects["dilepton_secondary_vertices"]
@@ -71,7 +69,7 @@ def default_physics_lines(reconstructed_objects, prescale, reco_particles,
pvs=pvs,
decoded_calo=decoded_calo,
min_velo_tracks_PbPb=1,
pre_scaler=0.1),
pre_scaler=0.01),
make_heavy_ion_event_line(
name="Hlt1HeavyIonPbSMOGMicroBias",
velo_tracks=velo_tracks,
@@ -89,14 +87,13 @@ def default_physics_lines(reconstructed_objects, prescale, reco_particles,
min_velo_tracks_SMOG=1,
pre_scaler=0.01 if prescale else 1),
make_heavy_ion_event_line(
name="Hlt1HeavyIonPbPbPeripheral",
name="Hlt1HeavyIonPbPbHadronic",
velo_tracks=velo_tracks,
long_track_particles=long_track_particles,
pvs=pvs,
decoded_calo=decoded_calo,
min_pvs_PbPb=1,
min_ecal_e=310000,
max_ecal_e=14860000),
min_ecal_e=310000),
make_heavy_ion_event_line(
name="Hlt1HeavyIonPbSMOGHadronic",
velo_tracks=velo_tracks,
@@ -105,15 +102,6 @@ def default_physics_lines(reconstructed_objects, prescale, reco_particles,
decoded_calo=decoded_calo,
min_pvs_SMOG=1,
min_ecal_e=94000),
make_heavy_ion_event_line(
name="Hlt1HeavyIonPbPbCentral",
velo_tracks=velo_tracks,
long_track_particles=long_track_particles,
pvs=pvs,
decoded_calo=decoded_calo,
min_pvs_PbPb=1,
min_ecal_e=14860000,
pre_scaler=0.01 if prescale else 1),
make_heavy_ion_event_line(
name="Hlt1HeavyIonPbPbUPCMB",
velo_tracks=velo_tracks,
@@ -320,8 +308,12 @@ def setup_hlt1_node(withMCChecking=False,
with_ut=True,
with_AC_split=False,
prescale=False,
with_calo=True,
with_muon=True,
reco_particles=False,
with_rich=True,
velo_open=False,
enableDownstream=True,
reco_particles=True,
bx_type=None,
tae_passthrough=True,
mini=False):
@@ -334,6 +326,16 @@ def setup_hlt1_node(withMCChecking=False,
tracking_type=tracking_type,
with_AC_split=with_AC_split)
reconstructed_objects = hlt1_reconstruction(
with_calo=with_calo,
with_ut=with_ut,
with_muon=with_muon,
enableDownstream=enableDownstream,
tracking_type=tracking_type,
velo_open=velo_open,
with_AC_split=with_AC_split,
with_rich=with_rich)
hlt1_config['reconstruction'] = reconstructed_objects
# GEC for UPC events
Loading