podagiu's picture
Re-release of v1: reconverted tree, seeds restricted to deposited algorithms
85c2f1a verified
Raw
History Blame Contribute Delete
1.18 kB
# @package data.data_processor
# How to process the extracted data, following the axol1tl studies: their event cut, and
# their per-object saturation cuts except for the jets, which they cut at the 9-bit code
# 511 rather than the 11-bit one the jet energy actually saturates at. The record's
# `order` column marks the events the event cut removes with -1, so a split read in
# `order` order reproduces the study's input.
_target_: loader.processing.L1DataProcessor
extracted_folder: ${data.data_extractor.cache_root_dir}/extracted/${data.data_extractor.name}
# Remove events saturated in ET.
event_filters:
ET: 'Et < 4095'
# Remove saturated objects, each threshold the all-ones code of the object's own Et
# width: 9 bits for muons and e-gammas, 11 for jets, 12 for MET. A removed object does
# not count towards the multiplicity.
object_filters:
muons: 'Et < 511'
egammas: 'Et < 511'
jets: 'Et < 2047'
MET: 'Et < 4095'
cache_root_dir: ${paths.data_dir}
# The cache is reused whenever a file of this name exists, whatever is inside it, so a
# changed filter above needs either a new name here or the old cache deleted.
name: e${data.data_extractor.name}_pdefault