CMS 3D CMS Logo

MTDTrayBarrelLayer.cc
Go to the documentation of this file.
1 
13 
16 
17 #include "GeneralBinFinderInPhi.h"
18 #include "PhiBorderFinder.h"
19 
20 #include <algorithm>
21 #include <iostream>
22 
23 using namespace std;
24 
25 MTDTrayBarrelLayer::MTDTrayBarrelLayer(vector<const DetRod*>& rods)
26  : RodBarrelLayer(false), theRods(rods), theBinFinder(nullptr), isOverlapping(false) {
27  // Sort rods in phi
29 
30  theComponents.reserve(theRods.size());
31  std::copy(theRods.begin(), theRods.end(), back_inserter(theComponents));
32 
33  const std::string metname = "MTD|RecoMTD|RecoMTDDetLayers|MTDTrayBarrelLayer";
34 
35  // Cache chamber pointers (the basic components_)
36  for (vector<const DetRod*>::const_iterator it = rods.begin(); it != rods.end(); it++) {
37  vector<const GeomDet*> tmp2 = (*it)->basicComponents();
38  theBasicComps.insert(theBasicComps.end(), tmp2.begin(), tmp2.end());
39  }
40 
41  // Initialize the binfinder
44 
45  if (bf.isPhiPeriodic()) {
46  theBinFinder = new PeriodicBinFinderInPhi<double>(theRods.front()->position().phi(), theRods.size());
47  } else {
49  }
50 
51  // Compute the layer's surface and bounds (from the components())
53 
54  LogTrace(metname) << "Constructing MTDTrayBarrelLayer: " << basicComponents().size() << " Dets " << theRods.size()
55  << " Rods "
56  << " R: " << specificSurface().radius() << " Per.: " << bf.isPhiPeriodic()
57  << " Overl.: " << isOverlapping;
58 }
59 
61  delete theBinFinder;
62  for (vector<const DetRod*>::iterator i = theRods.begin(); i < theRods.end(); i++) {
63  delete *i;
64  }
65 }
66 
67 vector<GeometricSearchDet::DetWithState> MTDTrayBarrelLayer::compatibleDets(
68  const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const {
69  const std::string metname = "MTD|RecoMTD|RecoMTDDetLayers|MTDTrayBarrelLayer";
70  vector<DetWithState> result;
71 
72  LogTrace(metname) << "MTDTrayBarrelLayer::compatibleDets, Cyl R: " << specificSurface().radius()
73  << " TSOS at R= " << startingState.globalPosition().perp()
74  << " phi= " << startingState.globalPosition().phi();
75 
76  pair<bool, TrajectoryStateOnSurface> compat = compatible(startingState, prop, est);
77  if (!compat.first) {
78  LogTrace(metname) << " MTDTrayBarrelLayer::compatibleDets: not compatible"
79  << " (should not have been selected!)";
80  return vector<DetWithState>();
81  }
82 
83  TrajectoryStateOnSurface& tsos = compat.second;
84 
85  LogTrace(metname) << " MTDTrayBarrelLayer::compatibleDets, reached layer at: " << tsos.globalPosition()
86  << " R = " << tsos.globalPosition().perp() << " phi = " << tsos.globalPosition().phi();
87 
88  int closest = theBinFinder->binIndex(tsos.globalPosition().phi());
89  const DetRod* closestRod = theRods[closest];
90 
91  // Check the closest rod
92  LogTrace(metname) << " MTDTrayBarrelLayer::compatibleDets, closestRod: " << closest
93  << " phi : " << closestRod->surface().position().phi()
94  << " FTS phi: " << tsos.globalPosition().phi();
95 
96  result = closestRod->compatibleDets(tsos, prop, est);
97 
98 #ifdef EDM_ML_DEBUG
99  int nclosest = result.size(); // Debug counter
100 #endif
101 
102  bool checknext = false;
103  double dist;
104 
105  if (!result.empty()) {
106  // Check if the track go outside closest rod, then look for closest.
107  TrajectoryStateOnSurface& predictedState = result.front().second;
108  float xErr = xError(predictedState, est);
109  float halfWid = closestRod->surface().bounds().width() / 2.;
110  dist = predictedState.localPosition().x();
111 
112  // If the layer is overlapping, additionally reduce halfWid by 10%
113  // to account for overlap.
114  // FIXME: should we account for the real amount of overlap?
115  if (isOverlapping)
116  halfWid *= 0.9;
117 
118  if (fabs(dist) + xErr > halfWid) {
119  checknext = true;
120  }
121  } else { // Rod is not compatible
122  //FIXME: Usually next cannot be either. Implement proper logic.
123  // (in general at least one rod should be when this method is called by
124  // compatibleDets() which calls compatible())
125  checknext = true;
126 
127  // Look for the next-to closest in phi.
128  // Note Geom::Phi, subtraction is pi-border-safe
129  if (tsos.globalPosition().phi() - closestRod->surface().position().phi() > 0.) {
130  dist = -1.;
131  } else {
132  dist = +1.;
133  }
134 
135  LogTrace(metname) << " MTDTrayBarrelLayer::fastCompatibleDets, none on closest rod!";
136  }
137 
138  if (checknext) {
139  int next;
140  if (dist < 0.)
141  next = closest + 1;
142  else
143  next = closest - 1;
144 
145  next = theBinFinder->binIndex(next); // Bin Periodicity
146  const DetRod* nextRod = theRods[next];
147 
148  LogTrace(metname) << " MTDTrayBarrelLayer::fastCompatibleDets, next-to closest"
149  << " rod: " << next << " dist " << dist << " phi : " << nextRod->surface().position().phi()
150  << " FTS phi: " << tsos.globalPosition().phi();
151 
152  vector<DetWithState> nextRodDets = nextRod->compatibleDets(tsos, prop, est);
153  result.insert(result.end(), nextRodDets.begin(), nextRodDets.end());
154  }
155 
156 #ifdef EDM_ML_DEBUG
157  LogTrace(metname) << " MTDTrayBarrelLayer::fastCompatibleDets: found: " << result.size()
158  << " on closest: " << nclosest << " # checked rods: " << 1 + int(checknext);
159 #endif
160 
161  return result;
162 }
163 
165  const Propagator& prop,
166  const MeasurementEstimator& est) const {
167  // FIXME should return only 1 group
168  cout << "dummy implementation of MTDTrayBarrelLayer::groupedCompatibleDets()" << endl;
169  return vector<DetGroup>();
170 }
171 
173 
174 const vector<const GeometricSearchDet*>& MTDTrayBarrelLayer::components() const { return theComponents; }
175 
177  const float nSigmas = 3.f;
178  if (tsos.hasError()) {
179  return nSigmas * sqrt(tsos.localError().positionError().xx());
180  } else
181  return nSigmas * 0.5;
182 }
float xx() const
Definition: LocalError.h:22
T perp() const
Definition: PV3DBase.h:69
virtual int binIndex(T pos) const =0
Return the index of bin at given position.
virtual void initialize()
const BoundSurface & surface() const final
The surface of the GeometricSearchDet.
Definition: DetRod.h:19
const std::string metname
MTDTrayBarrelLayer(std::vector< const DetRod * > &rods)
Constructor, takes ownership of pointers.
std::vector< const DetRod * > theRods
#define nullptr
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
GlobalPoint globalPosition() const
~MTDTrayBarrelLayer() override
const Bounds & bounds() const
Definition: Surface.h:89
T1 phi() const
Definition: Phi.h:78
LocalError positionError() const
virtual std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
SubDetector subDetector() const override
virtual float width() const =0
std::vector< const GeomDet * > theBasicComps
float xError(const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const
T sqrt(T t)
Definition: SSEVec.h:19
const std::vector< const GeometricSearchDet * > & components() const override
const LocalTrajectoryError & localError() const
#define LogTrace(id)
bool isPhiPeriodic() const
Returns true if the Dets are periodic in phi.
Definition: DetRod.h:13
void precomputed_value_sort(RandomAccessIterator begin, RandomAccessIterator end, const Extractor &extr, const Compare &comp)
BaseBinFinder< double > * theBinFinder
const std::vector< const GeomDet * > & basicComponents() const override
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
bool isPhiOverlapping() const
Returns true if any 2 of the Det overlap in phi.
T x() const
Definition: PV3DBase.h:59
const PositionType & position() const
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
std::vector< const GeometricSearchDet * > theComponents