CMS 3D CMS Logo

CSCRecHitDBuilder.cc
Go to the documentation of this file.
1 // This is CSCRecHitDBuilder.cc
2 
9 
14 
16 
23 
26 
27 #include <iostream>
28 #include <cassert>
29 
31  // Receives ParameterSet percolated down from EDProducer
32 
33  useCalib = ps.getParameter<bool>("CSCUseCalibrations");
34  stripWireDeltaT = ps.getParameter<int>("CSCstripWireDeltaTime");
35 
38  make2DHits_ = new CSCMake2DRecHit(ps);
39 }
40 
42  delete hitsFromStripOnly_;
43  delete hitsFromWireOnly_;
44  delete make2DHits_;
45 }
46 
48  const CSCWireDigiCollection* wiredc,
50  LogTrace("CSCRecHitDBuilder") << "[CSCRecHitDBuilder] build entered";
51 
52  if (!geom_)
53  throw cms::Exception("MissingGeometry") << "[CSCRecHitDBuilder::getLayer] Missing geometry" << std::endl;
54 
55  // create 2-D hits by looking at superposition of strip and wire hit in a layer
56  //
57  // N.B. I've sorted the hits from layer 1-6 always, so can test if there are "holes",
58  // that is layers without hits for a given chamber.
59 
60  int layer_idx = 0;
61  CSCDetId old_id;
62 
63  for (CSCStripDigiCollection::DigiRangeIterator it = stripdc->begin(); it != stripdc->end(); ++it) {
64  const CSCDetId& id = (*it).first;
65  const CSCLayer* layer = getLayer(id);
66  const CSCStripDigiCollection::Range& rstripd = (*it).second;
67 
68  // Skip if no strip digis in this layer
69  if (rstripd.second == rstripd.first)
70  continue;
71 
72  const CSCDetId& sDetId = id;
73 
74  // This is used to test for gaps in layers and needs to be initialized here
75  if (layer_idx == 0) {
76  old_id = sDetId;
77  }
78 
79  CSCDetId compId = sDetId;
80  CSCWireDigiCollection::Range rwired = wiredc->get(sDetId);
81  // Skip if no wire digis in this layer
82  // But for ME11, real wire digis are labelled as belonging to ME1b, so that's where ME1a must look
83  // (We try ME1a - above - anyway, because simulated wire digis are labelled as ME1a.)
84  if (rwired.second == rwired.first) {
85  if (sDetId.station() != 1 || sDetId.ring() != 4) {
86  continue; // not ME1a, skip to next layer
87  }
88  // So if ME1a has no wire digis (always the case for data) make the
89  // wire digi ID point to ME1b. This is what is compared to the
90  // strip digi ID below (and not used anywhere else).
91  // Later, rechits use the strip digi ID for construction.
92 
93  // It is ME1a but no wire digis there, so try ME1b...
94  int endcap = sDetId.endcap();
95  int chamber = sDetId.chamber();
96  int layer = sDetId.layer();
97  CSCDetId idw(endcap, 1, 1, chamber, layer); // Set idw to same layer in ME1b
98  compId = idw;
99  rwired = wiredc->get(compId);
100  }
101 
102  // Fill bad channel bitsets for this layer
104 
105  // Build strip hits for this layer
106  std::vector<CSCStripHit> const& cscStripHit = hitsFromStripOnly_->runStrip(id, layer, rstripd);
107 
108  if (cscStripHit.empty())
109  continue;
110 
111  // now build collection of wire only hits !
112  std::vector<CSCWireHit> const& cscWireHit = hitsFromWireOnly_->runWire(compId, layer, rwired);
113 
114  // Build 2D hit for all possible strip-wire pairs
115  // overlapping within this layer
116 
117  LogTrace("CSCRecHitBuilder") << "[CSCRecHitDBuilder] found " << cscStripHit.size() << " strip and "
118  << cscWireHit.size() << " wire hits in layer " << sDetId;
119 
120  // Vector to store rechit within layer
121  std::vector<CSCRecHit2D> hitsInLayer;
122  unsigned int hits_in_layer = 0;
123 
124  for (auto const& s_hit : cscStripHit) {
125  for (auto const& w_hit : cscWireHit) {
126  CSCRecHit2D rechit = make2DHits_->hitFromStripAndWire(sDetId, layer, w_hit, s_hit);
127  // Store rechit as a Local Point:
128  LocalPoint rhitlocal = rechit.localPosition();
129  float yreco = rhitlocal.y();
130  bool isInFiducial = false;
131  //in me1/1 chambers the strip cut region is at local y = 30 cm, +-5 cm area around it proved to be a suitabla region for omiting the check
132  if ((sDetId.station() == 1) && (sDetId.ring() == 1 || sDetId.ring() == 4) && (fabs(yreco + 30.) < 5.)) {
133  isInFiducial = true;
134  } else {
135  isInFiducial = make2DHits_->isHitInFiducial(layer, rechit);
136  }
137  if (isInFiducial) {
138  hitsInLayer.push_back(rechit);
139  hits_in_layer++;
140  }
141  }
142  }
143 
144  LogTrace("CSCRecHitDBuilder") << "[CSCRecHitDBuilder] " << hits_in_layer << " rechits found in layer " << sDetId;
145 
146  // output vector of 2D rechits to collection
147  if (hits_in_layer > 0) {
148  oc.put(sDetId, hitsInLayer.begin(), hitsInLayer.end());
149  }
150  layer_idx++;
151  old_id = sDetId;
152  }
153 
154  LogTrace("CSCRecHitDBuilder") << "[CSCRecHitDBuilder] " << oc.size() << " 2d rechits created in this event.";
155 }
156 
158 
164 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
const CSCGeometry * geom_
void setConditions(CSCRecoConditions *reco)
std::vector< CSCStripHit > runStrip(const CSCDetId &id, const CSCLayer *layer, const CSCStripDigiCollection::Range &rstripd)
int layer() const
Definition: CSCDetId.h:56
void setConditions(const CSCRecoConditions *reco)
Pass pointer to conditions data onwards.
const CSCLayer * getLayer(const CSCDetId &detId)
#define LogTrace(id)
void build(const CSCStripDigiCollection *stripds, const CSCWireDigiCollection *wireds, CSCRecHit2DCollection &oc)
T y() const
Definition: PV3DBase.h:60
void setConditions(const CSCRecoConditions *reco)
void fillBadChannelWords(const CSCDetId &id)
fill bad strip & bad wiregroup bitsets from conditions data
CSCHitFromWireOnly * hitsFromWireOnly_
CSCRecoConditions * recoConditions_
int chamber() const
Definition: CSCDetId.h:62
bool isHitInFiducial(const CSCLayer *layer, const CSCRecHit2D &rh)
Test if rechit is in fiducial volume.
CSCHitFromStripOnly * hitsFromStripOnly_
LocalPoint localPosition() const override
Definition: CSCRecHit2D.h:56
int station() const
Definition: CSCDetId.h:79
std::vector< CSCWireHit > runWire(const CSCDetId &id, const CSCLayer *layer, const CSCWireDigiCollection::Range &rwired)
std::pair< const_iterator, const_iterator > Range
CSCRecHitDBuilder(const edm::ParameterSet &ps)
int endcap() const
Definition: CSCDetId.h:85
CSCRecHit2D hitFromStripAndWire(const CSCDetId &id, const CSCLayer *layer, const CSCWireHit &wHit, const CSCStripHit &sHit)
Make 2D hits when have both wire and strip hit available in same layer.
void setConditions(const CSCRecoConditions *reco)
CSCMake2DRecHit * make2DHits_
fixed size matrix
int ring() const
Definition: CSCDetId.h:68
const CSCLayer * layer(CSCDetId id) const
Return the layer corresponding to given DetId.
Definition: CSCGeometry.cc:105