Belle II Software  release-08-01-10
TOPAsicShiftsBS13dCollectorModule.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 
13 #include <framework/datastore/StoreArray.h>
14 #include <framework/datastore/StoreObjPtr.h>
15 #include <top/dataobjects/TOPDigit.h>
16 #include <top/dataobjects/TOPRecBunch.h>
17 
18 namespace Belle2 {
28 
29  public:
34 
35  private:
36 
40  virtual void prepare() final;
41 
45  virtual void collect() final;
46 
47  // steering parameters
48  double m_timeOffset;
49  int m_nx;
52  // collections
56  };
57 
59 } // end namespace Belle2
Calibration collector module base class.
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
StoreObjPtr< TOPRecBunch > m_recBunch
reconstructed bunch
bool m_requireRecBunch
if true, require reconstructed bunch
StoreArray< TOPDigit > m_topDigits
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.