Skip to content
Snippets Groups Projects

VPRetinaCluster for Allen input

Merged Giovanni Bassi requested to merge decode_Retina_cluster_aug2021 into master
Compare and
15 files
+ 93
13
Compare changes
  • Side-by-side
  • Inline
Files
15
###############################################################################
# (c) Copyright 2019 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 Moore import options, run_moore
from Hlt1Conf.settings import smog_lines
test_files = {
'pgas':
"root://eoslhcb.cern.ch//eos/lhcb/wg/rta/WP6/Allen/mdf_input/RetinaCluster_samples/SMOG2_pHe_retinacluster_digi/SMOG2_pHe_retinacluster.digi",
'pp':
"root://eoslhcb.cern.ch//eos/lhcb/wg/rta/WP6/Allen/mdf_input/RetinaCluster_samples/upgrade_DC19_01_MinBiasMU_retinacluster_xdigi/minbias_2019_retinacluster_1.xdigi",
'pp_pgas':
"root://eoslhcb.cern.ch//eos/lhcb/wg/rta/WP6/Allen/mdf_input/RetinaCluster_samples/SMOGHepp8MB_retinacluster_digi/smog2_retinacluster.digi"
}
which_sample = "pgas"
options.input_files = [test_files[which_sample]]
options.input_type = "ROOT"
options.dddb_tag = "dddb-20190223"
options.conddb_tag = "sim-20180530-vc-mu100"
options.evt_max = 1000
from RecoConf.hlt1_tracking import default_ft_decoding_version
with default_ft_decoding_version.bind(value=6):
run_moore(options, smog_lines)
Loading