Belle II Software development
VXDTFTrainingDataCollectorModule.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 <tracking/spacePointCreation/SpacePointTrackCand.h>
12#include <tracking/trackFindingVXD/filterTools/SelectionVariableFactory.h>
13#include <framework/core/Module.h>
14
15#include <framework/datastore/StoreArray.h>
16#include <framework/datastore/StoreObjPtr.h>
17#include <framework/dataobjects/EventMetaData.h>
18
19#include <string>
20#include <vector>
21
22
23
24
25namespace Belle2 {
40
41
42 public:
45
48
50 void initialize() override;
51
53 void beginRun() override
54 { }
55
57 void event() override;
58
60 void endRun() override
61 { }
62
64 void terminate() override;
65
66 protected:
67
70
73
76
78 std::string m_PARAMNameTag;
79
81 std::vector <
84
85
86 private:
87 };
89}
Base class for Modules.
Definition: Module.h:72
This class contains all relevant tools for training a VXDTFFilters.
Definition: SecMapTrainer.h:43
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
~VXDTFTrainingDataCollectorModule()
VXDTFTrainingDataCollectorModule destructor.
VXDTFTrainingDataCollectorModule()
VXDTFTrainingDataCollectorModule constructor.
std::string m_PARAMSpacePointTrackCandsName
Name of storeArray containing the spacePointTrackCands.
std::string m_PARAMNameTag
Name tag that will be attached to the output file.
StoreObjPtr< EventMetaData > m_eventData
Event meta data of the event.
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
spacePointTrackCands to be digested.
std::vector< SecMapTrainer< SelectionVariableFactory< SecMapTrainerHit > > > m_secMapTrainers
Names of the variables to be produced and collected.
Abstract base class for different kinds of events.