ATLAS Offline Software
Loading...
Searching...
No Matches
AlignmentBarrelLUTSvc.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "GaudiKernel/ISvcLocator.h"
6
9
11
12TrigL2MuonSA::AlignmentBarrelLUTSvc::AlignmentBarrelLUTSvc(const std::string& name,ISvcLocator* sl) :
13 AthService(name,sl)
14{
15}
16
17// --------------------------------------------------------------------------------
18// --------------------------------------------------------------------------------
19
21{
22
23 // implement the search of LUT trought the pathresolver Tool.
24 std::string lut_fileName = PathResolver::find_file (m_lut_fileName, "DATAPATH");
25 ATH_MSG_INFO(lut_fileName);
26
27 if (lut_fileName.empty()) {
28 ATH_MSG_ERROR("Cannot find EndcapLUT file " << lut_fileName);
29 return StatusCode::FAILURE;
30 }
31
32 ATH_CHECK( m_alignmentBarrelLUT.retrieve() );
33
34 // read LUT
35 ATH_CHECK( m_alignmentBarrelLUT->readLUT(lut_fileName) );
36
37 return StatusCode::SUCCESS;
38}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
static std::string find_file(const std::string &logical_file_name, const std::string &search_path)
Gaudi::Property< std::string > m_lut_fileName
ToolHandle< AlignmentBarrelLUT > m_alignmentBarrelLUT
virtual StatusCode initialize() override
AlignmentBarrelLUTSvc(const std::string &name, ISvcLocator *sl)