Belle II Software development
TOPChannelMaskCollectorModule.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 <calibration/CalibrationCollectorModule.h>
12#include <framework/datastore/StoreArray.h>
13#include <top/dataobjects/TOPDigit.h>
14#include <vector>
15#include <string>
16
17namespace Belle2 {
27
28 public:
33
34 private:
35
39 virtual void prepare() final;
40
44 virtual void collect() final;
45
46 // collections
49 // other
50 std::vector<std::string> m_names;
51 std::vector<std::string> m_asicNames;
53 };
54
56} // end namespace Belle2
57
Calibration collector module base class.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Collector for preparing masks of hot and dead channels.
std::vector< std::string > m_asicNames
histogram names: window vs.
std::vector< std::string > m_names
histogram names: channel occupancies
StoreArray< TOPDigit > m_digits
collection of TOP digits
virtual void collect() final
Replacement for event().
virtual void prepare() final
Replacement for initialize().
Abstract base class for different kinds of events.