ATLAS Offline Software
Loading...
Searching...
No Matches
AthAsgExUnittestTool.h
Go to the documentation of this file.
1// -*- mode: c++ -*-
2//
3// Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
4//
5#ifndef ATHASGEXUNITTEST_ATHEXUNITTESTTOOL_H
6#define ATHASGEXUNITTEST_ATHEXUNITTESTTOOL_H 1
7
8#include "AsgTools/AsgTool.h"
10
12public:
13
15 // Add another constructor for non-athena use cases
16 AthAsgExUnittestTool( const std::string& name );
17
18 // Initialize is required by AsgTool base class
19 virtual StatusCode initialize() override;
20
21 // This tools method
22 virtual double useTheProperty() override;
23
24private:
25
27 unsigned int m_enumProperty;
28
29};
30
31#endif //> !ATHASGEXUNITTEST_ATHEXUNITTESTTOOL_H
#define ASG_TOOL_CLASS(CLASSNAME, INT1)
virtual double useTheProperty() override
AthAsgExUnittestTool(const std::string &name)
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
Base class for the dual-use tool implementation classes.
Definition AsgTool.h:47