Skip to content
Snippets Groups Projects
Commit 22f4b27e authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'naming.TrigL2MuonSA-20170915' into 'master'

TrigL2MuonSA: Comply with ATLAS naming conventions.

See merge request !4696

Former-commit-id: da001d63
parents 693b06bf ad672296
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ class MuFastSteering : public HLT::FexAlgo, ...@@ -204,7 +204,7 @@ class MuFastSteering : public HLT::FexAlgo,
SG::WriteHandle<MuonFeatureDetails> m_muFeDeContainer; SG::WriteHandle<MuonFeatureDetails> m_muFeDeContainer;
//Test Value to confirm to record with WriteHandle //Test Value to confirm to record with WriteHandle
MuonFeatureDetails muFeDeTestValue; MuonFeatureDetails m_muFeDeTestValue;
//Monitored variables //Monitored variables
float m_inner_mdt_hits; float m_inner_mdt_hits;
......
...@@ -365,13 +365,13 @@ StatusCode MuFastSteering::execute() { ...@@ -365,13 +365,13 @@ StatusCode MuFastSteering::execute() {
float muFeDePt = 1.52; float muFeDePt = 1.52;
float muFeDeAlpha = 1.23; float muFeDeAlpha = 1.23;
float muFeDeBeta = -1.15; float muFeDeBeta = -1.15;
muFeDeTestValue.setPt(muFeDePt); m_muFeDeTestValue.setPt(muFeDePt);
muFeDeTestValue.setAlpha(muFeDeAlpha); m_muFeDeTestValue.setAlpha(muFeDeAlpha);
muFeDeTestValue.setBeta(muFeDeBeta); m_muFeDeTestValue.setBeta(muFeDeBeta);
//WriteHandle:MuonFeatureDetails to record //WriteHandle:MuonFeatureDetails to record
SG::WriteHandle<MuonFeatureDetails> muFeDeContainerHandle(m_muFeDeContainerKey); SG::WriteHandle<MuonFeatureDetails> muFeDeContainerHandle(m_muFeDeContainerKey);
muFeDeContainerHandle = std::make_unique<MuonFeatureDetails>(muFeDeTestValue); muFeDeContainerHandle = std::make_unique<MuonFeatureDetails>(m_muFeDeTestValue);
if(!muFeDeContainerHandle.isValid()){ if(!muFeDeContainerHandle.isValid()){
ATH_MSG_ERROR("ReadHandle for MuonFeatureDetails isn't Valid"); ATH_MSG_ERROR("ReadHandle for MuonFeatureDetails isn't Valid");
return StatusCode::FAILURE; return StatusCode::FAILURE;
......
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