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 <pxd/dataobjects/PXDDigit.h>
13#include <calibration/CalibrationCollectorModule.h>
14#include <string>
15
16namespace Belle2 {
27
28 public:
29
35 void prepare() override final;
37 void collect() override final;
38
39 private:
42
44 std::string m_storeDigitsName;
45
47 int m_0cut;
48
49 };
51}
Calibration collector module base class.
Calibration Collector Module for PXD hot pixel masking from PXDDigits.
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.