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
15 files
+ 51
8
Compare changes
  • Side-by-side
  • Inline
Files
15
@@ -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 (
@@ -30,6 +29,7 @@ from AllenConf.hlt1_heavy_ions_lines import (
from AllenConf.hlt1_inclusive_hadron_lines import make_kstopipi_line, make_lambda2ppi_line
from AllenConf.hlt1_charm_lines import make_d2kk_line, make_d2pipi_line, make_d2kpi_line
from AllenConf.hlt1_muon_lines import make_one_muon_track_line, make_di_muon_mass_line
from AllenConf.hlt1_smog2_lines import *
from AllenConf.velo_reconstruction import decode_velo
from AllenConf.calo_reconstruction import decode_calo
from AllenConf.validators import rate_validation
@@ -48,7 +48,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"]
@@ -320,8 +319,14 @@ 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,
with_v0s=True,
velo_open=False,
enableDownstream=True,
enableTupling=False,
reco_particles=True,
bx_type=None,
tae_passthrough=True,
mini=False):
@@ -333,6 +338,17 @@ def setup_hlt1_node(withMCChecking=False,
with_ut=with_ut,
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
Loading