#include <PixelSimHelper.h>
|
| static void | noise (InDetSimData &sdo, bool flag) |
| static void | belowThreshold (InDetSimData &sdo, bool flag) |
| static void | disabled (InDetSimData &sdo, bool flag) |
| static void | badToT (InDetSimData &sdo, bool flag) |
| static bool | isNoise (const InDetSimData &sdo) |
| static bool | isBelowThreshold (const InDetSimData &sdo) |
| static bool | isDisabled (const InDetSimData &sdo) |
| static bool | hasBadTOT (const InDetSimData &sdo) |
| static bool | isRejected (const InDetSimData &sdo, bool rejectOutOfBunch, bool rejectUnconnected, bool rejectBelowThreshold, bool rejectDisabled, bool rejectLostInReadout, bool rejectNotTrack, bool rejectExtraNoise, bool rejectBadTOT) |
Definition at line 27 of file PixelSimHelper.h.
◆ anonymous enum
| Enumerator |
|---|
| NOISE_SET | |
| NOISE_CLEAR | |
| BT_SET | |
| BT_CLEAR | |
| DISABLED_SET | |
| DISABLED_CLEAR | |
| BADTOT_SET | |
| BADTOT_CLEAR | |
Definition at line 51 of file PixelSimHelper.h.
◆ badToT()
| void PixelSimHelper::badToT |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 96 of file PixelSimHelper.h.
97{
98
99 if (flag)
100 {
102 }
103 else
104 {
106 };
107}
◆ belowThreshold()
| void PixelSimHelper::belowThreshold |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 72 of file PixelSimHelper.h.
73{
74 if (flag)
75 {
77 }
78 else
79 {
81 };
82}
◆ disabled()
| void PixelSimHelper::disabled |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 84 of file PixelSimHelper.h.
85{
86 if (flag)
87 {
89 }
90 else
91 {
93 };
94}
◆ hasBadTOT()
◆ isBelowThreshold()
| bool PixelSimHelper::isBelowThreshold |
( |
const InDetSimData & | sdo | ) |
|
|
inlinestatic |
◆ isDisabled()
◆ isNoise()
◆ isRejected()
| bool PixelSimHelper::isRejected |
( |
const InDetSimData & | sdo, |
|
|
bool | rejectOutOfBunch, |
|
|
bool | rejectUnconnected, |
|
|
bool | rejectBelowThreshold, |
|
|
bool | rejectDisabled, |
|
|
bool | rejectLostInReadout, |
|
|
bool | rejectNotTrack, |
|
|
bool | rejectExtraNoise, |
|
|
bool | rejectBadTOT ) |
|
inlinestatic |
Definition at line 129 of file PixelSimHelper.h.
138{
139
140
142 return true;
143 if (rejectDisabled &&
isDisabled(sdo))
return true;
144
145 if (rejectBadTOT &&
hasBadTOT(sdo))
return true;
146
148 return true;
149 return false;
150}
static bool isBelowThreshold(const InDetSimData &sdo)
static bool hasBadTOT(const InDetSimData &sdo)
static bool isNoise(const InDetSimData &sdo)
static bool isDisabled(const InDetSimData &sdo)
◆ noise()
| void PixelSimHelper::noise |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 60 of file PixelSimHelper.h.
61{
62 if (flag)
63 {
65 }
66 else
67 {
69 };
70}
The documentation for this class was generated from the following file: