Belle II Software development
PXDDQMExpressRecoModule.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#include <framework/datastore/StoreArray.h>
13#include <pxd/dataobjects/PXDDigit.h>
14#include <pxd/dataobjects/PXDCluster.h>
15
16#include "TH1D.h"
17
18namespace Belle2 {
25 class PXDDQMExpressRecoModule : public HistoModule { // <- derived from HistoModule class
26
27 public:
28
31
32 private:
34 void initialize() override final;
36 void beginRun() override final;
38 void event() override final;
39
44 void defineHisto() override final;
45
46 private:
47
56
63
68
70 TH1D* m_hitMapCounts = {};
74 TH1D* m_hitMapClCounts = {};
77
83 std::vector <TH1D*> m_fired = {};
85 std::vector<TH1D*> m_goodfired = {};
87 std::vector <TH1D*> m_clusters = {};
89 std::vector<TH1D*> m_goodclusters = {};
90 // FIXME: Startrow related histos are expert debugging, not for shifter (-> remove this)
92 //std::vector <TH1D*> m_startRow={};
94 //std::vector <TH1D*> m_chargStartRow={};
96 //std::vector <TH1D*> m_startRowCount={};
98 std::vector <TH1D*> m_clusterCharge = {};
100 std::vector <TH1D*> m_pixelSignal = {};
102 std::vector <TH1D*> m_clusterSizeU = {};
104 std::vector <TH1D*> m_clusterSizeV = {};
106 std::vector <TH1D*> m_clusterSizeUV = {};
107
108 };
109
111}
112
HistoModule.h is supposed to be used instead of Module.h for the modules with histogram definitions t...
Definition: HistoModule.h:29
std::vector< TH1D * > m_goodfired
Filtered fired pixels per event.
TH1D * m_hitMapClFilterCounts
Hitmaps of filtered Clusters.
void initialize() override final
Initialize.
std::vector< TH1D * > m_fired
Fired pixels per event.
int m_CutMinSeedCharge
cut for accepting to filtered hitmap histogram, using cluster seed
std::vector< TH1D * > m_clusterSizeUV
Cluster size.
std::string m_storePXDClustersName
PXDClusters StoreArray name.
TH1D * m_hitMapFilterCounts
Hitmaps of filtered Digits.
void defineHisto() override final
Histogram definitions such as TH1(), TH2(), TNtuple(), TTree()....
int m_CutMinCharge
cut for accepting filtered pixel
std::vector< TH1D * > m_pixelSignal
Charge of pixels.
std::vector< TH1D * > m_clusterSizeV
v cluster size
TH1D * m_hitMapCounts
Hitmaps of Digits.
TH1D * m_hitMapCountsChip
Hitmaps of digits on chips.
TH1D * m_hitMapClCounts
Hitmaps of Clusters.
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
int m_CutMinClusterCharge
cut for accepting filtered cluster, using cluster charge
std::vector< TH1D * > m_goodclusters
filtered Clusters per event
StoreArray< PXDDigit > m_storePXDDigits
Storearray for Digits
std::vector< TH1D * > m_clusterSizeU
u cluster size
std::vector< TH1D * > m_clusters
Clusters per event.
void beginRun() override final
Begin run.
int m_CutMaxClusterSize
cut for accepting to filtered hitmap histogram, maximum cluster size
StoreArray< PXDCluster > m_storePXDClusters
Storearray for Cluster
TH1D * m_hitMapClCountsChip
Hitmaps of clusters on chips.
std::vector< TH1D * > m_clusterCharge
Start row distribution.
std::string m_storePXDDigitsName
PXDDigits StoreArray name.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.