CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
SiStripDigitizer Class Reference

Accumulator to perform digitisation on the strip tracker sim hits. More...

#include <SiStripDigitizer.h>

Inheritance diagram for SiStripDigitizer:
DigiAccumulatorMixMod

Public Member Functions

virtual void accumulate (edm::Event const &e, edm::EventSetup const &c) override
 
virtual void accumulate (PileUpEventPrincipal const &e, edm::EventSetup const &c, edm::StreamID const &) override
 
virtual void finalizeEvent (edm::Event &e, edm::EventSetup const &c) override
 
virtual void initializeEvent (edm::Event const &e, edm::EventSetup const &c) override
 
 SiStripDigitizer (const edm::ParameterSet &conf, edm::one::EDProducerBase &mixMod, edm::ConsumesCollector &iC)
 
virtual ~SiStripDigitizer ()
 
- Public Member Functions inherited from DigiAccumulatorMixMod
virtual void beginLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void beginRun (edm::Run const &run, edm::EventSetup const &setup)
 
 DigiAccumulatorMixMod ()
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &lumi, edm::EventSetup const &setup)
 
virtual void endRun (edm::Run const &run, edm::EventSetup const &setup)
 
virtual void finalizeBunchCrossing (edm::Event &event, edm::EventSetup const &setup, int bunchCrossing)
 
virtual PileupMixingContentgetEventPileupInfo ()
 
virtual void initializeBunchCrossing (edm::Event const &event, edm::EventSetup const &setup, int bunchCrossing)
 
virtual void StorePileupInformation (std::vector< int > &numInteractionList, std::vector< int > &bunchCrossingList, std::vector< float > &TrueInteractionList, std::vector< edm::EventID > &eventList, int bunchSpace)
 
virtual ~DigiAccumulatorMixMod ()
 

Private Types

typedef std::map< unsigned int,
std::vector< std::pair< const
PSimHit *, int > >, std::less
< unsigned int > > 
simhit_map
 
typedef simhit_map::iterator simhit_map_iterator
 
typedef std::vector< std::string > vstring
 

Private Member Functions

void accumulateStripHits (edm::Handle< std::vector< PSimHit > >, const TrackerTopology *tTopo, size_t globalSimHitIndex, const unsigned int tofBin, CLHEP::HepRandomEngine *)
 
CLHEP::HepRandomEngine * randomEngine (edm::StreamID const &streamID)
 

Private Attributes

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. More...
 
std::map< unsigned int,
StripGeomDetUnit const * > 
detectorUnits
 
const std::string gainLabel
 
const std::string geometryType
 
const std::string hitsProducer
 
const bool makeDigiSimLinks_
 Whether or not to create the association to sim truth collection. Set in configuration. More...
 
edm::ESHandle< TrackerGeometrypDD
 
const std::string PRDigi
 
edm::ESHandle< MagneticFieldpSetup
 
std::vector
< CLHEP::HepRandomEngine * > 
randomEngines_
 
const std::string SCDigi
 
std::map< uint32_t,
std::vector< int > > 
theDetIdList
 
std::unique_ptr
< SiStripDigitizerAlgorithm
theDigiAlgo
 
const vstring trackerContainers
 
const bool useConfFromDB
 
const std::string VRDigi
 
const bool zeroSuppression
 
const std::string ZSDigi
 

Detailed Description

Accumulator to perform digitisation on the strip tracker sim hits.

Author
original author unknown; converted from a producer to a MixingModule accumulator by Bill Tanenbaum; functionality to create digi-sim links moved from Bill's DigiSimLinkProducer into here by Mark Grimes (mark..nosp@m.grim.nosp@m.es@br.nosp@m.isto.nosp@m.l.ac..nosp@m.uk).
Date
original date unknown; moved into a MixingModule accumulator mid to late 2012; digi sim links eventually finished May 2013

Definition at line 45 of file SiStripDigitizer.h.

Member Typedef Documentation

typedef std::map<unsigned int, std::vector<std::pair<const PSimHit*, int> >,std::less<unsigned int> > SiStripDigitizer::simhit_map
private

