Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!70696
DataModelAthenaPool: remove legacy job options
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
DataModelAthenaPool: remove legacy job options
fwinkl/athena:dmap
into
24.0
Overview
3
Commits
1
Pipelines
1
Changes
3
Merged
Frank Winklmeier
requested to merge
fwinkl/athena:dmap
into
24.0
11 months ago
Overview
3
Commits
1
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
24.0
24.0 (base)
and
latest version
latest version
07dc2470
1 commit,
11 months ago
3 files
+
1
−
43
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Control/DataModelAthenaPool/python/DataModelCompatSvc.py deleted
100755 → 0
+
0
−
26
Options
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
# $Id: DataModelCompatSvc.py,v 1.2 2008-03-26 19:23:06 ssnyder Exp $
#
# File: python/DataModelCompatSvc.py
# Author: scott snyder
# Date: Dec 2007, from previous JO version.
# Purpose: Set up backwards compatibility for DataModel.
#
# Just import this module to set up DataModelCompatSvc.
#
from
AthenaCommon.AppMgr
import
theApp
from
AthenaCommon.AppMgr
import
ServiceMgr
from
DataModelAthenaPool.DataModelAthenaPoolConf
import
DataModelCompatSvc
# We need this service created explicitly, and we need to make
# sure that it is initialized before the input file is opened.
class
DataModelCompatSvcCreate
(
DataModelCompatSvc
):
def
setup
(
self
):
DataModelCompatSvc
.
setup
(
self
)
theApp
.
getHandle
().
_svcmgr
.
addService
(
""
,
"
DataModelCompatSvc
"
,
5
)
return
ServiceMgr
+=
DataModelCompatSvcCreate
(
"
DataModelCompatSvc
"
)
Loading