ATLAS Offline Software
Loading...
Searching...
No Matches
G4TestAlg.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#ifndef G4ATLASTESTS_G4TESTALG_H
6#define G4ATLASTESTS_G4TESTALG_H
7
9#include "GaudiKernel/ToolHandle.h"
10
11class ISimTestTool;
12
13class G4TestAlg : public AthAlgorithm {
14
15public:
16
17 G4TestAlg(const std::string& name, ISvcLocator* pSvcLocator);
18
19 StatusCode initialize();
20 StatusCode execute();
21
22private:
23 ToolHandleArray<ISimTestTool> m_testTools;
24
25};
26
27#endif //G4ATLASTESTS_G4TESTALG_H
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
ToolHandleArray< ISimTestTool > m_testTools
Definition G4TestAlg.h:23
G4TestAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition G4TestAlg.cxx:9
StatusCode initialize()
Definition G4TestAlg.cxx:16
StatusCode execute()
Definition G4TestAlg.cxx:25
Interface for the simulation test tools.