ATLAS Offline Software
ITrigEFBphysCnvTool.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:$
8 #ifndef xAODTrigBphysCNV_ITrigEFBphysCnvTool_H
9 #define xAODTrigBphysCNV_ITrigEFBphysCnvTool_H
10 
11 
12 // Gaudi/Athena include(s):
13 #include "GaudiKernel/IAlgTool.h"
14 
15 // EDM include(s):
17 
18 
19 // Forward declaration(s):
20 class TrigEFBphys;
21 
22 namespace xAODMaker {
23 
25  static const InterfaceID
26  IID_ITrigEFBphysCnvTool( "xAODMaker::ITrigEFBphysCnvTool", 1, 0 );
27 
33  class ITrigEFBphysCnvTool : public virtual IAlgTool {
34 
35  public:
37  virtual StatusCode convert(const TrigEFBphys* aod,
38  xAOD::TrigBphys* xaod ) const = 0;
39 
41  static const InterfaceID& interfaceID() {
42  return IID_ITrigEFBphysCnvTool;
43  }
44 
45  }; // class ITrigEFBphysCnvTool
46 
47 } // namespace xAODMaker
48 
49 #endif // xAODTrigBphysCNV_ITrigEFBphysCnvTool_H
50 
TrigEFBphys
Definition: TrigEFBphys.h:42
xAODMaker::ITrigEFBphysCnvTool::convert
virtual StatusCode convert(const TrigEFBphys *aod, xAOD::TrigBphys *xaod) const =0
Function that fills an existing xAOD::TrigBphysContainer.
xAODMaker
Definition: StoreGateSvc.h:72
xAODMaker::ITrigEFBphysCnvTool::interfaceID
static const InterfaceID & interfaceID()
Gaudi interface definition.
Definition: ITrigEFBphysCnvTool.h:41
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigBphys.h
xAOD::TrigBphys_v1
Class describing a Bphysics online composite object.
Definition: TrigBphys_v1.h:44
xAODMaker::ITrigEFBphysCnvTool
Interface for the tool creating TrigBphysContainer from an AOD.
Definition: ITrigEFBphysCnvTool.h:33