Belle II Software  release-05-02-19
PXDHotPixelMaskCollectorModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Benjamin Schwenker *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <framework/datastore/StoreArray.h>
14 #include <pxd/dataobjects/PXDDigit.h>
15 #include <calibration/CalibrationCollectorModule.h>
16 #include <string>
17 
18 namespace Belle2 {
31  class PXDHotPixelMaskCollectorModule : public CalibrationCollectorModule {
32 
33  public:
34 
39  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 }
Belle2::PXDHotPixelMaskCollectorModule::PXDHotPixelMaskCollectorModule
PXDHotPixelMaskCollectorModule()
Constructor: Sets the description, the properties and the parameters of the module.
Definition: PXDHotPixelMaskCollectorModule.cc:32
Belle2::PXDHotPixelMaskCollectorModule::prepare
void prepare() override final
Replacement for initialize(). Register calibration dataobjects here as well.
Definition: PXDHotPixelMaskCollectorModule.cc:42
Belle2::PXDDigit
The PXD digit class.
Definition: PXDDigit.h:38
Belle2::PXDHotPixelMaskCollectorModule::m_pxdDigit
StoreArray< PXDDigit > m_pxdDigit
< Required input for PXDigits
Definition: PXDHotPixelMaskCollectorModule.h:52
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXDHotPixelMaskCollectorModule::m_storeDigitsName
std::string m_storeDigitsName
Name of the collection to use for PXDDigits.
Definition: PXDHotPixelMaskCollectorModule.h:55
Belle2::PXDHotPixelMaskCollectorModule::m_0cut
int m_0cut
Minimum charge (ADU) for detecting a hit.
Definition: PXDHotPixelMaskCollectorModule.h:58
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::PXDHotPixelMaskCollectorModule::collect
void collect() override final
Replacement for event(). Fill you calibration data objects here.
Definition: PXDHotPixelMaskCollectorModule.cc:99