ATLAS Offline Software
Loading...
Searching...
No Matches
IMissingETCnvTool.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7// $Id: IMissingETCnvTool.h 586557 2014-03-06 17:56:05Z krasznaa $
8#ifndef XAODMISSINGETCNV_IMISSINGETCNVTOOL_H
9#define XAODMISSINGETCNV_IMISSINGETCNVTOOL_H
10
11// Gaudi/Athena include(s):
12#include "GaudiKernel/IAlgTool.h"
13
14// EDM include(s):
16
17// Forward declaration(s):
18class MissingET;
19
20namespace xAODMaker {
21
23 static const InterfaceID
24 IID_IMissingETCnvTool( "xAODMaker::IMissingETCnvTool", 1, 0 );
25
36 class IMissingETCnvTool : public virtual IAlgTool {
37
38 public:
40 virtual StatusCode add( const MissingET* aod,
41 xAOD::MissingETContainer* xaod ) = 0;
42
44 static const InterfaceID& interfaceID() {
46 }
47
48 }; // class IMissingETCnvTool
49
50} // namespace xAODMaker
51
52#endif // XAODMISSINGETCNV_IMISSINGETCNVTOOL_H
Interface for the tool translating AOD MET objects to xAOD ones.
static const InterfaceID & interfaceID()
Gaudi interface definition.
virtual StatusCode add(const MissingET *aod, xAOD::MissingETContainer *xaod)=0
Function doing the translation.
static const InterfaceID IID_IMissingETCnvTool("xAODMaker::IMissingETCnvTool", 1, 0)
The interface provided by IMissingETCnvTool.