Belle II Software  release-05-02-19
PXDBadSensorTagModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Bjoern Spruck *
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 <pxd/dataobjects/PXDRawHit.h>
15 #include <vxd/dataobjects/VxdID.h>
16 #include <framework/datastore/StoreArray.h>
17 #include <framework/datastore/StoreObjPtr.h>
18 #include <pxd/dataobjects/PXDDAQStatus.h>
19 
20 namespace Belle2 {
26  namespace PXD {
27 
38  class PXDBadSensorTagModule : public Module {
39 
40  public:
43 
44  private:
45 
47  void initialize() override final;
48  void event() override final;
49 
50  std::string m_PXDDAQEvtStatsName;
51  std::string m_PXDRawHitsName;
53  std::vector <std::vector <int>> m_nrHitsCut;
54 
56  StoreArray<PXDRawHit> m_storeRawHits;
59 
61  std::map <VxdID, int> m_cut;
63  int m_0cut;
64 
65  };//end class declaration
66 
67  } //end PXD namespace;
69 } // end namespace Belle2
Belle2::PXD::PXDBadSensorTagModule::m_PXDRawHitsName
std::string m_PXDRawHitsName
The name of the StoreArray of PXDRawHits to be generated.
Definition: PXDBadSensorTagModule.h:59
Belle2::VxdID
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:43
Belle2::PXD::PXDBadSensorTagModule::initialize
void initialize() override final
Initialize the module.
Belle2::PXD::PXDBadSensorTagModule::m_nrHitsCut
std::vector< std::vector< int > > m_nrHitsCut
Cuts parameter fore each module.
Definition: PXDBadSensorTagModule.h:61
Belle2::PXD::PXDBadSensorTagModule::m_storeRawHits
StoreArray< PXDRawHit > m_storeRawHits
Input array for PXD Raw Hits.
Definition: PXDBadSensorTagModule.h:64
Belle2::PXD::PXDBadSensorTagModule::m_cut
std::map< VxdID, int > m_cut
Cuts fore each module.
Definition: PXDBadSensorTagModule.h:69
Belle2::PXD::PXDBadSensorTagModule::event
void event() override final
This method is the core of the module.
Belle2::PXD::PXDBadSensorTagModule::m_PXDDAQEvtStatsName
std::string m_PXDDAQEvtStatsName
The name of the StoreObjPtr of PXDDAQStatus to be generated.
Definition: PXDBadSensorTagModule.h:58
Belle2::PXD::PXDBadSensorTagModule::PXDBadSensorTagModule
PXDBadSensorTagModule()
Constructor.
Definition: PXDBadSensorTagModule.cc:24
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXD::PXDBadSensorTagModule::m_0cut
int m_0cut
Minimum charge for a digit to carry.
Definition: PXDBadSensorTagModule.h:71
Belle2::StoreObjPtr
Type-safe access to single objects in the data store.
Definition: ParticleList.h:33
Belle2::PXDDAQStatus
The PXD DAQ Status class.
Definition: PXDDAQStatus.h:45
Belle2::PXD::PXDBadSensorTagModule::m_storeDAQEvtStats
StoreObjPtr< PXDDAQStatus > m_storeDAQEvtStats
Output array for DAQ Status.
Definition: PXDBadSensorTagModule.h:66