Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2023 Dictionary to a Search Path #17481

Merged
merged 1 commit into from Feb 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Configuration/Geometry/scripts/generate2023Geometry.py
Expand Up @@ -3,7 +3,7 @@
from pprint import pprint
import filecmp

from dict2023Geometry import *
from Configuration.Geometry.dict2023Geometry import *

# define global
detectorVersionDefault = 999
Expand Down Expand Up @@ -176,4 +176,4 @@ def generateGeom(detectorTuple, options):
detectorTuple = tuple([aDict["abbrev"]+str(getattr(options,"v_"+aDict["name"])) for aDict in allDicts])
generateGeom(detectorTuple,options)
sys.exit(0)

2 changes: 1 addition & 1 deletion Fireworks/Geometry/python/dumpSimGeometry_cfg.py
Expand Up @@ -3,7 +3,7 @@
import FWCore.ParameterSet.VarParsing as VarParsing
from FWCore.Utilities.Enumerate import Enumerate
from pprint import pprint
from dict2023Geometry import detectorVersionDict
from Configuration.Geometry.dict2023Geometry import detectorVersionDict

varType = Enumerate ("Run1 2015 2015dev 2017 2017Muon 2019 2023")
defaultVersion=str();
Expand Down