Belle II Software development
KLMChannelStatusCollectorModule.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/* KLM headers. */
12#include <klm/dataobjects/KLMDigit.h>
13#include <klm/dataobjects/KLMChannelArrayIndex.h>
14#include <klm/dataobjects/KLMChannelMapValue.h>
15#include <klm/dataobjects/KLMElementNumbers.h>
16
17/* Basf2 headers. */
18#include <calibration/CalibrationCollectorModule.h>
19#include <framework/datastore/StoreArray.h>
20#include <framework/datastore/StoreObjPtr.h>
21
22namespace Belle2 {
33
34 public:
35
40
45
49 void prepare() override;
50
54 void collect() override;
55
59 void closeRun() override;
60
65 void collectFromDQM(const char* dqmFile);
66
67 private:
68
71
74
77
80
81 };
82
84}
Calibration collector module base class.
KLM channel array index.
KLM channel status calibration (data collection).
StoreObjPtr< KLMChannelMapValue< unsigned int > > m_HitMap
Hit map.
const KLMElementNumbers * m_ElementNumbers
Element numbers.
void collectFromDQM(const char *dqmFile)
Collection of data from DQM modules.
void collect() override
This method is called for each event.
void closeRun() override
This method is called at the end of run.
const KLMChannelArrayIndex * m_ChannelArrayIndex
KLM channel array index.
KLM element numbers.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.