Belle II Software  release-08-01-10
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 
25 namespace Belle2 {
43 
44 
45  public:
48 
51 
53  void initialize() override;
54 
56  void beginRun() override
57  { }
58 
60  void event() override;
61 
63  void endRun() override
64  { }
65 
67  void terminate() override;
68 
69  protected:
70 
73 
76 
79 
81  std::string m_PARAMNameTag;
82 
84  std::vector <
87 
88 
89  private:
90  };
92 }
Base class for Modules.
Definition: Module.h:72
This class contains all relevant tools for training a VXDTFFilters.
Definition: SecMapTrainer.h:43
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.