Skip to content

Commit

Permalink
indentation error in reweight_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
zeniheisser committed Sep 16, 2024
1 parent 7954db2 commit d7f61db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions madgraph/interface/reweight_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -2275,14 +2275,14 @@ def compile(self):
else:
nb_core = 1
if(self.gpucpp == True):
misc.compile(cwd=pdir, nb_core=nb_core,mode='cpp')
return
misc.compile(cwd=pdir, nb_core=nb_core,mode='cpp')
return
else:
os.environ['MENUM'] = '2'
misc.compile(['allmatrix2py.so'], cwd=pdir, nb_core=nb_core)
if not (self.second_model or self.second_process or self.dedicated_path):
os.environ['MENUM'] = '3'
misc.compile(['allmatrix3py.so'], cwd=pdir, nb_core=nb_core)
misc.compile(['allmatrix2py.so'], cwd=pdir, nb_core=nb_core)
if not (self.second_model or self.second_process or self.dedicated_path):
os.environ['MENUM'] = '3'
misc.compile(['allmatrix3py.so'], cwd=pdir, nb_core=nb_core)

def load_module(self, metag=1):
"""load the various module and load the associate information"""
Expand Down

0 comments on commit d7f61db

Please sign in to comment.