Belle II Software  release-05-01-25
TOPAsicShiftsBS13dCollectorModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Marko Staric *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <calibration/CalibrationCollectorModule.h>
14 
15 #include <framework/datastore/StoreArray.h>
16 #include <framework/datastore/StoreObjPtr.h>
17 #include <top/dataobjects/TOPDigit.h>
18 #include <top/dataobjects/TOPRecBunch.h>
19 
20 namespace Belle2 {
29  class TOPAsicShiftsBS13dCollectorModule : public CalibrationCollectorModule {
30 
31  public:
36 
37  private:
38 
42  virtual void prepare() final;
43 
47  virtual void collect() final;
48 
49  // steering parameters
50  double m_timeOffset;
51  int m_nx;
52  bool m_requireRecBunch;
54  // collections
58  };
59 
61 } // end namespace Belle2
Belle2::TOPAsicShiftsBS13dCollectorModule::m_nx
int m_nx
number of histogram bins
Definition: TOPAsicShiftsBS13dCollectorModule.h:59
Belle2::TOPRecBunch
Class to store results of TOPBunchFinder.
Definition: TOPRecBunch.h:35
Belle2::TOPAsicShiftsBS13dCollectorModule::prepare
virtual void prepare() final
Replacement for initialize().
Definition: TOPAsicShiftsBS13dCollectorModule.cc:54
Belle2::TOPAsicShiftsBS13dCollectorModule::m_timeOffset
double m_timeOffset
time offset
Definition: TOPAsicShiftsBS13dCollectorModule.h:58
Belle2::TOPAsicShiftsBS13dCollectorModule::TOPAsicShiftsBS13dCollectorModule
TOPAsicShiftsBS13dCollectorModule()
Constructor.
Definition: TOPAsicShiftsBS13dCollectorModule.cc:38
Belle2::TOPDigit
Class to store TOP digitized hits (output of TOPDigitizer or raw data unpacker) relations to TOPSimHi...
Definition: TOPDigit.h:34
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::StoreObjPtr
Type-safe access to single objects in the data store.
Definition: ParticleList.h:33
Belle2::TOPAsicShiftsBS13dCollectorModule::collect
virtual void collect() final
Replacement for event().
Definition: TOPAsicShiftsBS13dCollectorModule.cc:93
Belle2::TOPAsicShiftsBS13dCollectorModule::m_requireRecBunch
bool m_requireRecBunch
if true, require reconstructed bunch
Definition: TOPAsicShiftsBS13dCollectorModule.h:60
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::TOPAsicShiftsBS13dCollectorModule::m_recBunch
StoreObjPtr< TOPRecBunch > m_recBunch
reconstructed bunch
Definition: TOPAsicShiftsBS13dCollectorModule.h:64
Belle2::TOPAsicShiftsBS13dCollectorModule::m_topDigits
StoreArray< TOPDigit > m_topDigits
collection of TOP digits
Definition: TOPAsicShiftsBS13dCollectorModule.h:63