Belle II Software prerelease-10-00-00a
BoostVectorCollectorModule.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#include <calibration/CalibrationCollectorModule.h>
9
10#include <framework/geometry/B2Vector3.h>
11
12#include <string>
13
14namespace Belle2 {
27
28 public:
33
37 void prepare() override final;
38
43 void collect() override final;
44
45 private:
46
47 int m_exp;
48 int m_run;
49 int m_evt;
50
51
52 double m_time;
53
54 double m_mu0_pid;
55 double m_mu1_pid;
56
59
61 std::string m_Y4SPListName = "";
62
63 };
64
66} // end namespace Belle2
67
void prepare() override final
Initialize the module.
double m_mu1_pid
particle ID of mu/e separation second muon
std::string m_Y4SPListName
Name of the Y4S particle list.
B2Vector3D m_mu0_p
three momentum of first muon
void collect() override final
Event processor The filling of the tree.
double m_mu0_pid
particle ID of mu/e separation first muon
B2Vector3D m_mu1_p
three momentum of second muon
CalibrationCollectorModule()
Constructor. Sets the default prefix for calibration dataobjects.
B2Vector3< double > B2Vector3D
typedef for common usage with double
Definition B2Vector3.h:516
Abstract base class for different kinds of events.