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 {
30
31
40
41
42 public:
45
48
50 void initialize() override;
51
52
54 void event() override;
55
56
58 void terminate() override;
59
60 protected:
61
64
67
70
72 std::string m_PARAMNameTag;
73
75 std::string m_PARAMoutputDir = "./";
76
78 std::vector <
81
82
83 private:
84 };
85
86}
Module()
Constructor.
Definition Module.cc:30
This class contains all relevant tools for training a VXDTFFilters.
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 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.
~VXDTFTrainingDataCollectorModule() override
VXDTFTrainingDataCollectorModule destructor.
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.