Belle II Software  release-05-02-19
CDCDedxScanModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2012 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Jake Bennett
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef CDCDEDXSCANMODULE_H
12 #define CDCDEDXSCANMODULE_H
13 
14 #include <framework/core/Module.h>
15 #include <framework/datastore/StoreArray.h>
16 
17 namespace Belle2 {
23  class CDCDedxTrack;
24 
29  class CDCDedxScanModule : public Module {
30 
31  public:
32 
35 
37  virtual ~CDCDedxScanModule();
38 
40  virtual void initialize() override;
41 
44  virtual void event() override;
45 
47  virtual void terminate() override;
48 
49  private:
50 
51  // register outputs
54  };
56 } // Belle2 namespace
57 #endif
Belle2::CDCDedxScanModule::CDCDedxScanModule
CDCDedxScanModule()
Default constructor.
Definition: CDCDedxScanModule.cc:35
Belle2::CDCDedxScanModule::m_dedxArray
StoreArray< CDCDedxTrack > m_dedxArray
array of output dE/dx tracks
Definition: CDCDedxScanModule.h:60
Belle2::CDCDedxScanModule::~CDCDedxScanModule
virtual ~CDCDedxScanModule()
Destructor.
Definition: CDCDedxScanModule.cc:41
Belle2::CDCDedxScanModule::event
virtual void event() override
This method is called for each event.
Definition: CDCDedxScanModule.cc:58
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::CDCDedxScanModule::initialize
virtual void initialize() override
Initialize the module.
Definition: CDCDedxScanModule.cc:43
Belle2::CDCDedxScanModule::terminate
virtual void terminate() override
End of the event processing.
Definition: CDCDedxScanModule.cc:125