Belle II Software prerelease-11-00-00a
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
31
32 public:
33
39 void prepare() override final;
41 void collect() override final;
42
43 private:
46
48 std::string m_storeDigitsName;
49
51 int m_0cut;
52
53 };
54
55}
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.