Skip to content
Snippets Groups Projects
Commit 8802e1ff authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'namespace.TrigUpgradeTest-20181201' into 'master'

TrigUpgradeTest: Fix using directive placement.

See merge request atlas/athena!16397
parents 2dd71b67 a2e10842
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,8 @@
#include "GaudiKernel/Property.h"
using namespace TrigCompositeUtils;
namespace HLTTest {
TestRoRSeqFilter::TestRoRSeqFilter( const std::string& name,
......
......@@ -9,7 +9,6 @@
#include "DecisionHandling/TrigCompositeUtils.h"
#include "AthenaBaseComps/AthAlgorithm.h"
using namespace TrigCompositeUtils;
namespace HLTTest {
/**
......@@ -39,14 +38,15 @@ namespace HLTTest {
std::vector<std::string> m_outputs;
std::vector<std::string> m_chainsProperty;
DecisionIDContainer m_chains; // this is the set of chains we care about in this filter
TrigCompositeUtils::DecisionIDContainer m_chains; // this is the set of chains we care about in this filter
bool m_alwaysPass = false; // override decision
/*
@brief fills the output with decision objects lining back to the succesfully passing objs
NB> The positive/negative decision can be red from the output.size()
*/
void copyPassing(const std::string& inputKey, DecisionContainer* output) const;
void copyPassing(const std::string& inputKey,
TrigCompositeUtils::DecisionContainer* output) const;
};
} //> end namespace HLTTest
......
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