CMS 3D CMS Logo

Phase2TrackerDigitizer.cc
Go to the documentation of this file.
1 //
2 //
3 // Package: Phase2TrackerDigitizer
4 // Class: Phase2TrackerDigitizer
5 //
6 // *\class SiPhase2TrackerDigitizer Phase2TrackerDigitizer.cc SimTracker/SiPhase2Digitizer/src/Phase2TrackerDigitizer.cc
7 //
8 // Author: Suchandra Dutta, Suvankar Roy Chowdhury, Subir Sarkar
9 // Date: January 29, 2016
10 // Description: <one line class summary>
11 //
12 // Implementation:
13 // <Notes on implementation>
14 //
15 #include <memory>
16 #include <set>
17 #include <iostream>
18 
27 
34 
38 
45 
48 
52 
55 
57 
58 // Random Number
61 
62 namespace cms {
63 
65  edm::ProducesCollector producesCollector,
67  : first_(true),
68  hitsProducer_(iConfig.getParameter<std::string>("hitsProducer")),
69  trackerContainers_(iConfig.getParameter<std::vector<std::string> >("ROUList")),
70  geometryType_(iConfig.getParameter<std::string>("GeometryType")),
71  isOuterTrackerReadoutAnalog_(iConfig.getParameter<bool>("isOTreadoutAnalog")),
72  premixStage1_(iConfig.getParameter<bool>("premixStage1")),
73  makeDigiSimLinks_(
74  iConfig.getParameter<edm::ParameterSet>("AlgorithmCommon").getUntrackedParameter<bool>("makeDigiSimLinks")) {
75  const std::string alias1("simSiPixelDigis");
76  producesCollector.produces<edm::DetSetVector<PixelDigi> >("Pixel").setBranchAlias(alias1);
78  producesCollector.produces<edm::DetSetVector<PixelDigiSimLink> >("Pixel").setBranchAlias(alias1);
79 
80  if (!iConfig.getParameter<bool>("isOTreadoutAnalog")) {
81  const std::string alias2("simSiTrackerDigis");
82  if (premixStage1_) {
83  // Premixing exploits the ADC field of PixelDigi to store the collected charge
84  // But we still want everything else to be treated like for Phase2TrackerDigi
85  producesCollector.produces<edm::DetSetVector<PixelDigi> >("Tracker").setBranchAlias(alias2);
86  } else {
87  producesCollector.produces<edm::DetSetVector<Phase2TrackerDigi> >("Tracker").setBranchAlias(alias2);
88  }
90  producesCollector.produces<edm::DetSetVector<PixelDigiSimLink> >("Tracker").setBranchAlias(alias2);
91  }
92  // creating algorithm objects and pushing them into the map
93  algomap_[AlgorithmType::InnerPixel] = std::make_unique<PixelDigitizerAlgorithm>(iConfig);
94  algomap_[AlgorithmType::InnerPixel3D] = std::make_unique<Pixel3DDigitizerAlgorithm>(iConfig);
95  algomap_[AlgorithmType::PixelinPS] = std::make_unique<PSPDigitizerAlgorithm>(iConfig);
96  algomap_[AlgorithmType::StripinPS] = std::make_unique<PSSDigitizerAlgorithm>(iConfig);
97  algomap_[AlgorithmType::TwoStrip] = std::make_unique<SSDigitizerAlgorithm>(iConfig);
98  }
99 
103 
104  if (theTkDigiGeomWatcher_.check(iSetup)) {
106 
107  // reset cache
109  detectorUnits_.clear();
110  for (auto const& det_u : pDD_->detUnits()) {
111  uint32_t rawId = det_u->geographicalId().rawId();
112  if (DetId(rawId).det() == DetId::Detector::Tracker) {
113  const Phase2TrackerGeomDetUnit* pixdet = dynamic_cast<const Phase2TrackerGeomDetUnit*>(det_u);
114  assert(pixdet);
115  detectorUnits_.emplace(rawId, pixdet);
116  }
117  }
118  }
119  }
120 
122  void Phase2TrackerDigitizer::accumulatePixelHits(edm::Handle<std::vector<PSimHit> > hSimHits,
123  size_t globalSimHitIndex,
124  const uint32_t tofBin) {
125  if (hSimHits.isValid()) {
126  std::set<uint32_t> detIds;
127  auto const& simHits = *(hSimHits.product());
128  for (auto it = std::begin(simHits), itEnd = std::end(simHits); it != itEnd; ++it, ++globalSimHitIndex) {
129  uint32_t detId_raw = (*it).detUnitId();
130  auto fiter = detectorUnits_.find(detId_raw);
131  if (fiter == detectorUnits_.end())
132  continue;
133 
134  if (detIds.insert(detId_raw).second) {
135  // The insert succeeded, so this detector element has not yet been processed.
136  const Phase2TrackerGeomDetUnit* phase2det = fiter->second;
137 
138  // access to magnetic field in global coordinates
139  GlobalVector bfield = pSetup_->inTesla(phase2det->surface().position());
140  LogDebug("PixelDigitizer") << "B-field(T) at " << phase2det->surface().position()
141  << " (cm): " << pSetup_->inTesla(phase2det->surface().position());
142 
143  auto kiter = algomap_.find(getAlgoType(detId_raw));
144  if (kiter != algomap_.end())
145  kiter->second->accumulateSimHits(it, itEnd, globalSimHitIndex, tofBin, phase2det, bfield);
146  else
147  edm::LogInfo("Phase2TrackerDigitizer") << "Unsupported algorithm: ";
148  }
149  }
150  }
151  }
152 
155  if (!rng.isAvailable()) {
156  throw cms::Exception("Configuration")
157  << "Phase2TrackerDigitizer requires the RandomNumberGeneratorService\n"
158  "which is not present in the configuration file. You must add the service\n"
159  "in the configuration file or remove the modules that require it.";
160  }
161 
162  // Must initialize all the algorithms
163  for (auto const& el : algomap_) {
164  if (first_)
165  el.second->init(iSetup);
166 
167  el.second->initializeEvent(rng->getEngine(e.streamID()));
168  }
169  first_ = false;
170  // Make sure that the first crossing processed starts indexing the sim hits from zero.
171  // This variable is used so that the sim hits from all crossing frames have sequential
172  // indices used to create the digi-sim link (if configured to do so) rather than starting
173  // from zero for each crossing.
175  }
177  accumulate_local<edm::Event>(iEvent, iSetup);
178  }
179 
181  edm::EventSetup const& iSetup,
182  edm::StreamID const&) {
183  accumulate_local<PileUpEventPrincipal>(iEvent, iSetup);
184  }
185 
186  template <class T>
188  for (auto const& v : trackerContainers_) {
191  iEvent.getByLabel(tag, simHits);
192 
193  //edm::EDGetTokenT< std::vector<PSimHit> > simHitToken_(consumes< std::vector<PSimHit>(tag));
194  //iEvent.getByToken(simHitToken_, simHits);
195 
196  uint32_t tofBin = PixelDigiSimLink::LowTof;
197  if (v.find(std::string("HighTof")) != std::string::npos)
198  tofBin = PixelDigiSimLink::HighTof;
200  // Now that the hits have been processed, I'll add the amount of hits in this crossing on to
201  // the global counter. Next time accumulateStripHits() is called it will count the sim hits
202  // as though they were on the end of this collection.
203  // Note that this is only used for creating digi-sim links (if configured to do so).
204  if (simHits.isValid())
205  crossingSimHitIndexOffset_[tag.encode()] += simHits->size();
206  }
207  }
208 
209  // For premixing
210  void Phase2TrackerDigitizer::loadAccumulator(const std::map<uint32_t, std::map<int, float> >& accumulator) {
211  for (const auto& detMap : accumulator) {
212  AlgorithmType algoType = getAlgoType(detMap.first);
213  auto& algo = *(algomap_.at(algoType));
214  algo.loadAccumulator(detMap.first, detMap.second);
215  }
216  }
217 
219  //Decide if we want analog readout for Outer Tracker.
222  if (premixStage1_)
223  addOuterTrackerCollection<PixelDigi>(iEvent, iSetup);
224  else
225  addOuterTrackerCollection<Phase2TrackerDigi>(iEvent, iSetup);
226  }
227  }
229  // get mType either from the geometry or from our cache (faster)
231  auto itr = moduleTypeCache_.find(detId_raw);
232  if (itr != moduleTypeCache_.end()) {
233  mType = itr->second;
234  } else {
235  mType = pDD_->getDetectorType(DetId(detId_raw));
236  moduleTypeCache_.emplace(detId_raw, mType);
237  }
238 
240  switch (mType) {
242  algotype = AlgorithmType::InnerPixel;
243  break;
245  algotype = AlgorithmType::InnerPixel;
246  break;
248  algotype = AlgorithmType::InnerPixel;
249  break;
251  algotype = AlgorithmType::InnerPixel;
252  break;
254  algotype = AlgorithmType::InnerPixel3D;
255  break;
257  algotype = AlgorithmType::InnerPixel3D;
258  break;
260  algotype = AlgorithmType::PixelinPS;
261  break;
263  algotype = AlgorithmType::StripinPS;
264  break;
266  algotype = AlgorithmType::TwoStrip;
267  break;
268  default:
269  edm::LogError("Phase2TrackerDigitizer") << "ERROR - Wrong Detector Type, No Algorithm available ";
270  }
271 
272  return algotype;
273  }
275  const edm::EventSetup& iSetup,
276  const bool ot_analog) {
277  const TrackerTopology* tTopo = tTopoHand_.product();
278 
279  std::vector<edm::DetSet<PixelDigi> > digiVector;
280  std::vector<edm::DetSet<PixelDigiSimLink> > digiLinkVector;
281  for (auto const& det_u : pDD_->detUnits()) {
282  uint32_t rawId = det_u->geographicalId().rawId();
283  auto algotype = getAlgoType(rawId);
284  auto fiter = algomap_.find(algotype);
285  if (fiter == algomap_.end())
286  continue;
287 
288  // Decide if we want analog readout for Outer Tracker.
289  if (!ot_analog && (algotype != AlgorithmType::InnerPixel && algotype != AlgorithmType::InnerPixel3D)) {
290  continue;
291  }
292  std::map<int, DigitizerUtility::DigiSimInfo> digi_map;
293  fiter->second->digitize(dynamic_cast<const Phase2TrackerGeomDetUnit*>(det_u), digi_map, tTopo);
294 
295  edm::DetSet<PixelDigi> collector(rawId);
296  edm::DetSet<PixelDigiSimLink> linkcollector(rawId);
297  for (auto const& digi_p : digi_map) {
298  DigitizerUtility::DigiSimInfo info = digi_p.second;
299  const auto& ip = PixelDigi::channelToPixel(digi_p.first);
300  collector.data.emplace_back(ip.first, ip.second, info.sig_tot);
301  for (auto const& sim_p : info.simInfoList) {
302  linkcollector.data.emplace_back(digi_p.first,
303  sim_p.second->trackId(),
304  sim_p.second->hitIndex(),
305  sim_p.second->tofBin(),
306  sim_p.second->eventId(),
307  sim_p.first);
308  }
309  }
310  if (!collector.data.empty())
311  digiVector.push_back(std::move(collector));
312  if (!linkcollector.data.empty())
313  digiLinkVector.push_back(std::move(linkcollector));
314  }
315 
316  // Step C: create collection with the cache vector of DetSet
317  auto output = std::make_unique<edm::DetSetVector<PixelDigi> >(digiVector);
318  auto outputlink = std::make_unique<edm::DetSetVector<PixelDigiSimLink> >(digiLinkVector);
319 
320  // Step D: write output to file
321  iEvent.put(std::move(output), "Pixel");
322  if (makeDigiSimLinks_)
323  iEvent.put(std::move(outputlink), "Pixel");
324  }
325 } // namespace cms
326 namespace {
327  void addToCollector(edm::DetSet<PixelDigi>& collector, const int channel, const DigitizerUtility::DigiSimInfo& info) {
328  // For premixing stage1 the channel must be decoded with PixelDigi
329  // so that when the row and column are inserted to PixelDigi the
330  // coded channel stays the same (so that it can then be decoded
331  // with Phase2TrackerDigi in stage2).
332  const auto& ip = PixelDigi::channelToPixel(channel);
333  collector.data.emplace_back(ip.first, ip.second, info.sig_tot);
334  }
335  void addToCollector(edm::DetSet<Phase2TrackerDigi>& collector,
336  const int channel,
338  const auto& ip = Phase2TrackerDigi::channelToPixel(channel);
339  collector.data.emplace_back(ip.first, ip.second, info.ot_bit);
340  }
341 } // namespace
342 namespace cms {
343  template <typename DigiType>
345  const TrackerTopology* tTopo = tTopoHand_.product();
346 
347  std::vector<edm::DetSet<DigiType> > digiVector;
348  std::vector<edm::DetSet<PixelDigiSimLink> > digiLinkVector;
349  for (auto const& det_u : pDD_->detUnits()) {
350  uint32_t rawId = det_u->geographicalId().rawId();
351  auto algotype = getAlgoType(rawId);
352 
353  auto fiter = algomap_.find(algotype);
354  if (fiter == algomap_.end() || algotype == AlgorithmType::InnerPixel || algotype == AlgorithmType::InnerPixel3D) {
355  continue;
356  }
357  std::map<int, DigitizerUtility::DigiSimInfo> digi_map;
358  fiter->second->digitize(dynamic_cast<const Phase2TrackerGeomDetUnit*>(det_u), digi_map, tTopo);
359 
360  edm::DetSet<DigiType> collector(rawId);
361  edm::DetSet<PixelDigiSimLink> linkcollector(rawId);
362  for (auto const& digi_p : digi_map) {
363  DigitizerUtility::DigiSimInfo info = digi_p.second;
364  addToCollector(collector, digi_p.first, info);
365  for (auto const& sim_p : info.simInfoList) {
366  linkcollector.data.emplace_back(digi_p.first,
367  sim_p.second->trackId(),
368  sim_p.second->hitIndex(),
369  sim_p.second->tofBin(),
370  sim_p.second->eventId(),
371  sim_p.first);
372  }
373  }
374 
375  if (!collector.data.empty())
376  digiVector.push_back(std::move(collector));
377  if (!linkcollector.data.empty())
378  digiLinkVector.push_back(std::move(linkcollector));
379  }
380 
381  // Step C: create collection with the cache vector of DetSet
382  auto output = std::make_unique<edm::DetSetVector<DigiType> >(digiVector);
383  auto outputlink = std::make_unique<edm::DetSetVector<PixelDigiSimLink> >(digiLinkVector);
384 
385  // Step D: write output to file
386  iEvent.put(std::move(output), "Tracker");
387  if (makeDigiSimLinks_)
388  iEvent.put(std::move(outputlink), "Tracker");
389  }
390 } // namespace cms
391 
394 
Vector3DBase
Definition: Vector3DBase.h:8
edm::ESWatcher::check
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:52
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
edm::DetSetVector
Definition: DetSetVector.h:61
edm::StreamID
Definition: StreamID.h:30
PixelDigiCollection.h
cms::Phase2TrackerDigitizer::AlgorithmType::StripinPS
cms::Phase2TrackerDigitizer::first_
bool first_
Definition: Phase2TrackerDigitizer.h:85
TrackerGeometry::ModuleType::Ph1PXF
edm::RandomNumberGenerator::getEngine
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
Handle.h
cms::Phase2TrackerDigitizer::accumulatePixelHits
void accumulatePixelHits(edm::Handle< std::vector< PSimHit > >, size_t globalSimHitIndex, const uint32_t tofBin)
Definition: Phase2TrackerDigitizer.cc:122
MagneticField::inTesla
virtual GlobalVector inTesla(const GlobalPoint &gp) const =0
Field value ad specified global point, in Tesla.
TrackerGeometry::ModuleType::Ph2PXF
electrons_cff.bool
bool
Definition: electrons_cff.py:372
cms::Phase2TrackerDigitizer::getAlgoType
AlgorithmType getAlgoType(uint32_t idet)
Definition: Phase2TrackerDigitizer.cc:228
MessageLogger.h
PSSDigitizerAlgorithm.h
EDProducer.h
TrackerGeometry::ModuleType::Ph2PXB3D
Phase2TrackerDigitizer.h
cms::Phase2TrackerDigitizer::AlgorithmType::PixelinPS
TrackerGeometry::ModuleType::Ph2SS
cms::Phase2TrackerDigitizer::isOuterTrackerReadoutAnalog_
const bool isOuterTrackerReadoutAnalog_
Definition: Phase2TrackerDigitizer.h:105
edm::DetSet
Definition: DetSet.h:23
edm::LuminosityBlock
Definition: LuminosityBlock.h:50
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:32
Pixel3DDigitizerAlgorithm.h
LuminosityBlock.h
edm
HLT enums.
Definition: AlignableModifier.h:19
RandomNumberGenerator.h
TrackerTopology
Definition: TrackerTopology.h:16
TrackerGeometry::ModuleType::Ph2PXF3D
edm::LogInfo
Definition: MessageLogger.h:254
cms::Phase2TrackerDigitizer::tTopoHand_
edm::ESHandle< TrackerTopology > tTopoHand_
Definition: Phase2TrackerDigitizer.h:103
cms::cuda::assert
assert(be >=bs)
FastTrackerRecHitCombiner_cfi.simHits
simHits
Definition: FastTrackerRecHitCombiner_cfi.py:5
info
static const TGPicture * info(bool iBackgroundIsBlack)
Definition: FWCollectionSummaryWidget.cc:152
PileUpEventPrincipal
Definition: PileUpEventPrincipal.h:19
Phase2TrackerDigitizerAlgorithm.h
PixelDigi.h
TrackerGeometry::ModuleType::Ph2PXB
cms::Phase2TrackerDigitizer::moduleTypeCache_
ModuleTypeCache moduleTypeCache_
Definition: Phase2TrackerDigitizer.h:109
findQualityFiles.v
v
Definition: findQualityFiles.py:179
cms::Phase2TrackerDigitizer::finalizeEvent
void finalizeEvent(edm::Event &e, edm::EventSetup const &c) override
Definition: Phase2TrackerDigitizer.cc:218
TrackerGeometry::getDetectorType
ModuleType getDetectorType(DetId) const
Definition: TrackerGeometry.cc:247
edm::Handle
Definition: AssociativeIterator.h:50
edm::Service::isAvailable
bool isAvailable() const
Definition: Service.h:40
end
#define end
Definition: vmac.h:39
align::Tracker
Definition: StructureType.h:70
IdealMagneticFieldRecord
Definition: IdealMagneticFieldRecord.h:11
DetId
Definition: DetId.h:17
cmsdt::algo
algo
Definition: constants.h:164
GeomDet::surface
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
MakerMacros.h
cms::Phase2TrackerDigitizer::geometryType_
const std::string geometryType_
Definition: Phase2TrackerDigitizer.h:99
cms::Phase2TrackerDigitizer::initializeEvent
void initializeEvent(edm::Event const &e, edm::EventSetup const &c) override
Definition: Phase2TrackerDigitizer.cc:153
PSimHit.h
PixelDigitizerAlgorithm.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
cms::Phase2TrackerDigitizer::AlgorithmType::Unknown
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
TrackerGeometry::detUnits
const DetContainer & detUnits() const override
Returm a vector of all GeomDet.
Definition: TrackerGeometry.h:61
Service.h
cms::Phase2TrackerDigitizer::accumulate_local
void accumulate_local(T const &iEvent, edm::EventSetup const &iSetup)
Definition: Phase2TrackerDigitizer.cc:187
PixelGeomDetUnit
Definition: PixelGeomDetUnit.h:15
TrackerDigiGeometryRecord
Definition: TrackerDigiGeometryRecord.h:15
TrackerGeometry::ModuleType
ModuleType
Definition: TrackerGeometry.h:29
IdealMagneticFieldRecord.h
PileUpEventPrincipal.h
cms::Phase2TrackerDigitizer::premixStage1_
const bool premixStage1_
Definition: Phase2TrackerDigitizer.h:106
cms::Phase2TrackerDigitizer::loadAccumulator
void loadAccumulator(const std::map< uint32_t, std::map< int, float > > &accumulator)
Definition: Phase2TrackerDigitizer.cc:210
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
cms::Phase2TrackerDigitizer::makeDigiSimLinks_
const bool makeDigiSimLinks_
Definition: Phase2TrackerDigitizer.h:107
funct::true
true
Definition: Factorize.h:173
TrackerDigiGeometryRecord.h
SSDigitizerAlgorithm.h
Phase2TrackerDigi.h
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
edm::LogError
Definition: MessageLogger.h:183
Event.h
cms::Phase2TrackerDigitizer::AlgorithmType::InnerPixel3D
ParameterSet
Definition: Functions.h:16
cms::Phase2TrackerDigitizer::detectorUnits_
std::map< uint32_t, const Phase2TrackerGeomDetUnit * > detectorUnits_
Definition: Phase2TrackerDigitizer.h:102
cms::Phase2TrackerDigitizer::pDD_
edm::ESHandle< TrackerGeometry > pDD_
Definition: Phase2TrackerDigitizer.h:100
edm::Service< edm::RandomNumberGenerator >
iEvent
int iEvent
Definition: GenABIO.cc:224
cms::Phase2TrackerDigitizer::beginLuminosityBlock
void beginLuminosityBlock(edm::LuminosityBlock const &lumi, edm::EventSetup const &iSetup) override
Definition: Phase2TrackerDigitizer.cc:100
cms::Phase2TrackerDigitizer::pSetup_
edm::ESHandle< MagneticField > pSetup_
Definition: Phase2TrackerDigitizer.h:101
Phase2TrackerDigi::channelToPixel
static std::pair< unsigned int, unsigned int > channelToPixel(unsigned int ch)
Definition: Phase2TrackerDigi.h:39
edm::ProducesCollector::produces
ProductRegistryHelper::BranchAliasSetterT< ProductType > produces()
Definition: ProducesCollector.h:52
MagneticField.h
edm::EventSetup
Definition: EventSetup.h:57
cms::Phase2TrackerDigitizer::algomap_
std::map< AlgorithmType, std::unique_ptr< Phase2TrackerDigitizerAlgorithm > > algomap_
Definition: Phase2TrackerDigitizer.h:96
DetSetVector.h
TrackerGeometry::ModuleType::Ph2PSS
TrackerGeometry::ModuleType::Ph1PXB
itr
std::vector< std::pair< float, float > >::iterator itr
Definition: HGCDigitizer.cc:28
get
#define get
cms::Phase2TrackerDigitizer::ModuleTypeCache
std::unordered_map< uint32_t, TrackerGeometry::ModuleType > ModuleTypeCache
Definition: Phase2TrackerDigitizer.h:51
InputTag.h
cms::Phase2TrackerDigitizer::hitsProducer_
const std::string hitsProducer_
Definition: Phase2TrackerDigitizer.h:97
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
cms::Phase2TrackerDigitizer::addOuterTrackerCollection
void addOuterTrackerCollection(edm::Event &iEvent, const edm::EventSetup &iSetup)
Definition: Phase2TrackerDigitizer.cc:344
GloballyPositioned::position
const PositionType & position() const
Definition: GloballyPositioned.h:36
mixOne_premix_on_sim_cfi.accumulator
accumulator
Definition: mixOne_premix_on_sim_cfi.py:167
GeomDet.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
cms::Phase2TrackerDigitizer::~Phase2TrackerDigitizer
~Phase2TrackerDigitizer() override
Definition: Phase2TrackerDigitizer.cc:121
edm::ProducesCollector
Definition: ProducesCollector.h:43
cms::Phase2TrackerDigitizer
Definition: Phase2TrackerDigitizer.h:49
cms::Phase2TrackerDigitizer::AlgorithmType::TwoStrip
cms::Phase2TrackerDigitizer::addPixelCollection
void addPixelCollection(edm::Event &iEvent, const edm::EventSetup &iSetup, const bool ot_analog)
Definition: Phase2TrackerDigitizer.cc:274
T
long double T
Definition: Basic3DVectorLD.h:48
Exception
Definition: hltDiff.cc:246
DigitizerUtility::DigiSimInfo
Definition: DigitizerUtility.h:127
PixelGeomDetUnit.h
edm::DetSet::data
collection_type data
Definition: DetSet.h:80
EventSetup.h
Exception.h
cms::Phase2TrackerDigitizer::crossingSimHitIndexOffset_
std::map< std::string, size_t > crossingSimHitIndexOffset_
Offset to add to the index of each sim hit to account for which crossing it's in.
Definition: Phase2TrackerDigitizer.h:95
PSPDigitizerAlgorithm.h
DetSet.h
ConsumesCollector.h
cms::Phase2TrackerDigitizer::theTkDigiGeomWatcher_
edm::ESWatcher< TrackerDigiGeometryRecord > theTkDigiGeomWatcher_
Definition: Phase2TrackerDigitizer.h:104
cms::Phase2TrackerDigitizer::trackerContainers_
const vstring trackerContainers_
Definition: Phase2TrackerDigitizer.h:98
DigiAccumulatorMixModFactory.h
genParticles_cff.map
map
Definition: genParticles_cff.py:11
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
ParameterSet.h
DEFINE_DIGI_ACCUMULATOR
#define DEFINE_DIGI_ACCUMULATOR(type)
Definition: DigiAccumulatorMixModFactory.h:31
cms::Phase2TrackerDigitizer::Phase2TrackerDigitizer
Phase2TrackerDigitizer(const edm::ParameterSet &iConfig, edm::ProducesCollector, edm::ConsumesCollector &iC)
Definition: Phase2TrackerDigitizer.cc:64
TrackerGeometry::ModuleType::UNKNOWN
edm::Event
Definition: Event.h:73
lumi
Definition: LumiSectionData.h:20
cms::Phase2TrackerDigitizer::AlgorithmType
AlgorithmType
Definition: Phase2TrackerDigitizer.h:75
edm::InputTag
Definition: InputTag.h:15
begin
#define begin
Definition: vmac.h:32
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
cms::Phase2TrackerDigitizer::accumulate
void accumulate(edm::Event const &e, edm::EventSetup const &c) override
Definition: Phase2TrackerDigitizer.cc:176
TrackerGeometry::ModuleType::Ph2PSP
PixelDigi::channelToPixel
static std::pair< int, int > channelToPixel(int ch)
Definition: PixelDigi.h:65
cms
Namespace of DDCMS conversion namespace.
Definition: ProducerAnalyzer.cc:21
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
cms::Phase2TrackerDigitizer::AlgorithmType::InnerPixel
DigitizerUtility.h