CMS 3D CMS Logo

SiStripFineDelayHit.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiStripFineDelayHit
4 // Class: SiStripFineDelayHit
5 //
13 //
14 // Original Author: Christophe DELAERE
15 // Created: Fri Nov 17 10:52:42 CET 2006
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <utility>
22 #include <vector>
23 #include <algorithm>
24 
25 // user include files
33 
53 
63 
65 
69 
70 #include "TMath.h"
71 
72 //
73 // constructors and destructor
74 //
76  //register your products
77  produces<edm::DetSetVector<SiStripRawDigi> >("FineDelaySelection");
78  //now do what ever other initialization is needed
79  anglefinder_ = new SiStripFineDelayTLA(iConfig);
80  cosmic_ = iConfig.getParameter<bool>("cosmic");
81  field_ = iConfig.getParameter<bool>("MagneticField");
82  maxAngle_ = iConfig.getParameter<double>("MaxTrackAngle");
83  minTrackP2_ = iConfig.getParameter<double>("MinTrackMomentum") * iConfig.getParameter<double>("MinTrackMomentum");
84  maxClusterDistance_ = iConfig.getParameter<double>("MaxClusterDistance");
85  /*
86  clusterLabel_ = iConfig.getParameter<edm::InputTag>("ClustersLabel");
87  trackLabel_ = iConfig.getParameter<edm::InputTag>("TracksLabel");
88  seedLabel_ = iConfig.getParameter<edm::InputTag>("SeedsLabel");
89  inputModuleLabel_ = iConfig.getParameter<edm::InputTag>( "InputModuleLabel" ) ;
90  digiLabel_ = iConfig.getParameter<edm::InputTag>("DigiLabel");
91  */
93  consumes<edmNew::DetSetVector<SiStripCluster> >(iConfig.getParameter<edm::InputTag>("ClustersLabel"));
94  trackToken_ = consumes<std::vector<Trajectory> >(iConfig.getParameter<edm::InputTag>("TracksLabel"));
95  trackCollectionToken_ = consumes<reco::TrackCollection>(iConfig.getParameter<edm::InputTag>("TracksLabel"));
96  seedcollToken_ = consumes<TrajectorySeedCollection>(iConfig.getParameter<edm::InputTag>("SeedsLabel"));
97  inputModuleToken_ = consumes<SiStripEventSummary>(iConfig.getParameter<edm::InputTag>("InputModuleLabel"));
98  digiToken_ = consumes<edm::DetSetVector<SiStripDigi> >(iConfig.getParameter<edm::InputTag>("DigiLabel"));
99 
100  homeMadeClusters_ = iConfig.getParameter<bool>("NoClustering");
101  explorationWindow_ = iConfig.getParameter<uint32_t>("ExplorationWindow");
102  noTracking_ = iConfig.getParameter<bool>("NoTracking");
103  mode_ = 0;
104 }
105 
107  // do anything here that needs to be done at desctruction time
108  // (e.g. close files, deallocate resources etc.)
109  delete anglefinder_;
110 }
111 
112 //
113 // member functions
114 //
116  const int substructure,
117  const TrackerTopology* tkrTopo) {
118  uint32_t rootDetId = 0;
119  uint32_t maskDetId = 0;
120 
121  switch (subdet) {
122  case StripSubdetector::TIB: {
123  rootDetId = tkrTopo->tibDetId(substructure, 0, 0, 0, 0, 0).rawId();
124  maskDetId = tkrTopo->tibDetId(15, 0, 0, 0, 0, 0).rawId();
125  break;
126  }
127  case StripSubdetector::TID: {
128  rootDetId = tkrTopo->tidDetId(substructure > 0 ? 2 : 1, abs(substructure), 0, 0, 0, 0).rawId();
129  maskDetId = tkrTopo->tidDetId(3, 15, 0, 0, 0, 0).rawId();
130  break;
131  }
132  case StripSubdetector::TOB: {
133  rootDetId = tkrTopo->tobDetId(substructure, 0, 0, 0, 0).rawId();
134  maskDetId = tkrTopo->tobDetId(15, 0, 0, 0, 0).rawId();
135  break;
136  }
137  case StripSubdetector::TEC: {
138  rootDetId = tkrTopo->tecDetId(substructure > 0 ? 2 : 1, abs(substructure), 0, 0, 0, 0, 0).rawId();
139  maskDetId = tkrTopo->tecDetId(3, 15, 0, 0, 0, 0, 0).rawId();
140  break;
141  }
142  default:
143  break;
144  }
145  return std::make_pair(maskDetId, rootDetId);
146 }
147 
148 std::vector<std::pair<uint32_t, std::pair<double, double> > > SiStripFineDelayHit::detId(
149  const TrackerGeometry& tracker,
150  const TrackerTopology* tkrTopo,
151  const reco::Track* tk,
152  const std::vector<Trajectory>& trajVec,
153  const StripSubdetector::SubDetector subdet,
154  const int substructure) {
155  if (substructure == 0xff)
156  return detId(tracker, tkrTopo, tk, trajVec, 0, 0);
157  // first determine the root detId we are looking for
158  DeviceMask mask = deviceMask(subdet, substructure, tkrTopo);
159  // then call the method that loops on recHits
160  return detId(tracker, tkrTopo, tk, trajVec, mask.first, mask.second);
161 }
162 
163 std::vector<std::pair<uint32_t, std::pair<double, double> > > SiStripFineDelayHit::detId(
164  const TrackerGeometry& tracker,
165  const TrackerTopology* tkrTopo,
166  const reco::Track* tk,
167  const std::vector<Trajectory>& trajVec,
168  const uint32_t& maskDetId,
169  const uint32_t& rootDetId) {
170  bool onDisk = ((maskDetId == tkrTopo->tidDetId(3, 15, 0, 0, 0, 0).rawId()) ||
171  (maskDetId == tkrTopo->tecDetId(3, 15, 0, 0, 0, 0, 0).rawId()));
172  std::vector<std::pair<uint32_t, std::pair<double, double> > > result;
173  std::vector<uint32_t> usedDetids;
174  // now loop on recHits to find the right detId plus the track local angle
175  std::vector<std::pair<std::pair<DetId, LocalPoint>, float> > hitangle;
176  if (!cosmic_) {
177  // use trajectories in event.
178  // we have first to find the right trajectory for the considered track.
179  for (std::vector<Trajectory>::const_iterator traj = trajVec.begin(); traj < trajVec.end(); ++traj) {
180  if (((traj->lastMeasurement().recHit()->geographicalId().rawId() ==
181  (*(tk->recHitsEnd() - 1))->geographicalId().rawId()) &&
182  (traj->lastMeasurement().recHit()->localPosition().x() == (*(tk->recHitsEnd() - 1))->localPosition().x())) ||
183  ((traj->firstMeasurement().recHit()->geographicalId().rawId() ==
184  (*(tk->recHitsEnd() - 1))->geographicalId().rawId()) &&
185  (traj->firstMeasurement().recHit()->localPosition().x() == (*(tk->recHitsEnd() - 1))->localPosition().x()))) {
186  hitangle = anglefinder_->findtrackangle(*traj);
187  break;
188  }
189  }
190  } else {
192  // event_->getByLabel(seedLabel_,seedcoll);
193  event_->getByToken(seedcollToken_, seedcoll);
194  // use trajectories in event.
195  hitangle = anglefinder_->findtrackangle(trajVec);
196  }
197  LogDebug("DetId") << "number of hits for the track: " << hitangle.size();
198  std::vector<std::pair<std::pair<DetId, LocalPoint>, float> >::iterator iter;
199  // select the interesting DetIds, based on the ID and TLA
200  for (iter = hitangle.begin(); iter != hitangle.end(); iter++) {
201  // check the detId.
202  // if substructure was 0xff, then maskDetId and rootDetId == 0
203  // this implies all detids are accepted. (also if maskDetId=rootDetId=0 explicitely).
204  // That "unusual" mode of operation allows to analyze also Latency scans
205  LogDebug("DetId") << "check the detid: " << std::hex << (iter->first.first.rawId()) << " vs " << rootDetId
206  << " with a mask of " << maskDetId << std::dec << std::endl;
207 
208  if (((iter->first.first.rawId() & maskDetId) != rootDetId))
209  continue;
210  if (std::find(usedDetids.begin(), usedDetids.end(), iter->first.first.rawId()) != usedDetids.end())
211  continue;
212  // check the local angle (extended to the equivalent angle correction)
213  LogDebug("DetId") << "check the angle: " << fabs((iter->second));
214  if (1 - fabs(fabs(iter->second) - 1) < cos(maxAngle_ / 180. * TMath::Pi()))
215  continue;
216  // returns the detid + the time of flight to there
217  std::pair<uint32_t, std::pair<double, double> > el;
218  std::pair<double, double> subel;
219  el.first = iter->first.first.rawId();
220  // here, we compute the TOF.
221  // For cosmics, some track parameters are missing. Parameters are recomputed.
222  // for our calculation, the track momemtum at any point is enough:
223  // only used without B field or for the sign of Pz.
224  double trackParameters[5];
225  for (int i = 0; i < 5; i++)
226  trackParameters[i] = tk->parameters()[i];
227  if (cosmic_)
228  SiStripFineDelayTOF::trackParameters(*tk, trackParameters);
229  double hit[3];
230  const GeomDetUnit* det(tracker.idToDetUnit(iter->first.first));
231  Surface::GlobalPoint gp = det->surface().toGlobal(iter->first.second);
232  hit[0] = gp.x();
233  hit[1] = gp.y();
234  hit[2] = gp.z();
235  double phit[3];
236  phit[0] = tk->momentum().x();
237  phit[1] = tk->momentum().y();
238  phit[2] = tk->momentum().z();
239  subel.first = SiStripFineDelayTOF::timeOfFlight(cosmic_, field_, trackParameters, hit, phit, onDisk);
240  subel.second = iter->second;
241  el.second = subel;
242  // returns the detid + TOF
243  result.push_back(el);
244  usedDetids.push_back(el.first);
245  }
246  return result;
247 }
248 
249 bool SiStripFineDelayHit::rechit(reco::Track* tk, uint32_t det_id) {
250  for (trackingRecHit_iterator it = tk->recHitsBegin(); it != tk->recHitsEnd(); it++)
251  if ((*it)->geographicalId().rawId() == det_id) {
252  return (*it)->isValid();
253  break;
254  }
255  return false;
256 }
257 
258 // VI January 2012: FIXME
259 // do not understand what is going on here: each hit has a cluster: by definition will be the closest!
260 std::pair<const SiStripCluster*, double> SiStripFineDelayHit::closestCluster(
261  const TrackerGeometry& tracker,
262  const reco::Track* tk,
263  const uint32_t& det_id,
266  std::pair<const SiStripCluster*, double> result(nullptr, 0.);
267  double hitStrip = -1;
268  int nstrips = -1;
269  // localize the crossing point of the track on the module
270  for (trackingRecHit_iterator it = tk->recHitsBegin(); it != tk->recHitsEnd(); it++) {
271  LogDebug("closestCluster") << "(*it)->geographicalId().rawId() vs det_id" << (*it)->geographicalId().rawId() << " "
272  << det_id;
273  //handle the mono rechits
274  if ((*it)->geographicalId().rawId() == det_id) {
275  if (!(*it)->isValid())
276  continue;
277  LogDebug("closestCluster") << " using the single mono hit";
278  LocalPoint lp = (*it)->localPosition();
279  const GeomDetUnit* gdu = static_cast<const GeomDetUnit*>(tracker.idToDet((*it)->geographicalId()));
281  hitStrip = p.x();
282  nstrips = (dynamic_cast<const StripTopology*>(&(gdu->topology())))->nstrips();
283  break;
284  }
285  /* FIXME: local position is not there anymore...
286  //handle stereo part of matched hits
287  //one could try to cast to SiStripMatchedRecHit2D but it is faster to look at the detid
288  else if((det_id - (*it)->geographicalId().rawId())==1) {
289  const SiStripMatchedRecHit2D* hit2D = dynamic_cast<const SiStripMatchedRecHit2D*>(&(**it));
290  if(!hit2D) continue; // this is a security that should never trigger
291  const SiStripRecHit2D* stereo = hit2D->stereoHit();
292  if(!stereo) continue; // this is a security that should never trigger
293  if(!stereo->isValid()) continue;
294  LogDebug("closestCluster") << " using the stereo hit";
295  LocalPoint lp = stereo->localPosition();
296  const GeomDetUnit* gdu = static_cast<const GeomDetUnit*>(tracker.idToDet(stereo->geographicalId()));
297  MeasurementPoint p = gdu->topology().measurementPosition(lp);
298  hitStrip = p.x();
299  nstrips = (dynamic_cast<const StripTopology*>(&(gdu->topology())))->nstrips();
300  break;
301  }
302  //handle mono part of matched hits
303  //one could try to cast to SiStripMatchedRecHit2D but it is faster to look at the detid
304  else if((det_id - (*it)->geographicalId().rawId())==2) {
305  const SiStripMatchedRecHit2D* hit2D = dynamic_cast<const SiStripMatchedRecHit2D*>(&(**it));
306  if(!hit2D) continue; // this is a security that should never trigger
307  const SiStripRecHit2D* mono = hit2D->monoHit();
308  if(!mono) continue; // this is a security that should never trigger
309  if(!mono->isValid()) continue;
310  LogDebug("closestCluster") << " using the mono hit";
311  LocalPoint lp = mono->localPosition();
312  const GeomDetUnit* gdu = static_cast<const GeomDetUnit*>(tracker.idToDet(mono->geographicalId()));
313  MeasurementPoint p = gdu->topology().measurementPosition(lp);
314  hitStrip = p.x();
315  nstrips = (dynamic_cast<const StripTopology*>(&(gdu->topology())))->nstrips();
316  break;
317  }
318  */
319  }
320  LogDebug("closestCluster") << " hit strip = " << hitStrip;
321  if (hitStrip < 0)
322  return result;
323  if (homeMadeClusters_) {
324  // take the list of digis on the module
325  for (edm::DetSetVector<SiStripDigi>::const_iterator DSViter = hits.begin(); DSViter != hits.end(); DSViter++) {
326  if (DSViter->id == det_id) {
327  // loop from hitstrip-n to hitstrip+n (explorationWindow_) and select the highest strip
328  int minStrip = int(round(hitStrip)) - explorationWindow_;
329  minStrip = minStrip < 0 ? 0 : minStrip;
330  int maxStrip = int(round(hitStrip)) + explorationWindow_ + 1;
331  maxStrip = maxStrip >= nstrips ? nstrips - 1 : maxStrip;
332  edm::DetSet<SiStripDigi>::const_iterator rangeStart = DSViter->end();
333  edm::DetSet<SiStripDigi>::const_iterator rangeStop = DSViter->end();
334  for (edm::DetSet<SiStripDigi>::const_iterator digiIt = DSViter->begin(); digiIt != DSViter->end(); ++digiIt) {
335  if (digiIt->strip() >= minStrip && rangeStart == DSViter->end())
336  rangeStart = digiIt;
337  if (digiIt->strip() <= maxStrip)
338  rangeStop = digiIt;
339  }
340  if (rangeStart != DSViter->end()) {
341  if (rangeStop != DSViter->end())
342  ++rangeStop;
343  // build a fake cluster
344  LogDebug("closestCluster") << "build a fake cluster ";
345  SiStripCluster* newCluster =
346  new SiStripCluster(SiStripCluster::SiStripDigiRange(rangeStart, rangeStop)); // /!\ ownership transfered
347  result.first = newCluster;
348  result.second = fabs(newCluster->barycenter() - hitStrip);
349  }
350  break;
351  }
352  }
353  } else {
354  // loop on the detsetvector<cluster> to find the right one
355  for (edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter = clusters.begin(); DSViter != clusters.end();
356  DSViter++)
357  if (DSViter->id() == det_id) {
358  LogDebug("closestCluster") << " detset with the right detid. ";
361  //find the cluster close to the hitStrip
362  result.second = 1000.;
363  for (edmNew::DetSet<SiStripCluster>::const_iterator iter = begin; iter != end; ++iter) {
364  double dist = fabs(iter->barycenter() - hitStrip);
365  if (dist < result.second) {
366  result.second = dist;
367  result.first = &(*iter);
368  }
369  }
370  break;
371  }
372  }
373  return result;
374 }
375 
376 // ------------ method called to produce the data ------------
378  using namespace edm;
379  // Retrieve commissioning information from "event summary"
381  // iEvent.getByLabel( inputModuleLabel_, runsummary );
382  iEvent.getByToken(inputModuleToken_, runsummary);
383  if (runsummary->runType() == sistrip::APV_LATENCY)
384  mode_ = 2; // LatencyScan
385  else if (runsummary->runType() == sistrip::FINE_DELAY)
386  mode_ = 1; // DelayScan
387  else {
388  mode_ = 0; //unknown
389  return;
390  }
391 
392  if (noTracking_) {
393  produceNoTracking(iEvent, iSetup);
394  return;
395  }
396  event_ = &iEvent;
397  // container for the selected hits
398  std::vector<edm::DetSet<SiStripRawDigi> > output;
399  output.reserve(100);
400  // access the tracks
402  // iEvent.getByLabel(trackLabel_,trackCollection);
404  const reco::TrackCollection* tracks = trackCollection.product();
407  if (!tracks->empty()) {
408  anglefinder_->init(iEvent, iSetup);
409  LogDebug("produce") << "Found " << tracks->size() << " tracks.";
410  // look at the hits if one needs them
412  const edm::DetSetVector<SiStripDigi>* hitSet = nullptr;
413  if (homeMadeClusters_) {
414  // iEvent.getByLabel(digiLabel_,hits);
415  iEvent.getByToken(digiToken_, hits);
416  hitSet = hits.product();
417  }
418  // look at the clusters
420  // iEvent.getByLabel(clusterLabel_, clusters);
421  iEvent.getByToken(clustersToken_, clusters);
422  const edmNew::DetSetVector<SiStripCluster>* clusterSet = clusters.product();
423  // look at the trajectories if they are in the event
424  std::vector<Trajectory> trajVec;
426  // iEvent.getByLabel(trackLabel_,TrajectoryCollection);
428  trajVec = *(TrajectoryCollection.product());
429  // Get TrackerTopology
431  iSetup.get<TrackerTopologyRcd>().get(tTopo);
432  // loop on tracks
433  for (reco::TrackCollection::const_iterator itrack = tracks->begin(); itrack < tracks->end(); itrack++) {
434  // first check the track Pt
435  if ((itrack->px() * itrack->px() + itrack->py() * itrack->py() + itrack->pz() * itrack->pz()) < minTrackP2_)
436  continue;
437  // check that we have something in the layer we are interested in
438  std::vector<std::pair<uint32_t, std::pair<double, double> > > intersections;
439  if (mode_ == 1) {
440  // Retrieve and decode commissioning information from "event summary"
442  // iEvent.getByLabel( inputModuleLabel_, summary );
443  iEvent.getByToken(inputModuleToken_, summary);
444  uint32_t layerCode = (const_cast<SiStripEventSummary*>(summary.product())->layerScanned()) >> 16;
446  if (((layerCode >> 6) & 0x3) == 0)
447  subdet = StripSubdetector::TIB;
448  else if (((layerCode >> 6) & 0x3) == 1)
449  subdet = StripSubdetector::TOB;
450  else if (((layerCode >> 6) & 0x3) == 2)
451  subdet = StripSubdetector::TID;
452  else if (((layerCode >> 6) & 0x3) == 3)
453  subdet = StripSubdetector::TEC;
454  int32_t layerIdx = (layerCode & 0xF) * (((layerCode >> 4) & 0x3) ? -1 : 1);
455  intersections = detId(*tracker, tTopo.product(), &(*itrack), trajVec, subdet, layerIdx);
456  } else {
457  // for latency scans, no layer is specified -> no cut on detid
458  intersections = detId(*tracker, tTopo.product(), &(*itrack), trajVec);
459  }
460  LogDebug("produce") << " Found " << intersections.size() << " interesting intersections." << std::endl;
461  for (std::vector<std::pair<uint32_t, std::pair<double, double> > >::iterator it = intersections.begin();
462  it < intersections.end();
463  it++) {
464  std::pair<const SiStripCluster*, double> candidateCluster =
465  closestCluster(*tracker, &(*itrack), it->first, *clusterSet, *hitSet);
466  if (candidateCluster.first) {
467  LogDebug("produce") << " Found a cluster." << std::endl;
468  // cut on the distance
469  if (candidateCluster.second > maxClusterDistance_)
470  continue;
471  LogDebug("produce") << " The cluster is close enough." << std::endl;
472  // build the rawdigi corresponding to the leading strip and save it
473  // here, only the leading strip is retained. All other rawdigis in the module are set to 0.
474  const auto& amplitudes = candidateCluster.first->amplitudes();
475  uint8_t leadingCharge = 0;
476  uint8_t leadingStrip = candidateCluster.first->firstStrip();
477  uint8_t leadingPosition = 0;
478  for (auto amplit = amplitudes.begin(); amplit < amplitudes.end(); amplit++, leadingStrip++) {
479  if (leadingCharge < *amplit) {
480  leadingCharge = *amplit;
481  leadingPosition = leadingStrip;
482  }
483  }
484 
485  // look for an existing detset
486  std::vector<edm::DetSet<SiStripRawDigi> >::iterator newdsit = output.begin();
487  for (; newdsit != output.end() && newdsit->detId() != connectionMap_[it->first]; ++newdsit) {
488  }
489  // if there is no detset yet, create it.
490  if (newdsit == output.end()) {
492  output.push_back(newds);
493  newdsit = output.end() - 1;
494  }
495 
496  LogDebug("produce") << " New Hit... TOF:" << it->second.first << ", charge: " << int(leadingCharge)
497  << " at " << int(leadingPosition) << "." << std::endl
498  << "Angular correction: " << it->second.second << " giving a final value of "
499  << int(leadingCharge * fabs(it->second.second))
500  << " for fed key = " << connectionMap_[it->first] << " (detid=" << it->first << ")";
501  // apply corrections to the leading charge, but only if it has not saturated.
502  if (leadingCharge < 255) {
503  // correct the leading charge for the crossing angle
504  leadingCharge = uint8_t(leadingCharge * fabs(it->second.second));
505  // correct for module thickness for TEC and TOB
506  if ((((it->first >> 25) & 0x7f) == 0xd) ||
507  ((((it->first >> 25) & 0x7f) == 0xe) && (((it->first >> 5) & 0x7) > 4)))
508  leadingCharge = uint8_t((leadingCharge * 0.64));
509  }
510  //code the time of flight in the digi
511  unsigned int tof = abs(int(round(it->second.first * 10)));
512  tof = tof > 255 ? 255 : tof;
513  SiStripRawDigi newSiStrip(leadingCharge + (tof << 8));
514  newdsit->push_back(newSiStrip);
515  LogDebug("produce") << "New edm::DetSet<SiStripRawDigi> added.";
516  }
517  if (homeMadeClusters_)
518  delete candidateCluster.first; // we are owner of home-made clusters
519  }
520  }
521  }
522  // add the selected hits to the event.
523  LogDebug("produce") << "Putting " << output.size() << " new hits in the event.";
524  std::unique_ptr<edm::DetSetVector<SiStripRawDigi> > formatedOutput(new edm::DetSetVector<SiStripRawDigi>(output));
525  iEvent.put(std::move(formatedOutput), "FineDelaySelection");
526 }
527 
528 // Simple solution when tracking is not available/ not working
530  event_ = &iEvent;
531  // Get TrackerTopology
533  iSetup.get<TrackerTopologyRcd>().get(tTopo);
534  // container for the selected hits
535  std::vector<edm::DetSet<SiStripRawDigi> > output;
536  output.reserve(100);
537  // Retrieve and decode commissioning information from "event summary"
539  // iEvent.getByLabel( inputModuleLabel_, summary );
540  iEvent.getByToken(inputModuleToken_, summary);
541  uint32_t layerCode = (const_cast<SiStripEventSummary*>(summary.product())->layerScanned()) >> 16;
543  if (((layerCode >> 6) & 0x3) == 0)
544  subdet = StripSubdetector::TIB;
545  else if (((layerCode >> 6) & 0x3) == 1)
546  subdet = StripSubdetector::TOB;
547  else if (((layerCode >> 6) & 0x3) == 2)
548  subdet = StripSubdetector::TID;
549  else if (((layerCode >> 6) & 0x3) == 3)
550  subdet = StripSubdetector::TEC;
551  int32_t layerIdx = (layerCode & 0xF) * (((layerCode >> 4) & 0x3) ? -1 : 1);
552  DeviceMask mask = deviceMask(subdet, layerIdx, tTopo.product());
553  // look at the clusters
555  // iEvent.getByLabel(clusterLabel_,clusters);
556  iEvent.getByToken(clustersToken_, clusters);
557  for (edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter = clusters->begin(); DSViter != clusters->end();
558  DSViter++) {
559  // check that we are in the layer of interest
560  if (mode_ == 1 && ((DSViter->id() & mask.first) != mask.second))
561  continue;
562  // iterate over clusters
565  edm::DetSet<SiStripRawDigi> newds(connectionMap_[DSViter->id()]);
566  for (edmNew::DetSet<SiStripCluster>::const_iterator iter = begin; iter != end; ++iter) {
567  // build the rawdigi corresponding to the leading strip and save it
568  // here, only the leading strip is retained. All other rawdigis in the module are set to 0.
569  auto const& amplitudes = iter->amplitudes();
570  uint8_t leadingCharge = 0;
571  uint8_t leadingStrip = iter->firstStrip();
572  uint8_t leadingPosition = 0;
573  for (auto amplit = amplitudes.begin(); amplit < amplitudes.end(); amplit++, leadingStrip++) {
574  if (leadingCharge < *amplit) {
575  leadingCharge = *amplit;
576  leadingPosition = leadingStrip;
577  }
578  }
579  // apply some sanity cuts. This is needed since we don't use tracking to clean clusters
580  // 1.5< noise <8
581  // charge<250
582  // 50 > s/n > 10
583  edm::ESHandle<SiStripNoises> noiseHandle_;
584  iSetup.get<SiStripNoisesRcd>().get(noiseHandle_);
585  SiStripNoises::Range detNoiseRange = noiseHandle_->getRange(DSViter->id());
586  float noise = noiseHandle_->getNoise(leadingPosition, detNoiseRange);
587  if (noise < 1.5)
588  continue;
589  if (leadingCharge >= 250 || noise >= 8 || leadingCharge / noise > 50 || leadingCharge / noise < 10)
590  continue;
591  // apply some correction to the leading charge, but only if it has not saturated.
592  if (leadingCharge < 255) {
593  // correct for modulethickness for TEC and TOB
594  if ((((((DSViter->id()) >> 25) & 0x7f) == 0xd) || ((((DSViter->id()) >> 25) & 0x7f) == 0xe)) &&
595  ((((DSViter->id()) >> 5) & 0x7) > 4))
596  leadingCharge = uint8_t((leadingCharge * 0.64));
597  }
598  //code the time of flight == 0 in the digi
599  SiStripRawDigi newSiStrip(leadingCharge);
600  newds.push_back(newSiStrip);
601  }
602  //store into the detsetvector
603  output.push_back(newds);
604  LogDebug("produce") << "New edm::DetSet<SiStripRawDigi> added with fedkey = " << std::hex << std::setfill('0')
605  << std::setw(8) << connectionMap_[DSViter->id()] << std::dec;
606  }
607  // add the selected hits to the event.
608  LogDebug("produce") << "Putting " << output.size() << " new hits in the event.";
609  std::unique_ptr<edm::DetSetVector<SiStripRawDigi> > formatedOutput(new edm::DetSetVector<SiStripRawDigi>(output));
610  iEvent.put(std::move(formatedOutput), "FineDelaySelection");
611 }
612 
613 // ------------ method called once each job just before starting event loop ------------
615  // Retrieve FED cabling object
617  iSetup.get<SiStripFedCablingRcd>().get(cabling);
618  auto feds = cabling->fedIds();
619  for (auto fedid = feds.begin(); fedid < feds.end(); ++fedid) {
620  auto connections = cabling->fedConnections(*fedid);
621  for (std::vector<FedChannelConnection>::const_iterator conn = connections.begin(); conn < connections.end();
622  ++conn) {
623  /*
624  SiStripFedKey key(conn->fedId(),
625  SiStripFedKey::feUnit(conn->fedCh()),
626  SiStripFedKey::feChan(conn->fedCh()));
627  connectionMap_[conn->detId()] = key.key();
628  */
629  // the key is computed using an alternate formula for performance reasons.
630  connectionMap_[conn->detId()] = ((conn->fedId() & sistrip::invalid_) << 16) | (conn->fedCh() & sistrip::invalid_);
631  }
632  }
633 }
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
edm::DetSetVector< SiStripDigi >
Point2DBase
Definition: Point2DBase.h:9
l1tstage2emulator_dqm_sourceclient-live_cfg.feds
feds
Definition: l1tstage2emulator_dqm_sourceclient-live_cfg.py:153
TrackExtra.h
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
SiStripFineDelayTOF::trackParameters
static void trackParameters(const reco::Track &tk, double *trackParameters)
Definition: SiStripFineDelayTOF.cc:140
mps_fire.i
i
Definition: mps_fire.py:355
SiStripCluster::barycenter
float barycenter() const
Definition: SiStripCluster.cc:23
SiStripFineDelayTLA::init
void init(const edm::Event &e, const edm::EventSetup &c)
Definition: SiStripFineDelayTLA.cc:28
TrackerGeometry.h
GeomDet
Definition: GeomDet.h:27
SiStripFineDelayHit::minTrackP2_
double minTrackP2_
Definition: SiStripFineDelayHit.h:76
EDProducer.h
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
ESHandle.h
reco::Track::recHitsBegin
trackingRecHit_iterator recHitsBegin() const
Iterator to first hit on the track.
Definition: Track.h:88
edm::DetSet
Definition: DetSet.h:23
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:32
SiStripMatchedRecHit2DCollection.h
edm::Run
Definition: Run.h:45
edm
HLT enums.
Definition: AlignableModifier.h:19
SiStripFineDelayHit::noTracking_
bool noTracking_
Definition: SiStripFineDelayHit.h:75
SiStripEventSummary::runType
const sistrip::RunType & runType() const
Definition: SiStripEventSummary.h:218
TrackerTopology
Definition: TrackerTopology.h:16
SiStripFineDelayTLA.h
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
SiStripFineDelayTLA::findtrackangle
std::vector< std::pair< std::pair< DetId, LocalPoint >, float > > findtrackangle(const std::vector< Trajectory > &traj)
Definition: SiStripFineDelayTLA.cc:38
SiStripFineDelayTOF::timeOfFlight
static double timeOfFlight(bool cosmics, bool field, double *trackParameters, double *hit, double *phit, bool onDisk)
Definition: SiStripFineDelayTOF.cc:10
SiStripFineDelayHit::cosmic_
bool cosmic_
Definition: SiStripFineDelayHit.h:75
SiStripFedCabling.h
edmNew::DetSetVector::const_iterator
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
Definition: DetSetVectorNew.h:231
GeomDetType.h
SiStripCommissioningClient_cfg.conn
conn
Definition: SiStripCommissioningClient_cfg.py:5
GeomDet::topology
virtual const Topology & topology() const
Definition: GeomDet.cc:67
SiStripFineDelayHit::field_
bool field_
Definition: SiStripFineDelayHit.h:75
SiStripNoises.h
StripTopology.h
SiStripNoises::getRange
const Range getRange(const uint32_t detID) const
Definition: SiStripNoises.cc:34
TrackerTopology::tecDetId
DetId tecDetId(uint32_t side, uint32_t wheel, uint32_t petal_fw_bw, uint32_t petal, uint32_t ring, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:475
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
edm::Handle
Definition: AssociativeIterator.h:50
SiStripNoisesRcd
Definition: SiStripCondDataRecords.h:40
SiStripFineDelayHit::maxClusterDistance_
double maxClusterDistance_
Definition: SiStripFineDelayHit.h:76
end
#define end
Definition: vmac.h:39
sistrip::FINE_DELAY
Definition: ConstantsForRunType.h:85
MakerMacros.h
SiStripFedCablingRcd
Definition: SiStripCondDataRecords.h:22
SiStripRawDigi
A Digi for the silicon strip detector, containing only adc information, and suitable for storing raw ...
Definition: SiStripRawDigi.h:15
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
Track.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
TrackFwd.h
TrackerTopology::tibDetId
DetId tibDetId(uint32_t layer, uint32_t str_fw_bw, uint32_t str_int_ext, uint32_t str, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:495
SiStripNoises::Range
std::pair< ContainerIterator, ContainerIterator > Range
Definition: SiStripNoises.h:47
TrackerDigiGeometryRecord
Definition: TrackerDigiGeometryRecord.h:15
SiStripFineDelayHit::explorationWindow_
int explorationWindow_
Definition: SiStripFineDelayHit.h:78
reco::Track::recHitsEnd
trackingRecHit_iterator recHitsEnd() const
Iterator to last hit on the track.
Definition: Track.h:91
SiStripFineDelayHit::rechit
bool rechit(reco::Track *tk, uint32_t detId)
Definition: SiStripFineDelayHit.cc:249
reco::Track
Definition: Track.h:27
edm::ESHandle< TrackerGeometry >
SiStripFineDelayHit::deviceMask
DeviceMask deviceMask(const StripSubdetector::SubDetector subdet, const int substructure, const TrackerTopology *tkrTopo)
Definition: SiStripFineDelayHit.cc:115
SiStripFineDelayHit::closestCluster
std::pair< const SiStripCluster *, double > closestCluster(const TrackerGeometry &tracker, const reco::Track *tk, const uint32_t &detId, const edmNew::DetSetVector< SiStripCluster > &clusters, const edm::DetSetVector< SiStripDigi > &hits)
Definition: SiStripFineDelayHit.cc:260
StripSubdetector::TIB
static constexpr auto TIB
Definition: StripSubdetector.h:16
SiStripFineDelayHit::clustersToken_
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clustersToken_
Definition: SiStripFineDelayHit.h:84
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:528
Point3DBase< float, GlobalTag >
SiPixelRecHit.h
SiStripFineDelayHit::detId
std::vector< std::pair< uint32_t, std::pair< double, double > > > detId(const TrackerGeometry &tracker, const TrackerTopology *tkrTopo, const reco::Track *tk, const std::vector< Trajectory > &trajVec, const StripSubdetector::SubDetector subdet=StripSubdetector::TIB, const int substructure=0xff)
Definition: SiStripFineDelayHit.cc:148
SiStripFineDelayHit::homeMadeClusters_
bool homeMadeClusters_
Definition: SiStripFineDelayHit.h:75
edm::OwnVector::const_iterator
Definition: OwnVector.h:41
SiStripFineDelayHit::inputModuleToken_
edm::EDGetTokenT< SiStripEventSummary > inputModuleToken_
Definition: SiStripFineDelayHit.h:81
TrackerTopology::tobDetId
DetId tobDetId(uint32_t layer, uint32_t rod_fw_bw, uint32_t rod, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:521
bsc_activity_cfg.clusters
clusters
Definition: bsc_activity_cfg.py:36
PbPb_ZMuSkimMuonDPG_cff.tracker
tracker
Definition: PbPb_ZMuSkimMuonDPG_cff.py:60
runTauDisplay.gp
gp
Definition: runTauDisplay.py:431
SiStripFineDelayHit.h
TrackerDigiGeometryRecord.h
SiStripFineDelayHit::seedcollToken_
edm::EDGetTokenT< TrajectorySeedCollection > seedcollToken_
Definition: SiStripFineDelayHit.h:80
SiStripFineDelayHit::digiToken_
edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > digiToken_
Definition: SiStripFineDelayHit.h:83
SiStripFedKey.h
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:670
edm::ParameterSet
Definition: ParameterSet.h:36
duplicaterechits_cfi.trackCollection
trackCollection
Definition: duplicaterechits_cfi.py:4
Event.h
SiStripFineDelayHit::~SiStripFineDelayHit
~SiStripFineDelayHit() override
Definition: SiStripFineDelayHit.cc:106
edm::DetSetVector::const_iterator
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:102
SiStripFineDelayHit::DeviceMask
std::pair< uint32_t, uint32_t > DeviceMask
Definition: SiStripFineDelayHit.h:48
SiStripFineDelayHit::mode_
int mode_
Definition: SiStripFineDelayHit.h:77
hgcalDigitizer_cfi.noise
noise
Definition: hgcalDigitizer_cfi.py:150
SiStripFineDelayTLA
Definition: SiStripFineDelayTLA.h:19
event_
void event_()
createfilelist.int
int
Definition: createfilelist.py:10
iEvent
int iEvent
Definition: GenABIO.cc:224
edmLumisInFiles.summary
summary
Definition: edmLumisInFiles.py:39
SiStripFineDelayHit::anglefinder_
SiStripFineDelayTLA * anglefinder_
Definition: SiStripFineDelayHit.h:73
SiStripRecHit2DCollection.h
edm::EventSetup
Definition: EventSetup.h:57
Topology::measurementPosition
virtual MeasurementPoint measurementPosition(const LocalPoint &) const =0
sistrip::invalid_
static const uint16_t invalid_
Definition: Constants.h:16
TrackerTopology::tidDetId
DetId tidDetId(uint32_t side, uint32_t wheel, uint32_t ring, uint32_t module_fw_bw, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:508
PixelSLinkDataInputSource_cfi.fedid
fedid
Definition: PixelSLinkDataInputSource_cfi.py:6
get
#define get
reco::TrackBase::parameters
ParameterVector parameters() const
Track parameters with one-to-one correspondence to the covariance matrix.
Definition: TrackBase.h:678
InputTag.h
SiStripFineDelayHit::trackToken_
edm::EDGetTokenT< std::vector< Trajectory > > trackToken_
Definition: SiStripFineDelayHit.h:85
SiStripFineDelayHit::SiStripFineDelayHit
SiStripFineDelayHit(const edm::ParameterSet &)
Definition: SiStripFineDelayHit.cc:75
SiStripFineDelayHit::produceNoTracking
virtual void produceNoTracking(edm::Event &, const edm::EventSetup &)
Definition: SiStripFineDelayHit.cc:529
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Trajectory.h
GeomDet.h
edmNew::DetSetVector
Definition: DetSetNew.h:13
SiStripCluster::SiStripDigiRange
std::pair< SiStripDigiIter, SiStripDigiIter > SiStripDigiRange
Definition: SiStripCluster.h:12
eostools.move
def move(src, dest)
Definition: eostools.py:511
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
writedatasetfile.run
run
Definition: writedatasetfile.py:27
Ref.h
SiStripFineDelayHit::event_
const edm::Event * event_
Definition: SiStripFineDelayHit.h:74
StripSubdetector::TEC
static constexpr auto TEC
Definition: StripSubdetector.h:19
SiStripFineDelayHit::trackCollectionToken_
edm::EDGetTokenT< reco::TrackCollection > trackCollectionToken_
Definition: SiStripFineDelayHit.h:82
FedChannelConnection.h
ConstantsForRunType.h
Constants and enumerated type for sistrip::RunType.
DetId.h
Frameworkfwd.h
sistrip::APV_LATENCY
Definition: ConstantsForRunType.h:76
SiStripFineDelayHit::maxAngle_
double maxAngle_
Definition: SiStripFineDelayHit.h:76
StripSubdetector::TOB
static constexpr auto TOB
Definition: StripSubdetector.h:18
GlobalVector.h
SiStripFedCablingRcd.h
Pi
const double Pi
Definition: CosmicMuonParameters.h:18
SiStripFedCabling::fedIds
FedsConstIterRange fedIds() const
Definition: SiStripFedCabling.h:154
mps_fire.result
result
Definition: mps_fire.py:303
SiStripNoisesRcd.h
Candidate.h
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
edm::DetSet::end
iterator end()
Definition: DetSet.h:58
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
ParameterSet.h
SiStripFineDelayTOF.h
SiStripFineDelayHit::connectionMap_
std::map< uint32_t, uint32_t > connectionMap_
Definition: SiStripFineDelayHit.h:86
SiStripFineDelayHit::beginRun
void beginRun(const edm::Run &, const edm::EventSetup &) override
Definition: SiStripFineDelayHit.cc:614
reco::TrackBase::momentum
const Vector & momentum() const
track momentum vector
Definition: TrackBase.h:635
SiStripNoises::getNoise
static float getNoise(uint16_t strip, const Range &range)
Definition: SiStripNoises.h:71
SiStripFedCabling::fedConnections
ConnsConstIterRange fedConnections(uint16_t fed_id) const
Definition: SiStripFedCabling.cc:160
edm::Event
Definition: Event.h:73
SiStripSubdetector::Subdetector
Subdetector
Definition: SiStripEnums.h:5
TrajectoryCollection
std::vector< Trajectory > TrajectoryCollection
Definition: TrajectoryToSeedMap.h:17
LocalVector.h
SiStripCluster
Definition: SiStripCluster.h:9
GlobalPoint.h
Topology.h
StripSubdetector.h
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143
edm::InputTag
Definition: InputTag.h:15
begin
#define begin
Definition: vmac.h:32
reco::TrackCollection
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
StripSubdetector::TID
static constexpr auto TID
Definition: StripSubdetector.h:17
hit
Definition: SiStripHitEffFromCalibTree.cc:88
SiStripFineDelayHit::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: SiStripFineDelayHit.cc:377
TrackerGeometry
Definition: TrackerGeometry.h:14
edmNew::DetSet::const_iterator
const data_type * const_iterator
Definition: DetSetNew.h:31
edm::DetSet::const_iterator
collection_type::const_iterator const_iterator
Definition: DetSet.h:31