ATLAS Offline Software
FEI3SimTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3  */
4 
5 #include "FEI3SimTool.h"
8 #include "PixelConditionsData/ChargeCalibParameters.h" //for Thresholds
14 //
15 #include "CLHEP/Random/RandGaussZiggurat.h"
16 #include "CLHEP/Random/RandFlat.h"
17 
18 #include <cmath>
19 #include "PixelNoiseFunctions.h"
20 
21 using namespace PixelDigitization;
22 
23 
24 FEI3SimTool::FEI3SimTool(const std::string& type, const std::string& name, const IInterface* parent) :
26 }
27 
28 FEI3SimTool::~FEI3SimTool() = default;
29 
32  ATH_MSG_DEBUG("FEI3SimTool::initialize()");
34  return StatusCode::SUCCESS;
35 }
36 
38  ATH_MSG_DEBUG("FEI3SimTool::finalize()");
39  return StatusCode::SUCCESS;
40 }
41 
43  CLHEP::HepRandomEngine* rndmEngine) {
44  const InDetDD::PixelModuleDesign* p_design =
45  static_cast<const InDetDD::PixelModuleDesign*>(&(chargedDiodes.element())->design());
46 
48  return;
49  }
50 
51  const PixelID* pixelId = static_cast<const PixelID*>(chargedDiodes.element()->getIdHelper());
52  const IdentifierHash moduleHash = pixelId->wafer_hash(chargedDiodes.identify()); // wafer hash
53  Identifier moduleID = pixelId->wafer_id(chargedDiodes.element()->identify());
54 
55  int barrel_ec = pixelId->barrel_ec(chargedDiodes.element()->identify());
56  int layerIndex = pixelId->layer_disk(chargedDiodes.element()->identify());
57  int moduleIndex = pixelId->eta_module(chargedDiodes.element()->identify());
58 
59  if (std::abs(barrel_ec) != m_BarrelEC) {
60  return;
61  }
62 
63  const EventContext& ctx{Gaudi::Hive::currentContext()};
65  const PixelModuleData *moduleData = *moduleDataHandle;
67  const PixelChargeCalibCondData *calibData = *calibDataHandle;
68  const auto selectedTuneYear = moduleData->getFEI3TimingSimTune(barrel_ec, layerIndex);
69  // Add cross-talk
70  crossTalk(moduleData->getCrossTalk(barrel_ec, layerIndex), chargedDiodes);
71 
72  if (m_doNoise) {
73  // Add thermal noise
74  thermalNoise(m_thermalNoise, chargedDiodes, rndmEngine);
75 
76  // Add random noise
77  randomNoise(chargedDiodes, moduleData, m_numberOfBcid, calibData, rndmEngine, m_pixelReadout.get());
78  }
79 
80  // Add random diabled pixels
81  randomDisable(chargedDiodes, moduleData, rndmEngine); // FIXME How should we handle disabling pixels in Overlay jobs?
82  const InDetDD::SiDetectorElement * siDetEl = static_cast<const InDetDD::SiDetectorElement *>(chargedDiodes.element());
83  for (auto &[mapId,mapDiode]:chargedDiodes) {
84  // Merge ganged pixel
85  InDetDD::SiCellId cellID = chargedDiodes.element()->cellIdFromIdentifier(chargedDiodes.getId( mapId));
86  InDetDD::SiCellId gangedCell = siDetEl->gangedCell(cellID);
87  Identifier gangedID = chargedDiodes.element()->identifierFromCellId(gangedCell);
88  if (gangedCell.isValid()) {
89  SiChargedDiode* gangedChargeDiode = chargedDiodes.find(gangedID);
90  int phiGanged = pixelId->phi_index(gangedID);
91  int phiThis = pixelId->phi_index(chargedDiodes.getId( mapId));
92 
93  if (gangedChargeDiode) { // merge charges
94  bool maskGanged = ((phiGanged > 159) && (phiGanged < 168));
95  bool maskThis = ((phiThis > 159) && (phiThis < 168));
96  // mask the one ganged pixel that does not correspond to the readout electronics.
97  // not really sure this is needed
98  if (maskGanged && maskThis) {
99  ATH_MSG_ERROR("FEI3SimTool: both ganged pixels are in the mask out region -> BUG!");
100  }
101  if (maskGanged) {
102  mapDiode.add(gangedChargeDiode->totalCharge()); // merged org pixel
103  SiHelper::maskOut(*gangedChargeDiode, true);
104  } else {
105  gangedChargeDiode->add(mapDiode.totalCharge()); // merged org pixel
106  SiHelper::maskOut(mapDiode, true);
107  }
108  }
109  }
110  }
111 
112  for (SiChargedDiodeOrderedIterator i_chargedDiode = chargedDiodes.orderedBegin();
113  i_chargedDiode != chargedDiodes.orderedEnd(); ++i_chargedDiode) {
114  SiChargedDiode& diode = **i_chargedDiode;
115 
116  Identifier diodeID = chargedDiodes.getId(diode.diode());
117  double charge = diode.charge();
118 
119  unsigned int FE = m_pixelReadout->getFE(diodeID, moduleID);
120  InDetDD::PixelDiodeType type = m_pixelReadout->getDiodeType(diodeID);
121  if ((FE == InDetDD::invalidFrontEnd) or (type == InDetDD::PixelDiodeType::NONE)) continue;//invalid frontend
122 
123  // charge to ToT conversion
124  double tot = calibData->getToT(type, moduleHash, FE, charge);
125  const auto thresholds = calibData->getThresholds(type, moduleHash, FE);
126  // Apply analog threshold, timing simulation
127  double th0 = thresholds.value;
128  double ith0 = thresholds.inTimeValue;
129  double threshold = PixelDigitization::randomThreshold(thresholds, rndmEngine);
130  // This noise check is unaffected by digitizationFlags.doInDetNoise in
131  // 21.0 - see PixelCellDiscriminator.cxx in that branch
132 
133  if (charge > threshold) {
134  int bunchSim = 0;
135  if (diode.totalCharge().fromTrack()) {
136  const std::vector<float> & totCharges = moduleData->getTimingIndex(barrel_ec, layerIndex);
137  const std::vector<float> & probArray = moduleData->getTimingProbability(barrel_ec, layerIndex, moduleIndex);
138 
139  double prob = 0.0;
140  if (selectedTuneYear==2023) { prob = getProbability(totCharges, probArray, tot); }
141  if (selectedTuneYear==2022) { prob = getProbability(totCharges, probArray, tot); }
142  if (selectedTuneYear==2018) { prob = getProbability(totCharges, probArray, diode.totalCharge().charge()); }
143  if (selectedTuneYear==2015) { prob = getProbability(totCharges, probArray, diode.totalCharge().charge()); }
144 
145  double G4Time = getG4Time(diode.totalCharge());
146  double rnd = CLHEP::RandFlat::shoot(rndmEngine, 0.0, 1.0);
147 
148  double timeWalk = 0.0;
149  if (rnd<prob) { timeWalk = 25.0; }
150  bunchSim = static_cast<int>(std::floor((G4Time+m_timeOffset+timeWalk)/m_bunchSpace));
151 
152  if (selectedTuneYear == 2009) { // RUN1 procedure (based on 2007 cosmic data)
153  double intimethreshold = (ith0 / th0) * threshold;
154  bunchSim = relativeBunch2009(threshold, intimethreshold, diode.totalCharge(), rndmEngine);
155  }
156  }
157  else {
158  if (moduleData->getFEI3TimingSimTune(barrel_ec, layerIndex) > 0) {
159  bunchSim = CLHEP::RandFlat::shootInt(rndmEngine, m_numberOfBcid);
160  }
161  }
162 
163  if (bunchSim < 0 || bunchSim > m_numberOfBcid) {
164  SiHelper::belowThreshold(diode, true, true);
165  } else {
166  SiHelper::SetBunch(diode, bunchSim);
167  }
168  } else {
169  SiHelper::belowThreshold(diode, true, true);
170  }
171 
172  double totsig = calibData->getTotRes(moduleHash, FE, tot);
173  int nToT = static_cast<int>(CLHEP::RandGaussZiggurat::shoot(rndmEngine, tot, totsig));
174 
175  if (nToT < 1) {
176  nToT = 1;
177  }
178 
179  if (nToT <= moduleData->getToTThreshold(barrel_ec, layerIndex)) {
180  SiHelper::belowThreshold(diode, true, true);
181  }
182 
183  if (nToT >= moduleData->getFEI3Latency(barrel_ec, layerIndex)) {
184  SiHelper::belowThreshold(diode, true, true);
185  }
186 
187  // Filter events
188  if (SiHelper::isMaskOut(diode)) {
189  continue;
190  }
191  if (SiHelper::isDisabled(diode)) {
192  continue;
193  }
194 
195  if (!m_pixelConditionsTool->isActive(moduleHash, diodeID, ctx)) {
196  SiHelper::disabled(diode, true, true);
197  continue;
198  }
199 
200  int flag = diode.flag();
201  int bunch = (flag >> 8) & 0xff;
202 
203  InDetDD::SiReadoutCellId cellId = diode.getReadoutCell();
204  const Identifier id_readout = chargedDiodes.element()->identifierFromCellId(cellId);
205 
206  // Front-End simulation
207  if (bunch >= 0 && bunch < m_numberOfBcid) {
208  rdoCollection.push_back(new Pixel1RawData(id_readout, nToT, bunch, 0, bunch));
209  }
210 
211  // Duplication mechanism for FEI3 small hits :
212  if (m_duplication) {//is true for run1 only
213  static constexpr int smallHitThreshold{7}; //constant for both barrel and endcap, never changes
214  bool smallHitChk = false;
215  if (nToT <= smallHitThreshold) {
216  smallHitChk = true;
217  }
218  if (smallHitChk && bunch > 0 && bunch <= m_numberOfBcid) {
219  rdoCollection.push_back(new Pixel1RawData(id_readout, nToT, bunch - 1, 0, bunch - 1));
220  }
221  }
222  }
223  }
224 
225 int FEI3SimTool::relativeBunch2009(const double threshold, const double intimethreshold,
226  const SiTotalCharge& totalCharge,
227  CLHEP::HepRandomEngine* rndmEngine) const {
228  int BCID = 0;
229  double myTimeWalkEff = 0.;
230  double overdrive = intimethreshold - threshold;
231 
232  //my TimeWalk computation through PARAMETRIZATION (by Francesco De Lorenzi - Milan)
233  //double curvature = 7.6e7*overdrive-2.64e10;
234  //double divergence = -1.6*overdrive+942 ;
235  //double myTimeWalk = curvature/(pow((totalCharge.charge()-divergence),2.5));
236 
237  //my TimeWalk computation through PARAMETRIZATION from 2009 cosmic data (by I. Ibragimov and D. Miller)
238  double p1 = 20. / std::log(intimethreshold / overdrive);
239  double p0 = p1 * std::log(1. - threshold / 100000.);
240 
241  double myTimeWalk = -p0 - p1 * std::log(1. - threshold / totalCharge.charge());
242 
243  myTimeWalkEff = myTimeWalk + myTimeWalk * 0.2 * CLHEP::RandGaussZiggurat::shoot(rndmEngine);
244  const double limit = m_timeJitter * 0.5;
245  double randomJitter = CLHEP::RandFlat::shoot(rndmEngine, - limit, limit);
246 
247  //double G4Time = totalCharge.time();
248 
249  double G4Time = getG4Time(totalCharge);
250  double timing = m_timeOffset + myTimeWalkEff + randomJitter + G4Time;
251  BCID = static_cast<int>(std::floor(timing / m_bunchSpace));
252  //ATH_MSG_DEBUG ( CTW << " , " << myTimeWalkEff << " , " << G4Time << " , " << timing << " , " << BCID );
253 
254  return BCID;
255 }
256 
257 double FEI3SimTool::getProbability(const std::vector<float> &bounds, const std::vector<float> &probs, const double &val) const {
258  auto pCategory = std::upper_bound(bounds.begin(), bounds.end(),val);
259  if (pCategory == bounds.end()) return 0.0;
260  auto idx = std::distance(bounds.begin(), pCategory);
261  return probs[idx];
262 }
263 
264 
InDetDD::SiDetectorElement::gangedCell
SiCellId gangedCell(const SiCellId &cellId) const
If cell is ganged return the id of the other cell which shares the readout for this cell,...
PixelID.h
This is an Identifier helper class for the Pixel subdetector. This class is a factory for creating co...
FEI3SimTool::getProbability
double getProbability(const std::vector< float > &bounds, const std::vector< float > &probs, const double &val) const
Definition: FEI3SimTool.cxx:257
PixelChargeCalibCondData::getToT
float getToT(InDetDD::PixelDiodeType type, unsigned int moduleHash, unsigned int FE, float Q) const
Definition: PixelChargeCalibCondData.cxx:174
PixelID::phi_index
int phi_index(const Identifier &id) const
Definition: PixelID.h:658
PixelModuleData::getTimingIndex
std::vector< float > getTimingIndex(int barrel_ec, int layer) const
Definition: PixelModuleData.cxx:283
SiChargedDiode
Definition: SiChargedDiode.h:30
PixelNoiseFunctions.h
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
SiChargedDiodeCollection::element
const InDetDD::SolidStateDetectorElementBase * element() const
Definition: SiChargedDiodeCollection.h:218
InDetDD::PixelModuleDesign
Definition: PixelModuleDesign.h:48
SiHelper::isDisabled
static bool isDisabled(SiChargedDiode &chDiode)
Definition: SiHelper.h:179
PixelID::barrel_ec
int barrel_ec(const Identifier &id) const
Values of different levels (failure returns 0)
Definition: PixelID.h:619
PixelModuleData::getCrossTalk
double getCrossTalk(int barrel_ec, int layer) const
Definition: PixelModuleData.cxx:129
PixelChargeCalibCondData::getThresholds
PixelChargeCalib::Thresholds getThresholds(InDetDD::PixelDiodeType type, unsigned int moduleHash, unsigned int FE) const
Definition: PixelChargeCalibCondData.cxx:99
PixelModuleData
Definition: PixelModuleData.h:22
FrontEndSimTool::m_thermalNoise
double m_thermalNoise
Definition: FrontEndSimTool.h:54
InDetDD::invalidFrontEnd
constexpr uint32_t invalidFrontEnd
Definition: PixelReadoutDefinitions.h:44
SiChargedDiode::getReadoutCell
const InDetDD::SiReadoutCellId & getReadoutCell() const
Definition: SiChargedDiode.h:111
TRTCalib_cfilter.p1
p1
Definition: TRTCalib_cfilter.py:130
InDetDD::SiCellId::isValid
bool isValid() const
Test if its in a valid state.
Definition: SiCellId.h:136
InDetDD::PixelDiodeType
PixelDiodeType
Definition: PixelReadoutDefinitions.h:25
FEI3SimTool::FEI3SimTool
FEI3SimTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: FEI3SimTool.cxx:24
ChargeCalibParameters.h
Structs for holding charge calibration parameterisation and data.
InDetDD::PixelReadoutTechnology::FEI3
@ FEI3
SiTotalCharge::charge
double charge() const
Definition: SiTotalCharge.h:118
PixelChargeCalibCondData::getTotRes
float getTotRes(unsigned int moduleHash, unsigned int FE, float Q) const
Definition: PixelChargeCalibCondData.cxx:163
PixelDigitization
Definition: PixelDigitizationUtilities.cxx:16
covarianceTool.prob
prob
Definition: covarianceTool.py:678
SiHelper::maskOut
static void maskOut(SiChargedDiode &chDiode, bool flag)
Definition: SiHelper.h:67
SiHelper::disabled
static void disabled(SiChargedDiode &chDiode, bool flag, bool mask=false)
Definition: SiHelper.h:93
PixelID::wafer_id
Identifier wafer_id(int barrel_ec, int layer_disk, int phi_module, int eta_module) const
For a single crystal.
Definition: PixelID.h:364
InDetDD::SolidStateDetectorElementBase::getIdHelper
const AtlasDetectorID * getIdHelper() const
Returns the id helper (inline)
PixelDigitization::getG4Time
double getG4Time(const SiTotalCharge &totalCharge)
Definition: PixelNoiseFunctions.cxx:169
SiChargedDiode::add
void add(const SiCharge &charge)
Definition: SiChargedDiode.cxx:29
SiChargedDiode::charge
double charge() const
Definition: SiChargedDiode.h:115
PixelDigitization::randomThreshold
double randomThreshold(const PixelChargeCalib::Thresholds &t, CLHEP::HepRandomEngine *pEngine)
Definition: PixelDigitizationUtilities.cxx:105
SiTotalCharge::fromTrack
bool fromTrack() const
Definition: SiTotalCharge.cxx:49
PixelByteStreamErrors::BCID
@ BCID
Definition: PixelByteStreamErrors.h:13
FrontEndSimTool::initialize
virtual StatusCode initialize() override
Definition: FrontEndSimTool.cxx:13
SiChargedDiode::diode
const InDetDD::SiCellId & diode() const
Definition: SiChargedDiode.h:97
FrontEndSimTool::m_doNoise
Gaudi::Property< bool > m_doNoise
Definition: FrontEndSimTool.h:72
SiChargedDiode::totalCharge
const SiTotalCharge & totalCharge() const
Definition: SiChargedDiode.h:107
PixelID::wafer_hash
IdentifierHash wafer_hash(Identifier wafer_id) const
wafer hash from id
Definition: PixelID.h:387
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
trigDumpTimers.timing
def timing(hist)
Definition: trigDumpTimers.py:13
FrontEndSimTool::m_bunchSpace
static constexpr double m_bunchSpace
Definition: FrontEndSimTool.h:50
SiChargedDiodeCollection
Definition: SiChargedDiodeCollection.h:109
FrontEndSimTool::m_timeJitter
double m_timeJitter
Definition: FrontEndSimTool.h:53
PixelRDO_Collection.h
FrontEndSimTool
Definition: FrontEndSimTool.h:31
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
FEI3SimTool::finalize
virtual StatusCode finalize()
Definition: FEI3SimTool.cxx:37
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
PixelChargeCalibCondData
Definition: PixelChargeCalibCondData.h:24
SiHelper::belowThreshold
static void belowThreshold(SiChargedDiode &chDiode, bool flag, bool mask=false)
Definition: SiHelper.h:84
FrontEndSimTool::m_numberOfBcid
int m_numberOfBcid
Definition: FrontEndSimTool.h:51
master.flag
bool flag
Definition: master.py:29
Pixel1RawData.h
InDetRawDataCollection
Definition: InDetRawDataCollection.h:31
test_pyathena.parent
parent
Definition: test_pyathena.py:15
FrontEndSimTool::m_pixelReadout
ServiceHandle< InDetDD::IPixelReadoutManager > m_pixelReadout
Definition: FrontEndSimTool.h:59
Pixel1RawData
Definition: Pixel1RawData.h:23
SiHelper::SetBunch
static void SetBunch(SiChargedDiode &chDiode, int bunch, MsgStream *log=nullptr)
Definition: SiHelper.h:129
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
PixelChargeCalib::Thresholds::value
int value
Definition: ChargeCalibParameters.h:74
FEI3SimTool::m_moduleDataKey
SG::ReadCondHandleKey< PixelModuleData > m_moduleDataKey
Definition: FEI3SimTool.h:36
FrontEndSimTool::m_BarrelEC
Gaudi::Property< int > m_BarrelEC
Definition: FrontEndSimTool.h:68
PixelModuleData::getFEI3Latency
int getFEI3Latency(int barrel_ec, int layer) const
Definition: PixelModuleData.cxx:238
SiChargedDiode::flag
int flag() const
Definition: SiChargedDiode.h:102
LB_AnalMapSplitter.tot
tot
Definition: LB_AnalMapSplitter.py:46
PixelID::layer_disk
int layer_disk(const Identifier &id) const
Definition: PixelID.h:626
PixelID::eta_module
int eta_module(const Identifier &id) const
Definition: PixelID.h:651
SiHelper::isMaskOut
static bool isMaskOut(SiChargedDiode &chDiode)
Definition: SiHelper.h:171
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
threshold
Definition: chainparser.cxx:74
charge
double charge(const T &p)
Definition: AtlasPID.h:538
InDetDD::SiDetectorElement
Definition: SiDetectorElement.h:109
DataVector::push_back
value_type push_back(value_type pElem)
Add an element to the end of the collection.
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
InDetDD::PixelModuleDesign::getReadoutTechnology
PixelReadoutTechnology getReadoutTechnology() const
Definition: PixelModuleDesign.h:368
FEI3SimTool::initialize
virtual StatusCode initialize()
Definition: FEI3SimTool.cxx:30
PixelDigitization::crossTalk
void crossTalk(double crossTalk, SiChargedDiodeCollection &chargedDiodes)
Definition: PixelNoiseFunctions.cxx:25
SiDetectorElement.h
FEI3SimTool::relativeBunch2009
int relativeBunch2009(const double threshold, const double intimethreshold, const SiTotalCharge &totalCharge, CLHEP::HepRandomEngine *rndmEngine) const
Definition: FEI3SimTool.cxx:225
InDetDD::SiCellId
Definition: SiCellId.h:29
PixelModuleData::getTimingProbability
std::vector< float > getTimingProbability(int barrel_ec, int layer, int eta) const
Definition: PixelModuleData.cxx:297
SiTotalCharge
Definition: SiTotalCharge.h:24
FEI3SimTool::~FEI3SimTool
virtual ~FEI3SimTool()
PixelModuleData::getFEI3TimingSimTune
int getFEI3TimingSimTune(int barrel_ec, int layer) const
Definition: PixelModuleData.cxx:254
PixelModuleDesign.h
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
InDetDD::PixelDiodeType::NONE
@ NONE
FrontEndSimTool::m_timeOffset
double m_timeOffset
Definition: FrontEndSimTool.h:52
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
python.CaloCondTools.log
log
Definition: CaloCondTools.py:20
LArNewCalib_DelayDump_OFC_Cali.idx
idx
Definition: LArNewCalib_DelayDump_OFC_Cali.py:69
PixelDigitizationUtilities.h
SiChargedDiodeOrderedIterator
SiChargedDiodeOrderedSet::iterator SiChargedDiodeOrderedIterator
Definition: SiChargedDiodeCollection.h:107
FrontEndSimTool::m_chargeDataKey
SG::ReadCondHandleKey< PixelChargeCalibCondData > m_chargeDataKey
Definition: FrontEndSimTool.h:64
InDetDD::SiReadoutCellId
Definition: SiReadoutCellId.h:42
PixelDigitization::randomNoise
void randomNoise(SiChargedDiodeCollection &chargedDiodes, const PixelModuleData *moduleData, int nBcid, const PixelChargeCalibCondData *chargeCalibData, CLHEP::HepRandomEngine *rndmEngine, InDetDD::IPixelReadoutManager *pixelReadout)
Definition: PixelNoiseFunctions.cxx:73
PixelID
Definition: PixelID.h:67
Amg::distance
float distance(const Amg::Vector3D &p1, const Amg::Vector3D &p2)
calculates the distance between two point in 3D space
Definition: GeoPrimitivesHelpers.h:54
updateCoolNtuple.limit
int limit
Definition: updateCoolNtuple.py:45
FrontEndSimTool::m_pixelConditionsTool
ToolHandle< IInDetConditionsTool > m_pixelConditionsTool
Definition: FrontEndSimTool.h:55
FEI3SimTool::process
virtual void process(SiChargedDiodeCollection &chargedDiodes, PixelRDO_Collection &rdoCollection, CLHEP::HepRandomEngine *rndmEngine)
Definition: FEI3SimTool.cxx:42
FEI3SimTool.h
dumpTgcDigiThreshold.threshold
list threshold
Definition: dumpTgcDigiThreshold.py:34
PixelDigitization::randomDisable
void randomDisable(SiChargedDiodeCollection &chargedDiodes, const PixelModuleData *moduleData, CLHEP::HepRandomEngine *rndmEngine)
Definition: PixelNoiseFunctions.cxx:147
InDetDD::SolidStateDetectorElementBase::identify
virtual Identifier identify() const override final
identifier of this detector element (inline)
PixelDigitization::thermalNoise
void thermalNoise(double thermalNoise, SiChargedDiodeCollection &chargedDiodes, CLHEP::HepRandomEngine *rndmEngine)
Definition: PixelNoiseFunctions.cxx:61
TRTCalib_cfilter.p0
p0
Definition: TRTCalib_cfilter.py:129
SiChargedDiodeCollection.h
SiChargedDiodeCollection::identify
virtual Identifier identify() const override final
Definition: SiChargedDiodeCollection.h:230
FEI3SimTool::m_duplication
Gaudi::Property< bool > m_duplication
Definition: FEI3SimTool.h:41
Identifier
Definition: IdentifierFieldParser.cxx:14