Belle II Software  release-08-01-10
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 
16 namespace Belle2 {
30 
31  public:
32 
38  void prepare() override final;
40  void collect() override final;
41 
42  private:
45 
47  std::string m_storeDigitsName;
48 
50  int m_0cut;
51 
52  };
54 }
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.