Belle II Software development
CDCTrackingEventLevelMdstInfoFiller.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#pragma once
9
10#include <tracking/trackFindingCDC/eventdata/utils/ClassMnemomics.h>
11
12#include <tracking/trackFindingCDC/eventdata/hits/CDCWireHit.h>
13#include <tracking/trackFindingCDC/eventdata/segments/CDCSegment2D.h>
14#include <tracking/trackFindingCDC/findlets/base/FindletModule.h>
15#include <tracking/trackFindingCDC/findlets/base/Findlet.h>
16#include <framework/datastore/StoreObjPtr.h>
17#include <mdst/dataobjects/EventLevelTrackingInfo.h>
18
19#include <vector>
20#include <string>
21
22namespace Belle2 {
27 namespace TrackFindingCDC {
32 private:
35
36 public:
38 std::string getDescription() final;
39
41 void initialize() final;
42
43 public:
45 void apply(const std::vector<CDCWireHit>& inputWireHits) final;
46
47 private:
50 };
51
56 private:
59
60 public:
62 std::string getDescription() final;
63
65 void initialize() final;
66
67 public:
69 void apply(const std::vector<CDCSegment2D>& inputSegment2Ds) final;
70
71 private:
74 };
75
80 public:
84 {
85 }
86 };
87
92 FindletModule<CDCTrackingEventLevelMdstInfoFillerFromSegmentsFindlet> {
93 public:
97 {
98 }
99 };
100 }
102}
Tracking-related info on event-level, for example number of unassigned measurements.
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
A reconstructed sequence of two dimensional hits in one super layer.
Definition: CDCSegment2D.h:39
Findlet for storing in mdsts some hit-based information per event.
StoreObjPtr< EventLevelTrackingInfo > m_eventLevelTrackingInfo
Acccess to the EventLevelTrackingInfo object in the datastore.
void apply(const std::vector< CDCWireHit > &inputWireHits) final
Main method to make the heavy lifting.
Module interface to the CDCTrackingEventLevelMdstInfoFillerFromHitsFindlet.
CDCTrackingEventLevelMdstInfoFillerFromHitsModule()
Constructor setting up the default store array names.
Findlet for storing in mdsts some segment-based information per event.
Module interface to the CDCTrackingEventLevelMdstInfoFillerFromSegmentsFindlet.
CDCTrackingEventLevelMdstInfoFillerFromSegmentsModule()
Constructor setting up the default store array names.
Class representing a hit wire in the central drift chamber.
Definition: CDCWireHit.h:55
Adapter of a findlet to a module that exposes the parameters of the findlet and manages the IO with t...
Definition: FindletModule.h:30
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition: Findlet.h:26
Abstract base class for different kinds of events.
STL namespace.