Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ISkimmingTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // ISkimmingTool.h, (c) ATLAS Detector software
7 
8 #ifndef DERIVATIONFRAMEWORK_INTERFACES_ISKIMMINGTOOL_H
9 #define DERIVATIONFRAMEWORK_INTERFACES_ISKIMMINGTOOL_H
10 
11 // Gaudi
12 #include "GaudiKernel/IAlgTool.h"
13 
14 namespace DerivationFramework {
15 
23  class ISkimmingTool : virtual public extend_interfaces<IAlgTool> {
24  public:
26 
28  virtual ~ISkimmingTool(){}
29 
31  virtual bool eventPassesFilter() const = 0;
32  };
33 
34 } // end of namespace
35 
36 #endif
DerivationFramework::ISkimmingTool
Definition: ISkimmingTool.h:23
DerivationFramework::ISkimmingTool::DeclareInterfaceID
DeclareInterfaceID(ISkimmingTool, 1, 0)
DerivationFramework::ISkimmingTool::eventPassesFilter
virtual bool eventPassesFilter() const =0
Check that the current event passes this filter.
DerivationFramework
THE reconstruction tool.
Definition: ParticleSortingAlg.h:24
DerivationFramework::ISkimmingTool::~ISkimmingTool
virtual ~ISkimmingTool()
Virtual destructor.
Definition: ISkimmingTool.h:28