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