Belle II Software  release-08-01-10
InteractiveModule.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 
11 #include <framework/core/Module.h>
12 
13 
14 namespace Belle2 {
28  class InteractiveModule : public Module {
29 
30  public:
31 
37 
39 
40  virtual void event() override;
41  };
43 }
Start an interactive python shell in each call of event().
virtual void event() override
This method is the core of the module.
Base class for Modules.
Definition: Module.h:72
Abstract base class for different kinds of events.