Belle II Software development
PXDHotPixelMaskCollectorModule.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/datastore/StoreArray.h>
12#include <calibration/CalibrationCollectorModule.h>
13#include <string>
14
15namespace Belle2 {
20 class PXDDigit;
21
28
29 public:
30
36 void prepare() override final;
38 void collect() override final;
39
40 private:
43
45 std::string m_storeDigitsName;
46
48 int m_0cut;
49
50 };
51
52}
CalibrationCollectorModule()
Constructor. Sets the default prefix for calibration dataobjects.
The PXD digit class.
Definition PXDDigit.h:27
int m_0cut
Minimum charge (ADU) for detecting a hit.
PXDHotPixelMaskCollectorModule()
Constructor: Sets the description, the properties and the parameters of the module.
StoreArray< PXDDigit > m_pxdDigit
< Required input for PXDigits
std::string m_storeDigitsName
Name of the collection to use for PXDDigits.
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Abstract base class for different kinds of events.