ATLAS Offline Software
Loading...
Searching...
No Matches
TrkVertexWeightCalculatorsExample.py
Go to the documentation of this file.
1#!/usr/bin/env python
2# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
4"""
5This script is equivalent to python -m TrkVertexWeightCalculators.TrkVertexWeightCalculatorsConfig
6but it is an installed executable script. This simplify the grid submission
7since there is no easy way to run CA with pathena / prun.
8
9pathena --trf "TrkVertexWeighCalculatorsExample.py --filesInput=%IN Output.HISTFileName=%OUT.root --evtMax=-1" --inDS mc21_13p6TeV:mc21_13p6TeV.601521.PhPy8EG_PDF4LHC21_ggH_MINLO_gammagamma.merge.AOD.e8472_e8455_s3873_s3874_r13829_r13831 --outDS user.turra.mc21_13p6TeV.601521.PhPy8EG_PDF4LHC21_ggH_MINLO_gammagamma.dumpvertex.NTUP.e8472_s3873_r13829_v9
10"""
11
12import sys
13
14from TrkVertexWeightCalculators.TrkVertexWeightCalculatorsConfig import TrkVertexWeightCalculatorBDTDebugRunCfg
15
16acc = TrkVertexWeightCalculatorBDTDebugRunCfg()
17status = acc.run()
18
19sys.exit(not status.isSuccess())
20