ATLAS Offline Software
Loading...
Searching...
No Matches
TestFactory.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5//
6// Test Factory - generates a test object given the name of
7// a test. Meant to run in both Athena and RootCore environments.
8//
9
10#ifndef TRIGANALYSISTEST_TESTFACTORY_H
11#define TRIGANALYSISTEST_TESTFACTORY_H
12
14
15#include <string>
16
17namespace TrigAnalysisTest {
18
19 // Get a test to be run.
20 // Exception is thrown if name is not recognized as a valid test.
21 ITest *GetTrigAnalysisTest (const std::string &name);
22
23}
24
25#endif
ITest * GetTrigAnalysisTest(const string &name)