Belle II Software  release-05-02-19
PXDRawHitFilterModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2013 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Eugenio Paoloni, Giulia Casarosa *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 
13 #include <framework/core/Module.h>
14 #include <framework/datastore/SelectSubset.h>
15 #include <pxd/dataobjects/PXDRawHit.h>
16 
17 namespace Belle2 {
31  class PXDRawHitFilterModule : public Module {
32 
33  public:
34 
39 
40  private:
41 
43  void initialize() override final;
44 
45 
47  void event() override final;
48 
49 
50  bool m_CreateOutside;
51  std::string m_PXDRawHitsName;
52  std::string m_PXDRawHitsInsideROIName;
53  std::string m_PXDRawHitsOutsideROIName;
54  std::string m_ROIidsName;
59  };
61 }
Belle2::PXDRawHitFilterModule::m_selectorIN
SelectSubset< PXDRawHit > m_selectorIN
selector of the subset of PXDRawHits contained in the ROIs
Definition: PXDRawHitFilterModule.h:64
Belle2::PXDRawHitFilterModule::m_PXDRawHitsInsideROIName
std::string m_PXDRawHitsInsideROIName
The name of the StoreArray of Filtered PXDRawHits.
Definition: PXDRawHitFilterModule.h:60
Belle2::SelectSubset
Class to create a subset of a given StoreArray together with the relations with other StoreArrays.
Definition: SelectSubset.h:203
Belle2::PXDRawHitFilterModule::PXDRawHitFilterModule
PXDRawHitFilterModule()
Constructor: Sets the description, the properties and the parameters of the module.
Definition: PXDRawHitFilterModule.cc:27
Belle2::PXDRawHitFilterModule::m_selectorOUT
SelectSubset< PXDRawHit > m_selectorOUT
selector of the subset of PXDRawHits NOT contained in the ROIs
Definition: PXDRawHitFilterModule.h:65
Belle2::PXDRawHitFilterModule::m_PXDRawHitsOutsideROIName
std::string m_PXDRawHitsOutsideROIName
The name of the StoreArray of Filtered PXDRawHits.
Definition: PXDRawHitFilterModule.h:61
Belle2::PXDRawHit
The PXD Raw Hit class This class stores information about PXD Pixel hits and makes them available in ...
Definition: PXDRawHit.h:36
Belle2::PXDRawHitFilterModule::initialize
void initialize() override final
Initialize the Module.
Definition: PXDRawHitFilterModule.cc:44
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXDRawHitFilterModule::m_CreateOutside
bool m_CreateOutside
if set, create list of outside pixels, too
Definition: PXDRawHitFilterModule.h:58
Belle2::PXDRawHitFilterModule::m_ROIidsName
std::string m_ROIidsName
The name of the StoreArray of ROIs.
Definition: PXDRawHitFilterModule.h:62
Belle2::PXDRawHitFilterModule::m_PXDRawHitsName
std::string m_PXDRawHitsName
The name of the StoreArray of PXDRawHits to be filtered.
Definition: PXDRawHitFilterModule.h:59
Belle2::PXDRawHitFilterModule::event
void event() override final
This method is the core of the module.
Definition: PXDRawHitFilterModule.cc:69