#include <SCT_SimHelper.h>
|
| static void | noise (InDetSimData &sdo, bool flag) |
| static void | belowThreshold (InDetSimData &sdo, bool flag) |
| static void | disabled (InDetSimData &sdo, bool flag) |
| static bool | isNoise (const InDetSimData &sdo) |
| static bool | isBelowThreshold (const InDetSimData &sdo) |
| static bool | isDisabled (const InDetSimData &sdo) |
| static bool | isRejected (const InDetSimData &sdo, bool rejectOutOfBunch, bool rejectUnconnected, bool rejectBelowThreshold, bool rejectDisabled, bool rejectLostInReadout, bool rejectNotTrack, bool rejectExtraNoise) |
Definition at line 27 of file SCT_SimHelper.h.
◆ anonymous enum
| Enumerator |
|---|
| NOISE_SET | |
| NOISE_CLEAR | |
| BT_SET | |
| BT_CLEAR | |
| DISABLED_SET | |
| DISABLED_CLEAR | |
Definition at line 49 of file SCT_SimHelper.h.
◆ belowThreshold()
| void SCT_SimHelper::belowThreshold |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 69 of file SCT_SimHelper.h.
70{
71 if (flag)
72 {
74 }
75 else
76 {
78 };
79}
◆ disabled()
| void SCT_SimHelper::disabled |
( |
InDetSimData & | sdo, |
|
|
bool | flag ) |
|
inlinestatic |
Definition at line 81 of file SCT_SimHelper.h.
82{
83 if (flag)
84 {
86 }
87 else
88 {
90 };
91}
◆ isBelowThreshold()
| bool SCT_SimHelper::isBelowThreshold |
( |
const InDetSimData & | sdo | ) |
|
|
inlinestatic |
◆ isDisabled()
◆ isNoise()
◆ isRejected()
| bool SCT_SimHelper::isRejected |
( |
const InDetSimData & | sdo, |
|
|
bool | rejectOutOfBunch, |
|
|
bool | rejectUnconnected, |
|
|
bool | rejectBelowThreshold, |
|
|
bool | rejectDisabled, |
|
|
bool | rejectLostInReadout, |
|
|
bool | rejectNotTrack, |
|
|
bool | rejectExtraNoise ) |
|
inlinestatic |
Definition at line 108 of file SCT_SimHelper.h.
116{
117
118
120 return true;
121 if (rejectDisabled &&
isDisabled(sdo))
return true;
122
123
125 return true;
126 return false;
127}
static bool isNoise(const InDetSimData &sdo)
static bool isBelowThreshold(const InDetSimData &sdo)
static bool isDisabled(const InDetSimData &sdo)
◆ noise()
Definition at line 57 of file SCT_SimHelper.h.
58{
59 if (flag)
60 {
62 }
63 else
64 {
66 };
67}
The documentation for this class was generated from the following file: