Belle II Software development
PXDPostErrorCheckerModule.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 <framework/core/Module.h>
12#include <framework/datastore/StoreObjPtr.h>
13#include <framework/datastore/StoreArray.h>
14#include <pxd/dataobjects/PXDErrorFlags.h>
15
16namespace Belle2 {
21 class PXDDAQStatus;
22 class PXDRawHit;
23 class PXDRawROIs;
24 class PXDRawAdc;
25
26 namespace PXD {
39
40 public:
41
44
45 private:
47 void initialize() override final;
48
50 void event() override final;
51
52 private:
54 std::string m_PXDRawHitsName;
55 std::string m_PXDRawAdcsName;
56 std::string m_PXDRawROIsName;
57
61 PXDError::PXDErrorFlags m_criticalErrorMask;
63
68
77 };//end class declaration
78
79
80 } //end PXD namespace;
82} // end namespace Belle2
Module()
Constructor.
Definition Module.cc:30
The PXD DAQ Status class.
The PXD Raw Adc class This class stores information about Raw Adc for Pedestals.
Definition PXDRawAdc.h:31
The PXD Raw Hit class This class stores information about PXD Pixel hits and makes them available in ...
Definition PXDRawHit.h:24
The PXD Raw ROIs class This class stores information about the ROIs processed by ONSEN and makes them...
Definition PXDRawROIs.h:25
std::string m_PXDRawHitsName
The name of the StoreArray of PXDRawHits to be modified.
void initialize() override final
Initialize.
StoreObjPtr< PXDDAQStatus > m_storeDAQEvtStats
Input array for DAQ Status.
std::string m_PXDDAQEvtStatsName
The name of the StoreObjPtr of PXDDAQStatus to be read and modified.
StoreArray< PXDRawROIs > m_storeROIs
In/Output array for Raw ROIs.
bool m_ignoreDHPFrame
Flag: Ignore different dhp frame between DHEs.
PXDPostErrorCheckerModule()
Constructor defining the parameters.
StoreArray< PXDRawAdc > m_storeRawAdc
In/Output array for Raw Adcs.
int m_criticalErrorMaskParam
Module parameter for setting the critical error mask.
bool m_ignoreTriggerGate
TODO another mask for DHE Level if we want to clean ONLY modules?
std::string m_PXDRawAdcsName
The name of the StoreArray of PXDRawAdcs to be modified.
PXDError::PXDErrorFlags m_criticalErrorMask
Critical error mask which defines when data should be trashed, whole event only!
StoreArray< PXDRawHit > m_storeRawHits
In/Output array for Raw Hits.
std::string m_PXDRawROIsName
The name of the StoreArray of PXDRawROIs to be modified.
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
Namespace to encapsulate code needed for simulation and reconstrucion of the PXD.
Abstract base class for different kinds of events.