Skip to content
Snippets Groups Projects
Commit a568192a authored by Chikuma Kato's avatar Chikuma Kato
Browse files

removed MuonMDT_CablingSvc from MdtDigitToMdtRDO

Former-commit-id: 46c8b146
parent 03a897a6
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
#include "MuonDigitContainer/MdtDigitContainer.h" #include "MuonDigitContainer/MdtDigitContainer.h"
#include "MuonRDO/MdtCsmContainer.h" #include "MuonRDO/MdtCsmContainer.h"
#include "MuonMDT_Cabling/MuonMDT_CablingSvc.h"
#include "MuonCablingData/MuonMDT_CablingMap.h" #include "MuonCablingData/MuonMDT_CablingMap.h"
#include "StoreGate/ReadCondHandleKey.h" #include "StoreGate/ReadCondHandleKey.h"
...@@ -34,7 +33,6 @@ class MdtDigitToMdtRDO : public AthAlgorithm { ...@@ -34,7 +33,6 @@ class MdtDigitToMdtRDO : public AthAlgorithm {
protected: protected:
ServiceHandle<MuonMDT_CablingSvc> m_cabling;
const MdtIdHelper* m_mdtIdHelper; const MdtIdHelper* m_mdtIdHelper;
bool m_BMEpresent; bool m_BMEpresent;
SG::WriteHandleKey<MdtCsmContainer> m_csmContainerKey{this,"OutputObjectName","MDTCSM","WriteHandleKey for Output MdtCsmContainer"}; SG::WriteHandleKey<MdtCsmContainer> m_csmContainerKey{this,"OutputObjectName","MDTCSM","WriteHandleKey for Output MdtCsmContainer"};
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
#include "MuonDigitContainer/MdtDigitCollection.h" #include "MuonDigitContainer/MdtDigitCollection.h"
#include "MuonDigitContainer/MdtDigit.h" #include "MuonDigitContainer/MdtDigit.h"
#include "MuonMDT_Cabling/MuonMDT_CablingSvc.h"
#include "MuonRDO/MdtCsmIdHash.h" #include "MuonRDO/MdtCsmIdHash.h"
#include "MuonRDO/MdtCsmContainer.h" #include "MuonRDO/MdtCsmContainer.h"
#include "MuonRDO/MdtCsm.h" #include "MuonRDO/MdtCsm.h"
...@@ -27,7 +25,6 @@ using namespace std; ...@@ -27,7 +25,6 @@ using namespace std;
MdtDigitToMdtRDO::MdtDigitToMdtRDO(const std::string& name, ISvcLocator* pSvcLocator) : MdtDigitToMdtRDO::MdtDigitToMdtRDO(const std::string& name, ISvcLocator* pSvcLocator) :
AthAlgorithm(name, pSvcLocator), AthAlgorithm(name, pSvcLocator),
m_cabling("MuonMDT_CablingSvc", name),
m_mdtIdHelper(0), m_mdtIdHelper(0),
m_BMEpresent(false) m_BMEpresent(false)
{ {
...@@ -43,7 +40,6 @@ StatusCode MdtDigitToMdtRDO::initialize() ...@@ -43,7 +40,6 @@ StatusCode MdtDigitToMdtRDO::initialize()
ATH_CHECK( m_digitContainerKey.initialize() ); ATH_CHECK( m_digitContainerKey.initialize() );
ATH_MSG_VERBOSE("Initialized ReadHandleKey: " << m_digitContainerKey ); ATH_MSG_VERBOSE("Initialized ReadHandleKey: " << m_digitContainerKey );
ATH_CHECK( detStore()->retrieve(m_mdtIdHelper,"MDTIDHELPER") ); ATH_CHECK( detStore()->retrieve(m_mdtIdHelper,"MDTIDHELPER") );
ATH_CHECK( m_cabling.retrieve() );
ATH_CHECK( m_readKey.initialize() ); ATH_CHECK( m_readKey.initialize() );
if ( fillTagInfo().isFailure() ) { if ( fillTagInfo().isFailure() ) {
......
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