Skip to content
Snippets Groups Projects
Commit c9b1630e authored by Dave Casper's avatar Dave Casper
Browse files

Remove debugging output

parent dc353697
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
from __future__ import print_function
from AthenaConfiguration.AllConfigFlags import ConfigFlags as athenaConfigFlags
# from AthenaConfiguration.AllConfigFlags import GetFileMD
# from AthenaConfiguration.AthConfigFlags import AthConfigFlags
......
......@@ -97,9 +97,9 @@ def getDefaultDetectors(geoTag):
detectors.add('CentralDipole')
detectors.add('DownstreamDipole')
print("DetDescrInfo Run = ", DetDescrInfo(geoTag)['Common']['Run'])
print("DetDescrInfo TrackerType = ", DetDescrInfo(geoTag)['Common']['TrackerType'])
print("DetDescrInfo FaserNuType = ", DetDescrInfo(geoTag)['Common']['FaserNuType'])
# print("DetDescrInfo Run = ", DetDescrInfo(geoTag)['Common']['Run'])
# print("DetDescrInfo TrackerType = ", DetDescrInfo(geoTag)['Common']['TrackerType'])
# print("DetDescrInfo FaserNuType = ", DetDescrInfo(geoTag)['Common']['FaserNuType'])
# if DetDescrInfo(geoTag)['Common']['Run'] == 'RUN4':
# detectors.add('ITkPixel')
......
......@@ -14,8 +14,8 @@ def createGeoModelConfigFlags():
return gcf
def modifyGeoModelConfigFlags(flags):
print("modifyGeoModelConfigFlags called for FaserVersion: ", flags.GeoModel.FaserVersion)
# print("modifyGeoModelConfigFlags called for FaserVersion: ", flags.GeoModel.FaserVersion)
flags.GeoModel.Run = lambda prevFlags : DetDescrInfo(prevFlags.GeoModel.FaserVersion)['Common']['Run']
print(DetDescrInfo(flags.GeoModel.FaserVersion)['Common']['Run'])
# print(DetDescrInfo(flags.GeoModel.FaserVersion)['Common']['Run'])
return flags
\ No newline at end of file
......@@ -7,9 +7,6 @@ def InitializeGeometryParameters(dbGeomCursor):
"""
dbId, dbCommon, dbParam = dbGeomCursor.GetCurrentLeafContent("FaserCommon")
print("dbId = ", dbId)
print("dbCommon = ", dbCommon)
print("dbParam = ", dbParam)
params = {"Run" : "UNDEFINED",
"TrackerType" : "UNDEFINED",
......
......@@ -178,7 +178,6 @@ class FaserGeoDBInterface:
# check if table is defined in the current geometry
if leafName not in self.TagAndNodeVersionDict:
print("leafName not found")
dbId=[]
dbContent={}
paramName=[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment