Belle II Software development
PhysicsObjectsMiraBelleDst2Module.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/HistoModule.h>
12
13#include <TH1F.h>
14
15#include <string>
16
17namespace Belle2 {
24 public:
25
30
34 void initialize() override;
35
39 void beginRun() override;
40
44 void event() override;
45
49 void defineHisto() override;
50
51 private:
52
53 /*******************************
54 * Hitograms for run dependence *
55 ********************************/
56
58 TH1F* m_h_D0_pi0_InvM = nullptr;
59
61 std::string m_triggerIdentifier = "";
62
64 std::string m_dstListName = "";
65
66 };
67
68}
HistoModule()
Constructor.
Definition HistoModule.h:32
std::string m_dstListName
Name of the mu+ particle list.
void event() override
This method is called for each event.
std::string m_triggerIdentifier
Trigger identifier string used to select events for the histograms.
void beginRun() override
Called when entering a new run.
TH1F * m_h_D0_pi0_InvM
Pi0 invariant mass for D0->Kpipi0.
void defineHisto() override
Definition of the histograms.
Abstract base class for different kinds of events.