Belle II Software development
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 {
24
25 public:
30
34 void prepare() override final;
35
40 void collect() override final;
41
42 private:
43
44 int m_exp;
45 int m_run;
46 int m_evt;
47
48
49 double m_time;
50
51 double m_mu0_pid;
52 double m_mu1_pid;
53
56
58 std::string m_Y4SPListName = "";
59
60 };
61
63} // end namespace Belle2
64
This collects the track parameters and momenta of the mu+mu- events for calibration of the BoostVecto...
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
Calibration collector module base class.
Abstract base class for different kinds of events.