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

Fixes to load tracker geometry and conditions

parent 01aa2a61
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ if __name__ == "__main__": ...@@ -13,6 +13,7 @@ if __name__ == "__main__":
from CalypsoConfiguration.MainServicesConfig import MainServicesCfg from CalypsoConfiguration.MainServicesConfig import MainServicesCfg
from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg
from AthenaPoolCnvSvc.PoolWriteConfig import PoolWriteCfg from AthenaPoolCnvSvc.PoolWriteConfig import PoolWriteCfg
from FaserGeoModel.FaserGeoModelConfig import FaserGeometryCfg
# Set up logging and new style config # Set up logging and new style config
log.setLevel(DEBUG) log.setLevel(DEBUG)
...@@ -42,6 +43,7 @@ if __name__ == "__main__": ...@@ -42,6 +43,7 @@ if __name__ == "__main__":
cfg = MainServicesCfg(ConfigFlags) cfg = MainServicesCfg(ConfigFlags)
cfg.merge(PoolReadCfg(ConfigFlags)) cfg.merge(PoolReadCfg(ConfigFlags))
cfg.merge(PoolWriteCfg(ConfigFlags)) cfg.merge(PoolWriteCfg(ConfigFlags))
cfg.merge(FaserGeometryCfg(ConfigFlags))
# Derivations # Derivations
...@@ -75,12 +77,12 @@ if __name__ == "__main__": ...@@ -75,12 +77,12 @@ if __name__ == "__main__":
) )
# # Hack to avoid problem with our use of MC databases when isMC = False # Hack to avoid problem with our use of MC databases when isMC = False
# replicaSvc = acc.getService("DBReplicaSvc") replicaSvc = cfg.getService("DBReplicaSvc")
# replicaSvc.COOLSQLiteVetoPattern = "" replicaSvc.COOLSQLiteVetoPattern = ""
# replicaSvc.UseCOOLSQLite = True replicaSvc.UseCOOLSQLite = True
# replicaSvc.UseCOOLFrontier = False replicaSvc.UseCOOLFrontier = False
# replicaSvc.UseGeomSQLite = True replicaSvc.UseGeomSQLite = True
# Execute and finish # Execute and finish
cfg.printConfig(withDetails = True, summariseProps = True, printDefaults = True) cfg.printConfig(withDetails = True, summariseProps = True, printDefaults = True)
......
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