Belle II Software  release-08-01-10
KlongMomentumUpdaterExpertModule.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 // framework - DataStore
14 #include <framework/datastore/StoreObjPtr.h>
15 
16 // dataobjects
17 #include <analysis/dataobjects/ParticleList.h>
18 
19 #include <string>
20 
21 namespace Belle2 {
34 
35  public:
36 
41 
46  virtual void initialize() override;
47 
51  virtual void event() override;
52 
53 
54  private:
55 
56  std::string m_listName;
59  bool m_writeOut;
60  };
61 
63 } // Belle2 namespace
Calculate and update the two body B decay kinematics.
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
std::string m_listName
name of the input ParticleList
StoreObjPtr< ParticleList > m_plist
the input ParticleList.
Base class for Modules.
Definition: Module.h:72
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.