Definition at line 61 of file SiStripDigitizer.h.

typedef simhit_map::iterator SiStripDigitizer::simhit_map_iterator
private

Definition at line 62 of file SiStripDigitizer.h.

typedef std::vector<std::string> SiStripDigitizer::vstring
private

Definition at line 60 of file SiStripDigitizer.h.

Constructor & Destructor Documentation

SiStripDigitizer::SiStripDigitizer ( const edm::ParameterSet conf,
edm::one::EDProducerBase mixMod,
edm::ConsumesCollector iC 
)
explicit

Definition at line 60 of file SiStripDigitizer.cc.

References edm::ConsumesCollector::consumes(), edm::hlt::Exception, hitsProducer, edm::Service< T >::isAvailable(), PRDigi, SCDigi, AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, theDigiAlgo, trackerContainers, VRDigi, and ZSDigi.

60  :
61  gainLabel(conf.getParameter<std::string>("Gain")),
62  hitsProducer(conf.getParameter<std::string>("hitsProducer")),
63  trackerContainers(conf.getParameter<std::vector<std::string> >("ROUList")),
64  ZSDigi(conf.getParameter<edm::ParameterSet>("DigiModeList").getParameter<std::string>("ZSDigi")),
65  SCDigi(conf.getParameter<edm::ParameterSet>("DigiModeList").getParameter<std::string>("SCDigi")),
66  VRDigi(conf.getParameter<edm::ParameterSet>("DigiModeList").getParameter<std::string>("VRDigi")),
67  PRDigi(conf.getParameter<edm::ParameterSet>("DigiModeList").getParameter<std::string>("PRDigi")),
68  geometryType(conf.getParameter<std::string>("GeometryType")),
69  useConfFromDB(conf.getParameter<bool>("TrackerConfigurationFromDB")),
70  zeroSuppression(conf.getParameter<bool>("ZeroSuppression")),
71  makeDigiSimLinks_(conf.getUntrackedParameter<bool>("makeDigiSimLinks", false))
72 {
73  const std::string alias("simSiStripDigis");
74 
75  mixMod.produces<edm::DetSetVector<SiStripDigi> >(ZSDigi).setBranchAlias(ZSDigi);
76  mixMod.produces<edm::DetSetVector<SiStripRawDigi> >(SCDigi).setBranchAlias(alias + SCDigi);
77  mixMod.produces<edm::DetSetVector<SiStripRawDigi> >(VRDigi).setBranchAlias(alias + VRDigi);
78  mixMod.produces<edm::DetSetVector<SiStripRawDigi> >(PRDigi).setBranchAlias(alias + PRDigi);
79  mixMod.produces<edm::DetSetVector<StripDigiSimLink> >().setBranchAlias(alias + "siStripDigiSimLink");
80  for(auto const& trackerContainer : trackerContainers) {
81  edm::InputTag tag(hitsProducer, trackerContainer);
82  iC.consumes<std::vector<PSimHit> >(edm::InputTag(hitsProducer, trackerContainer));
83  }
85  if ( ! rng.isAvailable()) {
86  throw cms::Exception("Configuration")
87  << "SiStripDigitizer requires the RandomNumberGeneratorService\n"
88  "which is not present in the configuration file. You must add the service\n"
89  "in the configuration file or remove the modules that require it.";
90  }
91  theDigiAlgo.reset(new SiStripDigitizerAlgorithm(conf));
92 }
const vstring trackerContainers
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
const std::string ZSDigi
T getUntrackedParameter(std::string const &, T const &) const
const bool zeroSuppression
const std::string hitsProducer
const bool useConfFromDB
bool isAvailable() const
Definition: Service.h:46
std::unique_ptr< SiStripDigitizerAlgorithm > theDigiAlgo
const std::string VRDigi
const std::string PRDigi
const std::string geometryType
const bool makeDigiSimLinks_
Whether or not to create the association to sim truth collection. Set in configuration.
const std::string gainLabel
const std::string SCDigi
SiStripDigitizer::~SiStripDigitizer ( )
virtual

