Belle II Software  release-08-01-10
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 
17 namespace Belle2 {
30 
31  public:
36 
37  private:
38 
42  virtual void prepare() final;
43 
47  virtual void collect() final;
48 
49  // collections
52  // other
53  std::vector<std::string> m_names;
54  std::vector<std::string> m_asicNames;
56  };
57 
59 } // end namespace Belle2
60 
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.