pythia8: bugfix for pythia8 +fastjet (#28153)

This commit is contained in:
Wouter Deconinck 2021-12-24 06:47:18 -06:00 committed by GitHub
parent 9602d0a03c
commit a294acfb73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,8 +97,12 @@ def configure_args(self):
args += '--without-mg5mes'
args += self.with_or_without('hepmc3', activation_value='prefix')
args += self.with_or_without('fastjet3', activation_value='prefix',
variant='fastjet')
if '+fastjet' in self.spec:
args += '--with-fastjet3=' + self.spec['fastjet'].prefix
else:
args += '--without-fastjet3'
args += self.with_or_without('evtgen', activation_value='prefix')
args += self.with_or_without('root', activation_value='prefix')
args += self.with_or_without('rivet', activation_value='prefix')