CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripDigitizer.cc
Go to the documentation of this file.
1 // File: SiStripDigitizerAlgorithm.cc
2 // Description: Class for digitization.
3 
4 // Modified 15/May/2013 mark.grimes@bristol.ac.uk - Modified so that the digi-sim link has the correct
5 // index for the sim hits stored. It was previously always set to zero (I won't mention that it was
6 // me who originally wrote that).
7 
8 // system include files
9 #include <memory>
10 
12 
13 #include "SiStripDigitizer.h"
16 
21 
22 // user include files
25 
28 
32 
34 //needed for the geometry:
44 //needed for the magnetic field:
47 
49 
50 //Data Base infromations
54 
55 //Random Number
59 
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 }
93 
94 // Virtual destructor needed.
96 }
97 
98 void SiStripDigitizer::accumulateStripHits(edm::Handle<std::vector<PSimHit> > hSimHits,
99  const TrackerTopology *tTopo, size_t globalSimHitIndex, CLHEP::HepRandomEngine* engine ) {
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, stripdet, bfield, tTopo, engine);
119  }
120  }
121  } // end of loop over sim hits
122  }
123 }
124 
125 // Functions that gets called by framework every event
126  void
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 
138  iEvent.getByLabel(tag, simHits);
140  // Now that the hits have been processed, I'll add the amount of hits in this crossing on to
141  // the global counter. Next time accumulateStripHits() is called it will count the sim hits
142  // as though they were on the end of this collection.
143  // Note that this is only used for creating digi-sim links (if configured to do so).
144  if( simHits.isValid() ) crossingSimHitIndexOffset_[tag.encode()]+=simHits->size();
145  }
146  }
147 
148  void
150 
152  iSetup.get<IdealGeometryRecord>().get(tTopoHand);
153  const TrackerTopology *tTopo=tTopoHand.product();
154 
155  // Step A: Get Inputs
156  for(auto const& trackerContainer : trackerContainers) {
158  edm::InputTag tag(hitsProducer, trackerContainer);
159 
160  iEvent.getByLabel(tag, simHits);
161  accumulateStripHits(simHits,tTopo,crossingSimHitIndexOffset_[tag.encode()], randomEngine(streamID));
162  // Now that the hits have been processed, I'll add the amount of hits in this crossing on to
163  // the global counter. Next time accumulateStripHits() is called it will count the sim hits
164  // as though they were on the end of this collection.
165  // Note that this is only used for creating digi-sim links (if configured to do so).
166  if( simHits.isValid() ) crossingSimHitIndexOffset_[tag.encode()]+=simHits->size();
167  }
168  }
169 
170 
172  // Make sure that the first crossing processed starts indexing the sim hits from zero.
173  // This variable is used so that the sim hits from all crossing frames have sequential
174  // indices used to create the digi-sim link (if configured to do so) rather than starting
175  // from zero for each crossing.
177 
178  // Step A: Get Inputs
179 
180  if(useConfFromDB){
182  iSetup.get<SiStripDetCablingRcd>().get(detCabling);
183  detCabling->addConnected(theDetIdList);
184  }
185 
186  theDigiAlgo->initializeEvent(iSetup);
187 
189  iSetup.get<IdealMagneticFieldRecord>().get(pSetup);
190 
191  // FIX THIS! We only need to clear and (re)fill detectorUnits when the geometry type IOV changes. Use ESWatcher to determine this.
192  bool changes = true;
193  if(changes) { // Replace with ESWatcher
194  detectorUnits.clear();
195  }
196  for(TrackingGeometry::DetUnitContainer::const_iterator iu = pDD->detUnits().begin(); iu != pDD->detUnits().end(); ++iu) {
197  unsigned int detId = (*iu)->geographicalId().rawId();
198  DetId idet=DetId(detId);
199  unsigned int isub=idet.subdetId();
200  if((isub == StripSubdetector::TIB) ||
201  (isub == StripSubdetector::TID) ||
202  (isub == StripSubdetector::TOB) ||
203  (isub == StripSubdetector::TEC)) {
204  auto stripdet = dynamic_cast<StripGeomDetUnit const*>((*iu));
205  assert(stripdet != 0);
206  if(changes) { // Replace with ESWatcher
207  detectorUnits.insert(std::make_pair(detId, stripdet));
208  }
209  theDigiAlgo->initializeDetUnit(stripdet, iSetup);
210  }
211  }
212 }
213 
215  edm::ESHandle<SiStripGain> gainHandle;
216  edm::ESHandle<SiStripNoises> noiseHandle;
217  edm::ESHandle<SiStripThreshold> thresholdHandle;
218  edm::ESHandle<SiStripPedestals> pedestalHandle;
219  iSetup.get<SiStripGainSimRcd>().get(gainLabel,gainHandle);
220  iSetup.get<SiStripNoisesRcd>().get(noiseHandle);
221  iSetup.get<SiStripThresholdRcd>().get(thresholdHandle);
222  iSetup.get<SiStripPedestalsRcd>().get(pedestalHandle);
223 
224  std::vector<edm::DetSet<SiStripDigi> > theDigiVector;
225  std::vector<edm::DetSet<SiStripRawDigi> > theRawDigiVector;
226  std::auto_ptr< edm::DetSetVector<StripDigiSimLink> > pOutputDigiSimLink( new edm::DetSetVector<StripDigiSimLink> );
227 
228  // Step B: LOOP on StripGeomDetUnit
229  theDigiVector.reserve(10000);
230  theDigiVector.clear();
231 
232  for(TrackingGeometry::DetUnitContainer::const_iterator iu = pDD->detUnits().begin(); iu != pDD->detUnits().end(); iu ++){
233  if(useConfFromDB){
234  //apply the cable map _before_ digitization: consider only the detis that are connected
235  if(theDetIdList.find((*iu)->geographicalId().rawId())==theDetIdList.end())
236  continue;
237  }
238  auto sgd = dynamic_cast<StripGeomDetUnit const*>((*iu));
239  if (sgd != 0){
240  edm::DetSet<SiStripDigi> collectorZS((*iu)->geographicalId().rawId());
241  edm::DetSet<SiStripRawDigi> collectorRaw((*iu)->geographicalId().rawId());
242  edm::DetSet<StripDigiSimLink> collectorLink((*iu)->geographicalId().rawId());
243  theDigiAlgo->digitize(collectorZS,collectorRaw,collectorLink,sgd,
244  gainHandle,thresholdHandle,noiseHandle,pedestalHandle, randomEngine(iEvent.streamID()));
245  if(zeroSuppression){
246  if(collectorZS.data.size()>0){
247  theDigiVector.push_back(collectorZS);
248  if( !collectorLink.data.empty() ) pOutputDigiSimLink->insert(collectorLink);
249  }
250  }else{
251  if(collectorRaw.data.size()>0){
252  theRawDigiVector.push_back(collectorRaw);
253  if( !collectorLink.data.empty() ) pOutputDigiSimLink->insert(collectorLink);
254  }
255  }
256  }
257  }
258 
259  if(zeroSuppression){
260  // Step C: create output collection
261  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_virginraw(new edm::DetSetVector<SiStripRawDigi>());
262  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_scopemode(new edm::DetSetVector<SiStripRawDigi>());
263  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_processedraw(new edm::DetSetVector<SiStripRawDigi>());
264  std::auto_ptr<edm::DetSetVector<SiStripDigi> > output(new edm::DetSetVector<SiStripDigi>(theDigiVector) );
265  // Step D: write output to file
266  iEvent.put(output, ZSDigi);
267  iEvent.put(output_scopemode, SCDigi);
268  iEvent.put(output_virginraw, VRDigi);
269  iEvent.put(output_processedraw, PRDigi);
270  if( makeDigiSimLinks_ ) iEvent.put( pOutputDigiSimLink ); // The previous EDProducer didn't name this collection so I won't either
271  }else{
272  // Step C: create output collection
273  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_virginraw(new edm::DetSetVector<SiStripRawDigi>(theRawDigiVector));
274  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_scopemode(new edm::DetSetVector<SiStripRawDigi>());
275  std::auto_ptr<edm::DetSetVector<SiStripRawDigi> > output_processedraw(new edm::DetSetVector<SiStripRawDigi>());
276  std::auto_ptr<edm::DetSetVector<SiStripDigi> > output(new edm::DetSetVector<SiStripDigi>() );
277  // Step D: write output to file
278  iEvent.put(output, ZSDigi);
279  iEvent.put(output_scopemode, SCDigi);
280  iEvent.put(output_virginraw, VRDigi);
281  iEvent.put(output_processedraw, PRDigi);
282  if( makeDigiSimLinks_ ) iEvent.put( pOutputDigiSimLink ); // The previous EDProducer didn't name this collection so I won't either
283  }
284 }
285 
286 CLHEP::HepRandomEngine* SiStripDigitizer::randomEngine(edm::StreamID const& streamID) {
287  unsigned int index = streamID.value();
288  if(index >= randomEngines_.size()) {
289  randomEngines_.resize(index + 1, nullptr);
290  }
291  CLHEP::HepRandomEngine* ptr = randomEngines_[index];
292  if(!ptr) {
294  ptr = &rng->getEngine(streamID);
295  randomEngines_[index] = ptr;
296  }
297  return ptr;
298 }
#define LogDebug(id)
const vstring trackerContainers
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
const std::string ZSDigi
edm::ESHandle< TrackerGeometry > pDD
const bool zeroSuppression
virtual void initializeEvent(edm::Event const &e, edm::EventSetup const &c) override
const std::string hitsProducer
virtual void finalizeEvent(edm::Event &e, edm::EventSetup const &c) override
virtual void accumulate(edm::Event const &e, edm::EventSetup const &c) override
const bool useConfFromDB
std::string encode() const
Definition: InputTag.cc:164
std::map< uint32_t, std::vector< int > > theDetIdList
virtual ~SiStripDigitizer()
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. ...
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
SiStripDigitizer(const edm::ParameterSet &conf, edm::one::EDProducerBase &mixMod, edm::ConsumesCollector &iC)
bool isAvailable() const
Definition: Service.h:46
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
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
tuple conf
Definition: dbtoconf.py:185
void accumulateStripHits(edm::Handle< std::vector< PSimHit > >, const TrackerTopology *tTopo, size_t globalSimHitIndex, CLHEP::HepRandomEngine *)
Definition: DetId.h:18
unsigned int value() const
Definition: StreamID.h:46
std::unique_ptr< SiStripDigitizerAlgorithm > theDigiAlgo
edm::ESHandle< MagneticField > pSetup
const std::string VRDigi
const std::string PRDigi
const T & get() const
Definition: EventSetup.h:55
const std::string geometryType
T const * product() const
Definition: ESHandle.h:62
tuple simHits
Definition: trackerHits.py:16
string const
Definition: compareJSON.py:14
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &) const =0
Use this engine in event methods.
bool getByLabel(edm::InputTag const &tag, edm::Handle< T > &result) const
StreamID streamID() const
Definition: Event.h:75
const bool makeDigiSimLinks_
Whether or not to create the association to sim truth collection. Set in configuration.
volatile std::atomic< bool > shutdown_flag false
const std::string gainLabel
std::map< unsigned int, StripGeomDetUnit const * > detectorUnits
const std::string SCDigi
std::vector< CLHEP::HepRandomEngine * > randomEngines_