Skip to content
Snippets Groups Projects
Commit e72aeedd authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'namespace.TrigBjetHypo-20170903' into 'master'

TrigBjetHypo: Using directive placement.

See merge request !4401
parents b6682320 e15d09b2
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
#include "GaudiKernel/Property.h" #include "GaudiKernel/Property.h"
#include "TrigBjetHypoAlg.h" #include "TrigBjetHypoAlg.h"
using namespace TrigCompositeUtils;
TrigBjetHypoAlg::TrigBjetHypoAlg( const std::string& name, TrigBjetHypoAlg::TrigBjetHypoAlg( const std::string& name,
ISvcLocator* pSvcLocator ) : ISvcLocator* pSvcLocator ) :
::AthReentrantAlgorithm( name, pSvcLocator ), ::AthReentrantAlgorithm( name, pSvcLocator ),
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
* @class Implements b-jet selection for the new HLT framework * @class Implements b-jet selection for the new HLT framework
* @brief * @brief
**/ **/
using namespace TrigCompositeUtils;
class TrigBjetHypoAlg class TrigBjetHypoAlg
: public ::AthReentrantAlgorithm : public ::AthReentrantAlgorithm
...@@ -32,9 +31,9 @@ class TrigBjetHypoAlg ...@@ -32,9 +31,9 @@ class TrigBjetHypoAlg
virtual ~TrigBjetHypoAlg(); virtual ~TrigBjetHypoAlg();
StatusCode initialize() override; virtual StatusCode initialize() override;
StatusCode execute_r( const EventContext& context ) const override; virtual StatusCode execute_r( const EventContext& context ) const override;
StatusCode finalize() override; virtual StatusCode finalize() override;
private: private:
TrigBjetHypoAlg(); TrigBjetHypoAlg();
...@@ -43,7 +42,7 @@ class TrigBjetHypoAlg ...@@ -43,7 +42,7 @@ class TrigBjetHypoAlg
// ----->>>>>>> // ----->>>>>>>
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roisKey; SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roisKey;
SG::ReadHandleKey< xAOD::BTaggingContainer> m_bTagKey; SG::ReadHandleKey< xAOD::BTaggingContainer> m_bTagKey;
SG::WriteHandleKey< DecisionContainer > m_decisionsKey; SG::WriteHandleKey< TrigCompositeUtils::DecisionContainer > m_decisionsKey;
}; };
......
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