ATLAS Offline Software
IProbeCollectorTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 // IMSProbeCollectorTool.h, (c) ATLAS Detector software
8 #ifndef IProbeCollectorTool_H
9 #define IProbeCollectorTool_H
10 
11 #include "GaudiKernel/IAlgTool.h"
12 
13 
14 static const InterfaceID IID_IProbeCollectorTool("IProbeCollectorTool", 1, 0);
15 
16 class IProbeCollectorTool : virtual public IAlgTool {
17  public:
18  static const InterfaceID& interfaceID( ) ;
19 
20  // enter declaration of your interface-defining member functions here
21  virtual StatusCode createProbeCollection() = 0; // const = 0;
22 };
23 
24 inline const InterfaceID& IProbeCollectorTool::interfaceID()
25 {
26  return IID_IProbeCollectorTool;
27 }
28 
29 #endif
IProbeCollectorTool
Definition: IProbeCollectorTool.h:16
IProbeCollectorTool::createProbeCollection
virtual StatusCode createProbeCollection()=0
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IProbeCollectorTool::interfaceID
static const InterfaceID & interfaceID()
Definition: IProbeCollectorTool.h:24