ATLAS Offline Software
Loading...
Searching...
No Matches
HitValAlgSim.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3# jobOptions to activate the dump of the MuonHitValAlg nTuple
4# This file can be used with Sim_tf by specifying --postInclude MuonPRDTest.HitValAlgSim.HitValAlgSimCfg
5# It dumps Truth, MuEntry and Hits, Digits, SDOs and RDOs for MM and sTGC
6def HitValAlgSimCfg(flags, name = "MuonSimHitValidAlg",outFile="MuonHitValAlg.sim.ntuple.root", **kwargs):
7 kwargs.setdefault("doTruth", True)
8 kwargs.setdefault("doMuEntry", True)
9 kwargs.setdefault("doSimHits", True)
10 from MuonPRDTest.MuonPRDTestCfg import AddHitValAlgCfg
11 return AddHitValAlgCfg(flags, name = name, outFile=outFile, **kwargs)
12
HitValAlgSimCfg(flags, name="MuonSimHitValidAlg", outFile="MuonHitValAlg.sim.ntuple.root", **kwargs)