Skip to content

Commit

Permalink
Small change in xsecResummino
Browse files Browse the repository at this point in the history
  • Loading branch information
andlessa committed Jan 22, 2025
1 parent 3b27d32 commit a0fedff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions smodels/tools/xsecResummino.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from __future__ import print_function
import sys
import os, copy
import os
current = os.getcwd()
sys.path.append(current)

Expand Down Expand Up @@ -515,9 +515,9 @@ def create_routine_files(self, order : int, slha_folder_name : str):

#remove the .slha
if not os.path.isfile(slha_folder):
slha_file_name = slha[:-5]
slha_file_name = os.path.splitext(slha)[0]
else:
slha_file_name = name[:-5]
slha_file_name = os.path.splitext(name)[0]


resummino_in_file = os.path.join(self.resummino_in,f"resummino_{slha_file_name}.in")
Expand Down

0 comments on commit a0fedff

Please sign in to comment.