From aba95ebcdfe0e8e0775f1bc05c3bb8fefe38038d Mon Sep 17 00:00:00 2001 From: Frank Winklmeier <frank.winklmeier@cern.ch> Date: Tue, 21 Aug 2018 17:11:54 +0200 Subject: [PATCH] DataModelTest: remove space from COOL tag Do not use a whitespace in the COOL tag name. Otherwise one cannot easily inspect the file with AtlCoolConsole. --- .../DataModelTest/DataModelRunTests/share/CondReader_jo.py | 4 ++-- .../DataModelTestDataCommon/src/CondWriterAlg.cxx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py index 09e53fe8121..91a59811acc 100644 --- a/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py +++ b/Control/DataModelTest/DataModelRunTests/share/CondReader_jo.py @@ -43,9 +43,9 @@ import StoreGate.StoreGateConf as StoreGateConf svcMgr += StoreGateConf.StoreGateSvc("ConditionStore") from IOVDbSvc.CondDB import conddb -conddb.addFolder ('condtest.db', '/DMTest/TestAttrList <tag>tag AttrList_noTag</tag>', +conddb.addFolder ('condtest.db', '/DMTest/TestAttrList <tag>AttrList_noTag</tag>', className='AthenaAttributeList') -conddb.addFolder ('condtest.db', '/DMTest/S2 <tag>tag S2_noTag</tag>', +conddb.addFolder ('condtest.db', '/DMTest/S2 <tag>S2_noTag</tag>', className='DMTest::S2') diff --git a/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx b/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx index f99399aba7a..752ea70b7e8 100644 --- a/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx +++ b/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration. + * Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration. */ // $Id$ /** @@ -63,7 +63,7 @@ StatusCode CondWriterAlg::writeSCond (unsigned int count) ATH_CHECK( m_regSvc->registerIOV ("DMTest::S2", m_s2Key, - "tag S2_noTag", + "S2_noTag", IOVTime::MINRUN, IOVTime::MAXRUN, count, count+1) ); @@ -87,7 +87,7 @@ StatusCode CondWriterAlg::execute() ATH_CHECK( m_regSvc->registerIOV ("AthenaAttributeList", m_attrListKey, - "tag AttrList_noTag", + "AttrList_noTag", IOVTime::MINRUN, IOVTime::MAXRUN, count, count) ); -- GitLab