ATLAS Offline Software
Loading...
Searching...
No Matches
ITrigJetMonitorTool.h
Go to the documentation of this file.
1// -*- C++ -*-
2
3/*
4 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef TRIGJETMONITORING_ITRIGJETMONITORTOOL_H
8#define TRIGJETMONITORING_ITRIGJETMONITORTOOL_H `
9
10#include "GaudiKernel/IAlgTool.h"
11#include "GaudiKernel/EventContext.h"
12
13#include <vector>
14#include <string>
15
16
17enum class MatchToEnum {hlt, offline};
18
19class JetData;
20class JetMatchData;
21
22class ITrigJetMonitorTool : virtual public IAlgTool {
23public:
24 // static const InterfaceID& interfaceID();
26 virtual StatusCode getData(const EventContext& ctx,
27 std::vector<JetData>& jetData) const = 0;
28
29 virtual StatusCode getMatchData(const EventContext& ctx,
31 std::vector<JetMatchData>& ) const = 0;
32
33};
34#endif
virtual StatusCode getData(const EventContext &ctx, std::vector< JetData > &jetData) const =0
DeclareInterfaceID(ITrigJetMonitorTool, 1, 0)
virtual StatusCode getMatchData(const EventContext &ctx, MatchToEnum, std::vector< JetMatchData > &) const =0