ATLAS Offline Software
Loading...
Searching...
No Matches
INav4MomDumper_jobOptions.py
Go to the documentation of this file.
1# @file: INav4MomDumper_jobOptions.py
2# @author: Sebastien Binet <binet@cern.ch>
3# @purpose: a simple example on how to use the INav4Mom dumper
4
5
6from AthenaCommon.AlgSequence import AlgSequence
7topSequence = AlgSequence()
8
9
10from AthenaCommon.Constants import *
11
12
15from AtlfastConversionAlgs.tests import INav4MomItemList
16from EventCommonAlgs.EventCommonAlgsConf import INav4MomDumper
17topSequence += INav4MomDumper(
18 INav4Moms = [ "AtlfastParticleJetContainer",
19 "AtlfastElectronCollection" ],
20 OutputStream = "inav4moms.log",
21 OutputLevel = INFO
22 )