Definition at line 95 of file SiStripDigitizer.cc.

95  {
96 }

Member Function Documentation

void SiStripDigitizer::accumulate ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 127 of file SiStripDigitizer.cc.

References accumulateStripHits(), crossingSimHitIndexOffset_, edm::InputTag::encode(), edm::EventSetup::get(), edm::Event::getByLabel(), StripDigiSimLink::HighTof, hitsProducer, edm::HandleBase::isValid(), StripDigiSimLink::LowTof, edm::ESHandle< class >::product(), randomEngine(), trackerHits::simHits, edm::Event::streamID(), AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, and trackerContainers.

127  {
128  //Retrieve tracker topology from geometry
130  iSetup.get<IdealGeometryRecord>().get(tTopoHand);
131  const TrackerTopology *tTopo=tTopoHand.product();
132 
133  // Step A: Get Inputs
134  for(auto const& trackerContainer : trackerContainers) {
136  edm::InputTag tag(hitsProducer, trackerContainer);
137  unsigned int tofBin = StripDigiSimLink::LowTof;
138  if (trackerContainer.find(std::string("HighTof")) != std::string::npos) tofBin = StripDigiSimLink::HighTof;
139 
140  iEvent.getByLabel(tag, simHits);
141  accumulateStripHits(simHits,tTopo,crossingSimHitIndexOffset_[tag.encode()], tofBin, randomEngine(iEvent.streamID()));
142  // Now that the hits have been processed, I'll add the amount of hits in this crossing on to
143  // the global counter. Next time accumulateStripHits() is called it will count the sim hits
144  // as though they were on the end of this collection.
145  // Note that this is only used for creating digi-sim links (if configured to do so).
146  if( simHits.isValid() ) crossingSimHitIndexOffset_[tag.encode()]+=simHits->size();
147  }
148  }
const vstring trackerContainers
void accumulateStripHits(edm::Handle< std::vector< PSimHit > >, const TrackerTopology *tTopo, size_t globalSimHitIndex, const unsigned int tofBin, CLHEP::HepRandomEngine *)
const std::string hitsProducer
int iEvent
Definition: GenABIO.cc:230
std::map< std::string, size_t > crossingSimHitIndexOffset_
Offset to add to the index of each sim hit to account for which crossing it&#39;s in. ...
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
bool isValid() const
Definition: HandleBase.h:76
T const * product() const
Definition: ESHandle.h:86
tuple simHits
Definition: trackerHits.py:16
void SiStripDigitizer::accumulate ( PileUpEventPrincipal const &  e,
edm::EventSetup const &  c,
edm::StreamID const &  streamID 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 151 of file SiStripDigitizer.cc.

References accumulateStripHits(), crossingSimHitIndexOffset_, edm::InputTag::encode(), edm::EventSetup::get(), PileUpEventPrincipal::getByLabel(), StripDigiSimLink::HighTof, hitsProducer, edm::HandleBase::isValid(), StripDigiSimLink::LowTof, edm::ESHandle< class >::product(), randomEngine(), trackerHits::simHits, AlCaHLTBitMon_QueryRunRegistry::string, GlobalPosition_Frontier_DevDB_cff::tag, and trackerContainers.

151  {
152 
154  iSetup.get<IdealGeometryRecord>().get(tTopoHand);
155  const TrackerTopology *tTopo=tTopoHand.product();
156 
157  // Step A: Get Inputs
158  for(auto const& trackerContainer : trackerContainers) {
160  edm::InputTag tag(hitsProducer, trackerContainer);
161  unsigned int tofBin = StripDigiSimLink::LowTof;
162  if (trackerContainer.find(std::string("HighTof")) != std::string::npos) tofBin = StripDigiSimLink::HighTof;
163 
164  iEvent.getByLabel(tag, simHits);
165  accumulateStripHits(simHits,tTopo,crossingSimHitIndexOffset_[tag.encode()], tofBin, randomEngine(streamID));
166  // Now that the hits have been processed, I'll add the amount of hits in this crossing on to
167  // the global counter. Next time accumulateStripHits() is called it will count the sim hits
168  // as though they were on the end of this collection.
169  // Note that this is only used for creating digi-sim links (if configured to do so).
170  if( simHits.isValid() ) crossingSimHitIndexOffset_[tag.encode()]+=simHits->size();
171  }
172  }
const vstring trackerContainers
void accumulateStripHits(edm::Handle< std::vector< PSimHit > >, const TrackerTopology *tTopo, size_t globalSimHitIndex, const unsigned int tofBin, CLHEP::HepRandomEngine *)
const std::string hitsProducer
int iEvent
Definition: GenABIO.cc:230
std::map< std::string, size_t > crossingSimHitIndexOffset_
Offset to add to the index of each sim hit to account for which crossing it&#39;s in. ...
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
bool isValid() const
Definition: HandleBase.h:76
T const * product() const
Definition: ESHandle.h:86
tuple simHits
Definition: trackerHits.py:16
void SiStripDigitizer::accumulateStripHits ( edm::Handle< std::vector< PSimHit > >  hSimHits,
const TrackerTopology tTopo,
size_t  globalSimHitIndex,
const unsigned int  tofBin,
CLHEP::HepRandomEngine *  engine 
)
private

Definition at line 98 of file SiStripDigitizer.cc.

References detectorUnits, LogDebug, pSetup, trackerHits::simHits, DetId::subdetId(), StripSubdetector::TEC, theDigiAlgo, StripSubdetector::TIB, StripSubdetector::TID, and StripSubdetector::TOB.

Referenced by accumulate().

99  {
100  // globalSimHitIndex is the index the sim hit will have when it is put in a collection
101  // of sim hits for all crossings. This is only used when creating digi-sim links if
102  // configured to do so.
103 
104  if(hSimHits.isValid()) {
105  std::set<unsigned int> detIds;
106  std::vector<PSimHit> const& simHits = *hSimHits.product();
107  for(std::vector<PSimHit>::const_iterator it = simHits.begin(), itEnd = simHits.end(); it != itEnd; ++it, ++globalSimHitIndex ) {
108  unsigned int detId = (*it).detUnitId();
109  if(detIds.insert(detId).second) {
110  // The insert succeeded, so this detector element has not yet been processed.
111  unsigned int isub = DetId(detId).subdetId();
112  if((isub == StripSubdetector::TIB) || (isub == StripSubdetector::TID) || (isub == StripSubdetector::TOB) || (isub == StripSubdetector::TEC)) {
113  auto stripdet = detectorUnits[detId];
114  //access to magnetic field in global coordinates
115  GlobalVector bfield = pSetup->inTesla(stripdet->surface().position());
116  LogDebug ("Digitizer ") << "B-field(T) at " << stripdet->surface().position() << "(cm): "
117  << pSetup->inTesla(stripdet->surface().position());
118  theDigiAlgo->accumulateSimHits(it, itEnd, globalSimHitIndex, tofBin, stripdet, bfield, tTopo, engine);
119  }
120  }
121  } // end of loop over sim hits
122  }
123 }
#define LogDebug(id)
bool isValid() const
Definition: HandleBase.h:76
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
Definition: DetId.h:18
std::unique_ptr< SiStripDigitizerAlgorithm > theDigiAlgo
T const * product() const
Definition: Handle.h:81
edm::ESHandle< MagneticField > pSetup
tuple simHits
Definition: trackerHits.py:16
std::map< unsigned int, StripGeomDetUnit const * > detectorUnits
void SiStripDigitizer::finalizeEvent ( edm::Event e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 218 of file SiStripDigitizer.cc.

References compareJSON::const, gainLabel, edm::EventSetup::get(), makeDigiSimLinks_, convertSQLitetoXML_cfg::output, pDD, PRDigi, edm::Event::put(), randomEngine(), SCDigi, edm::Event::streamID(), theDetIdList, theDigiAlgo, useConfFromDB, VRDigi, zeroSuppression, and ZSDigi.

218  {
219  edm::ESHandle<SiStripGain> gainHandle;
220  edm::ESHandle<SiStripNoises> noiseHandle;
221  edm::ESHandle<SiStripThreshold> thresholdHandle;
222  edm::ESHandle<SiStripPedestals> pedestalHandle;
223  iSetup.get<SiStripGainSimRcd>().get(gainLabel,gainHandle);
224  iSetup.get<SiStripNoisesRcd>().get(noiseHandle);
225  iSetup.get<SiStripThresholdRcd>().get(thresholdHandle);
226  iSetup.get<SiStripPedestalsRcd>().get(pedestalHandle);
227 
228  std::vector<edm::DetSet<SiStripDigi> > theDigiVector;
229  std::vector<edm::DetSet<SiStripRawDigi> > theRawDigiVector;
230  std::auto_ptr< edm::DetSetVector<StripDigiSimLink> > pOutputDigiSimLink( new edm::DetSetVector<StripDigiSimLink> );
231 
232  // Step B: LOOP on StripGeomDetUnit
233  theDigiVector.reserve(10000);
234  theDigiVector.clear();
235 
236  for(TrackingGeometry::DetUnitContainer::const_iterator iu = pDD->detUnits().begin(); iu != pDD->detUnits().end(); iu ++){
237  if(useConfFromDB){
238  //apply the cable map _before_ digitization: consider only the detis that are connected
239  if(theDetIdList.find((*iu)->geographicalId().rawId())==theDetIdList.end())
240  continue;
241  }
242  auto sgd = dynamic_cast<StripGeomDetUnit const*>((*iu));
243  if (sgd != 0){
244  edm::DetSet<SiStripDigi> collectorZS((*iu)->geographicalId().rawId());
245  edm::DetSet<SiStripRawDigi> collectorRaw((*iu)->geographicalId().rawId());
246  edm::DetSet<StripDigiSimLink> collectorLink((*iu)->geographicalId().rawId());
247  theDigiAlgo->digitize(collectorZS,collectorRaw,collectorLink,sgd,
248  gainHandle,thresholdHandle,noiseHandle,pedestalHandle, randomEngine(iEvent.streamID()));
249  if(zeroSuppression){
250  if(collectorZS.data.size()>0){
251  theDigiVector.push_back(collectorZS);
252  if( !collectorLink.data.empty() ) pOutputDigiSimLink->insert(collectorLink);
253  }
254  }else{
255  if(collectorRaw.data.size()>0){
256  theRawDigiVector.push_back(collectorRaw);
257  if( !collectorLink.data.empty() ) pOutputDigiSimLink->insert(collectorLink);
258  }
259  }
260  }
261  }
262 
263  if(zeroSuppression){
264  // Step C: create output collection
265  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_virginraw(new edm::DetSetVector<SiStripRawDigi>());
266  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_scopemode(new edm::DetSetVector<SiStripRawDigi>());
267  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_processedraw(new edm::DetSetVector<SiStripRawDigi>());
268  std::auto_ptr<edm::DetSetVector<SiStripDigi> > output(new edm::DetSetVector<SiStripDigi>(theDigiVector) );
269  // Step D: write output to file
270  iEvent.put(output, ZSDigi);
271  iEvent.put(output_scopemode, SCDigi);
272  iEvent.put(output_virginraw, VRDigi);
273  iEvent.put(output_processedraw, PRDigi);
274  if( makeDigiSimLinks_ ) iEvent.put( pOutputDigiSimLink ); // The previous EDProducer didn't name this collection so I won't either
275  }else{
276  // Step C: create output collection
277  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_virginraw(new edm::DetSetVector<SiStripRawDigi>(theRawDigiVector));
278  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_scopemode(new edm::DetSetVector<SiStripRawDigi>());
279  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_processedraw(new edm::DetSetVector<SiStripRawDigi>());
280  std::auto_ptr<edm::DetSetVector<SiStripDigi> > output(new edm::DetSetVector<SiStripDigi>() );
281  // Step D: write output to file
282  iEvent.put(output, ZSDigi);
283  iEvent.put(output_scopemode, SCDigi);
284  iEvent.put(output_virginraw, VRDigi);
285  iEvent.put(output_processedraw, PRDigi);
286  if( makeDigiSimLinks_ ) iEvent.put( pOutputDigiSimLink ); // The previous EDProducer didn't name this collection so I won't either
287  }
288 }
const std::string ZSDigi
edm::ESHandle< TrackerGeometry > pDD
const bool zeroSuppression
const bool useConfFromDB
std::map< uint32_t, std::vector< int > > theDetIdList
int iEvent
Definition: GenABIO.cc:230
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
std::unique_ptr< SiStripDigitizerAlgorithm > theDigiAlgo
const std::string VRDigi
const std::string PRDigi
string const
Definition: compareJSON.py:14
const bool makeDigiSimLinks_
Whether or not to create the association to sim truth collection. Set in configuration.
const std::string gainLabel
const std::string SCDigi
void SiStripDigitizer::initializeEvent ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements DigiAccumulatorMixMod.

Definition at line 175 of file SiStripDigitizer.cc.

References compareJSON::const, crossingSimHitIndexOffset_, detectorUnits, geometryType, edm::EventSetup::get(), pDD, pSetup, DetId::subdetId(), StripSubdetector::TEC, theDetIdList, theDigiAlgo, StripSubdetector::TIB, StripSubdetector::TID, StripSubdetector::TOB, and useConfFromDB.

175  {
176  // Make sure that the first crossing processed starts indexing the sim hits from zero.
177  // This variable is used so that the sim hits from all crossing frames have sequential
178  // indices used to create the digi-sim link (if configured to do so) rather than starting
179  // from zero for each crossing.
181 
182  // Step A: Get Inputs
183 
184  if(useConfFromDB){
186  iSetup.get<SiStripDetCablingRcd>().get(detCabling);
187  detCabling->addConnected(theDetIdList);
188  }
189 
190  theDigiAlgo->initializeEvent(iSetup);
191 
192  iSetup.get<TrackerDigiGeometryRecord>().get(geometryType,pDD);
193  iSetup.get<IdealMagneticFieldRecord>().get(pSetup);
194 
195  // FIX THIS! We only need to clear and (re)fill detectorUnits when the geometry type IOV changes. Use ESWatcher to determine this.
196  bool changes = true;
197  if(changes) { // Replace with ESWatcher
198  detectorUnits.clear();
199  }
200  for(TrackingGeometry::DetUnitContainer::const_iterator iu = pDD->detUnits().begin(); iu != pDD->detUnits().end(); ++iu) {
201  unsigned int detId = (*iu)->geographicalId().rawId();
202  DetId idet=DetId(detId);
203  unsigned int isub=idet.subdetId();
204  if((isub == StripSubdetector::TIB) ||
205  (isub == StripSubdetector::TID) ||
206  (isub == StripSubdetector::TOB) ||
207  (isub == StripSubdetector::TEC)) {
208  auto stripdet = dynamic_cast<StripGeomDetUnit const*>((*iu));
209  assert(stripdet != 0);
210  if(changes) { // Replace with ESWatcher
211  detectorUnits.insert(std::make_pair(detId, stripdet));
212  }
213  theDigiAlgo->initializeDetUnit(stripdet, iSetup);
214  }
215  }
216 }
edm::ESHandle< TrackerGeometry > pDD
const bool useConfFromDB
std::map< uint32_t, std::vector< int > > theDetIdList
std::map< std::string, size_t > crossingSimHitIndexOffset_
Offset to add to the index of each sim hit to account for which crossing it&#39;s in. ...
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
Definition: DetId.h:18
std::unique_ptr< SiStripDigitizerAlgorithm > theDigiAlgo
edm::ESHandle< MagneticField > pSetup
const std::string geometryType
string const
Definition: compareJSON.py:14
std::map< unsigned int, StripGeomDetUnit const * > detectorUnits
CLHEP::HepRandomEngine * SiStripDigitizer::randomEngine ( edm::StreamID const &  streamID)
private

Definition at line 290 of file SiStripDigitizer.cc.

References edm::RandomNumberGenerator::getEngine(), cmsHarvester::index, randomEngines_, and edm::StreamID::value().

Referenced by accumulate(), and finalizeEvent().

290  {
291  unsigned int index = streamID.value();
292  if(index >= randomEngines_.size()) {
293  randomEngines_.resize(index + 1, nullptr);
294  }
295  CLHEP::HepRandomEngine* ptr = randomEngines_[index];
296  if(!ptr) {
298  ptr = &rng->getEngine(streamID);
299  randomEngines_[index] = ptr;
300  }
301  return ptr;
302 }
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &) const =0
Use this engine in event methods.
std::vector< CLHEP::HepRandomEngine * > randomEngines_

Member Data Documentation

std::map<std::string,size_t> SiStripDigitizer::crossingSimHitIndexOffset_
private

Offset to add to the index of each sim hit to account for which crossing it's in.

I need to know what each sim hit index will be when the hits from all crossing frames are merged into one collection (assuming the MixingModule is configured to create the crossing frame for all sim hits). To do this I'll record how many hits were in each crossing, and then add that on to the index for a given hit in a given crossing. This assumes that the crossings are processed in the same order here as they are put into the crossing frame, which I'm pretty sure is true.
The key is the name of the sim hit collection.

Definition at line 83 of file SiStripDigitizer.h.

Referenced by accumulate(), and initializeEvent().

std::map<unsigned int, StripGeomDetUnit const *> SiStripDigitizer::detectorUnits
private

Definition at line 89 of file SiStripDigitizer.h.

Referenced by accumulateStripHits(), and initializeEvent().

const std::string SiStripDigitizer::gainLabel
private

Definition at line 64 of file SiStripDigitizer.h.

Referenced by finalizeEvent().

const std::string SiStripDigitizer::geometryType
private

Definition at line 71 of file SiStripDigitizer.h.

Referenced by initializeEvent().

const std::string SiStripDigitizer::hitsProducer
private

Definition at line 65 of file SiStripDigitizer.h.

Referenced by accumulate(), and SiStripDigitizer().

const bool SiStripDigitizer::makeDigiSimLinks_
private

Whether or not to create the association to sim truth collection. Set in configuration.

Definition at line 74 of file SiStripDigitizer.h.

Referenced by finalizeEvent().

edm::ESHandle<TrackerGeometry> SiStripDigitizer::pDD
private

Definition at line 87 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and initializeEvent().

const std::string SiStripDigitizer::PRDigi
private

Definition at line 70 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and SiStripDigitizer().

edm::ESHandle<MagneticField> SiStripDigitizer::pSetup
private

Definition at line 88 of file SiStripDigitizer.h.

Referenced by accumulateStripHits(), and initializeEvent().

std::vector<CLHEP::HepRandomEngine*> SiStripDigitizer::randomEngines_
private

Definition at line 90 of file SiStripDigitizer.h.

Referenced by randomEngine().

const std::string SiStripDigitizer::SCDigi
private

Definition at line 68 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and SiStripDigitizer().

std::map<uint32_t, std::vector<int> > SiStripDigitizer::theDetIdList
private

Definition at line 86 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and initializeEvent().

std::unique_ptr<SiStripDigitizerAlgorithm> SiStripDigitizer::theDigiAlgo
private
const vstring SiStripDigitizer::trackerContainers
private

Definition at line 66 of file SiStripDigitizer.h.

Referenced by accumulate(), and SiStripDigitizer().

const bool SiStripDigitizer::useConfFromDB
private

Definition at line 72 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and initializeEvent().

const std::string SiStripDigitizer::VRDigi
private

Definition at line 69 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and SiStripDigitizer().

const bool SiStripDigitizer::zeroSuppression
private

Definition at line 73 of file SiStripDigitizer.h.

Referenced by finalizeEvent().

const std::string SiStripDigitizer::ZSDigi
private

Definition at line 67 of file SiStripDigitizer.h.

Referenced by finalizeEvent(), and SiStripDigitizer().