Belle II Software  release-05-01-25
EKLMAlignmentAlongStripsCollectorModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2017 Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Kirill Chilikin *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 /* KLM headers. */
14 #include <klm/eklm/calibration/EKLMAlignmentAlongStripsAlgorithm.h>
15 #include <klm/eklm/geometry/GeometryData.h>
16 #include <klm/eklm/geometry/TransformData.h>
17 
18 /* Belle 2 headers. */
19 #include <calibration/CalibrationCollectorModule.h>
20 #include <framework/datastore/StoreArray.h>
21 #include <mdst/dataobjects/Track.h>
22 
23 namespace Belle2 {
32  class EKLMAlignmentAlongStripsCollectorModule :
33  public CalibrationCollectorModule {
34 
35  public:
36 
41 
47 
53 
58 
62  void prepare() override;
63 
67  void collect() override;
68 
72  void finish() override;
73 
74  private:
75 
78 
81 
84 
87 
90 
93 
94  };
95 
97 }
Belle2::EKLMAlignmentAlongStripsCollectorModule
EKLM time calibration (data collection).
Definition: EKLMAlignmentAlongStripsCollectorModule.h:40
Belle2::EKLM::TransformData
Transformation data.
Definition: TransformData.h:37
Belle2::EKLMAlignmentAlongStripsAlgorithm::Event
Event: time, distance from hit to SiPM.
Definition: EKLMAlignmentAlongStripsAlgorithm.h:40
Belle2::EKLMElementNumbers
EKLM element numbers.
Definition: EKLMElementNumbers.h:34
Belle2::EKLMAlignmentAlongStripsCollectorModule::~EKLMAlignmentAlongStripsCollectorModule
~EKLMAlignmentAlongStripsCollectorModule()
Destructor.
Definition: EKLMAlignmentAlongStripsCollectorModule.cc:38
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_Event
struct EKLMAlignmentAlongStripsAlgorithm::Event * m_Event
Event.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:100
Belle2::EKLMAlignmentAlongStripsCollectorModule::collect
void collect() override
This method is called for each event.
Definition: EKLMAlignmentAlongStripsCollectorModule.cc:58
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_ElementNumbers
const EKLMElementNumbers * m_ElementNumbers
Element numbers.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:85
Belle2::EKLMAlignmentAlongStripsCollectorModule::EKLMAlignmentAlongStripsCollectorModule
EKLMAlignmentAlongStripsCollectorModule()
Constructor.
Definition: EKLMAlignmentAlongStripsCollectorModule.cc:26
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::EKLM::GeometryData
EKLM geometry data.
Definition: GeometryData.h:40
Belle2::EKLMAlignmentAlongStripsCollectorModule::finish
void finish() override
This method is called at the end of the event processing.
Definition: EKLMAlignmentAlongStripsCollectorModule.cc:135
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_KLMDigits
StoreArray< KLMDigit > m_KLMDigits
EKLM digits.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:94
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_Tracks
StoreArray< Track > m_Tracks
Tracks.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:97
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_GeoDat
const EKLM::GeometryData * m_GeoDat
Geometry data.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:88
Belle2::EKLMAlignmentAlongStripsCollectorModule::m_TransformData
EKLM::TransformData * m_TransformData
Transformation data.
Definition: EKLMAlignmentAlongStripsCollectorModule.h:91
Belle2::EKLMAlignmentAlongStripsCollectorModule::operator=
EKLMAlignmentAlongStripsCollectorModule & operator=(const EKLMAlignmentAlongStripsCollectorModule &)=delete
Operator = (disabled).
Belle2::EKLMAlignmentAlongStripsCollectorModule::prepare
void prepare() override
Initializer.
Definition: EKLMAlignmentAlongStripsCollectorModule.cc:43