Belle II Software development
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
14namespace Belle2 {
25 class InteractiveModule : public Module {
26
27 public:
28
34
36
37 virtual void event() override;
38 };
40}
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.