Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Adye authored and Tim Adye committed Nov 5, 2024
1 parent 2f7f84f commit 17ceb9e
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions Examples/Scripts/Python/full_chain_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,16 +405,24 @@ def full_chain(args):
s,
MomentumConfig(*pt, transverse=True),
EtaConfig(*etaRange, uniform=False if args.gen_cos_theta else None),
acts.examples.simulation.PhiConfig(0.0, 360.0 * u.degree) if args.odd else None,
(
acts.examples.simulation.PhiConfig(0.0, 360.0 * u.degree)
if args.odd
else None
),
ParticleConfig(
args.gen_nparticles, acts.PdgParticle.eMuon, randomizeCharge=True
),
vtxGen=acts.examples.GaussianVertexGenerator(
mean=acts.Vector4(0, 0, 0, 0),
stddev=acts.Vector4(
0.0125 * u.mm, 0.0125 * u.mm, 55.5 * u.mm, 1.0 * u.ns
),
) if args.odd else None,
vtxGen=(
acts.examples.GaussianVertexGenerator(
mean=acts.Vector4(0, 0, 0, 0),
stddev=acts.Vector4(
0.0125 * u.mm, 0.0125 * u.mm, 55.5 * u.mm, 1.0 * u.ns
),
)
if args.odd
else None
),
multiplicity=args.gen_nvertices,
rnd=rnd,
outputDirRoot=outputDirMoreRoot,
Expand Down

0 comments on commit 17ceb9e

Please sign in to comment.