Belle II Software development
PXDDQMCorrModule.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 <framework/datastore/StoreArray.h>
14
15#include "TH1F.h"
16#include "TH2F.h"
17
18namespace Belle2 {
23 class PXDCluster;
24
26 class PXDDQMCorrModule : public HistoModule { // <- derived from HistoModule class
27
28 public:
29
32
33 private:
35 void initialize() override final;
37 void beginRun() override final;
39 void event() override final;
40
45 void defineHisto() override final;
46
47 private:
52
55
56 // +1 in dimensions to protect against noisy VXDID values.
62 TH1F* m_DeltaU{};
64 TH1F* m_DeltaV{};
65 };
66
68}
69
HistoModule()
Constructor.
Definition HistoModule.h:32
The PXD Cluster class This class stores all information about reconstructed PXD clusters The position...
Definition PXDCluster.h:30
TH2F * m_CorrelationV
Correlation Sensor 1 vs 2.
void initialize() override final
Initialize.
StoreArray< PXDCluster > m_storeClusters
Storearray for clusters.
void defineHisto() override final
Histogram definitions such as TH1(), TH2(), TNtuple(), TTree()....
void event() override final
Event.
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
TH2F * m_CorrelationU
Correlation Sensor 1 vs 2.
TH1F * m_DeltaV
Correlation Sensor 1 vs 2.
std::string m_storeClustersName
PXDClusters StoreArray name.
void beginRun() override final
Begin run.
TH1F * m_DeltaU
Correlation Sensor 1 vs 2.
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Abstract base class for different kinds of events.