Skip to content
Snippets Groups Projects
Commit f49f3e4f authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: rename the K4DataSvc to k4DataSvc in job options.

parent 828b3996
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
# read LCIO files
from Configurables import LCIOInput
......
......@@ -27,8 +27,8 @@ geosvc.compact = geometry_path
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc", input="test-detsim10.root")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc", input="test-detsim10.root")
##############################################################################
# NTuple Svc
......
......@@ -2,8 +2,8 @@
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc",
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc",
# input="test.root"
input="test-detsim10.root"
)
......
......@@ -2,8 +2,8 @@
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
from Configurables import Edm4hepWriteAlg
alg = Edm4hepWriteAlg("Edm4hepWriteAlg")
......
......@@ -2,8 +2,8 @@
from Gaudi.Configuration import *
from Configurables import CEPCDataSvc
dsvc = CEPCDataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
from Configurables import GenAlgo
......
......@@ -2,8 +2,8 @@
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc", input="test.root")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc", input="test.root")
from Configurables import PlcioReadAlg
alg = PlcioReadAlg("PlcioReadAlg")
......
......@@ -2,8 +2,8 @@
from Gaudi.Configuration import *
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
from Configurables import PlcioWriteAlg
alg = PlcioWriteAlg("PlcioWriteAlg")
......
......@@ -24,8 +24,8 @@ rndmengine.Seeds = [42]
##############################################################################
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
##############################################################################
......
......@@ -24,8 +24,8 @@ rndmengine.Seeds = [42]
##############################################################################
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
##############################################################################
......
......@@ -24,8 +24,8 @@ rndmengine.Seeds = [42]
##############################################################################
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
##############################################################################
......
......@@ -18,8 +18,8 @@ rndmengine.Seeds = [42]
##############################################################################
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
##############################################################################
......
......@@ -19,8 +19,8 @@ rndmengine.Seeds = [42]
##############################################################################
# Event Data Svc
##############################################################################
from Configurables import K4DataSvc
dsvc = K4DataSvc("EventDataSvc")
from Configurables import k4DataSvc
dsvc = k4DataSvc("EventDataSvc")
##############################################################################
......
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