ATLAS Offline Software
Loading...
Searching...
No Matches
IRoiReader.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGROICONVERSION_IROIREADER_H
6#define TRIGROICONVERSION_IROIREADER_H
7
8#include <string>
9#include <vector>
10
11#include "AsgTools/IAsgTool.h"
12
13
14class IRoiReader : public virtual asg::IAsgTool {
15
17
18public:
19
20 virtual void execute( std::vector<std::string>& keys ) = 0;
21
22};
23
24#endif
#define ASG_TOOL_INTERFACE(CLASSNAME)
virtual void execute(std::vector< std::string > &keys)=0
Base class for the dual-use tool interface classes.
Definition IAsgTool.h:41