Skip to content

Commit

Permalink
Merge pull request cms-sw#1233 from NJManganelli/integration-fixgttcr…
Browse files Browse the repository at this point in the history
…eatefirmwarecfg

Phase 2 GTT fix null options for loading from buffers in F/W workflow
  • Loading branch information
aloeliger committed Apr 2, 2024
2 parents fc51038 + a72cb20 commit 9ff949e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -53,10 +53,10 @@
filePath = filePath.replace("/", ".")
inputFilesImport = getattr(__import__(filePath.strip(".py"),fromlist=["readFiles"]),"readFiles")
inputFiles.extend( inputFilesImport )
if options.vertices:
if options.vertices in ['load', 'overwrite']:
inputBuffersImport = getattr(__import__(filePath.strip(".py"),fromlist=["correlator_source"]),"correlator_source").fileNames
inputBuffers.extend( inputBuffersImport )
if options.tracks:
if options.tracks in ['load', 'overwrite']:
inputTrackBuffersImport = getattr(__import__(filePath.strip(".py"),fromlist=["track_source"]),"track_source").fileNames
inputTrackBuffers.extend( inputTrackBuffersImport )
else:
Expand Down

0 comments on commit 9ff949e

Please sign in to comment.