CMS 3D CMS Logo

CompositeTECPetal.cc
Go to the documentation of this file.
1 #include "CompositeTECPetal.h"
2 
4 
6 #include "LayerCrossingSide.h"
7 #include "DetGroupMerger.h"
9 
13 
14 #include "TkDetUtil.h"
16 
17 #include <algorithm>
18 #include <functional>
19 #include <iterator>
20 #include <numeric>
21 
22 using namespace std;
23 
25 
26 namespace {
27  namespace details {
28 
29  struct Mean {
30  float operator()(const GeometricSearchDet* a, const GeometricSearchDet* b) const {
31  return 0.5 * (b->position().perp() + a->position().perp());
32  }
33  float operator()(float a, float b) const { return 0.5 * (b + a); }
34  };
35 
36  void fillBoundaries(std::vector<const TECWedge*> const& dets, std::vector<float>& boundaries) {
37  boundaries.resize(dets.size());
38  std::transform(dets.begin(),
39  dets.end(),
40  boundaries.begin(),
41  std::bind(&GlobalPoint::perp, std::bind(&GeometricSearchDet::position, std::placeholders::_1)));
42  std::adjacent_difference(boundaries.begin(), boundaries.end(), boundaries.begin(), Mean());
43  }
44 
45  inline int findBin(std::vector<float> const& boundaries, float r) {
46  return std::lower_bound(boundaries.begin() + 1, boundaries.end(), r) - boundaries.begin() - 1;
47  }
48 
49  void fillPars(std::vector<const TECWedge*> const& dets, std::vector<CompositeTECPetal::WedgePar>& pars) {
50  for (auto gsdet : dets) {
51  const BoundDiskSector& wedgeSector = static_cast<const BoundDiskSector&>(gsdet->surface());
52  float wedgeMinZ = std::abs(wedgeSector.position().z()) - 0.5 * wedgeSector.bounds().thickness();
53  float wedgeMaxZ = std::abs(wedgeSector.position().z()) + 0.5 * wedgeSector.bounds().thickness();
54  float thetaWedgeMin = wedgeSector.innerRadius() / wedgeMaxZ;
55  float thetaWedgeMax = wedgeSector.outerRadius() / wedgeMinZ;
56  CompositeTECPetal::WedgePar apar = {gsdet->position().perp(), thetaWedgeMin, thetaWedgeMax};
57  pars.push_back(apar);
58  }
59  }
60 
61  inline bool overlap(const GlobalPoint& gpos, const CompositeTECPetal::WedgePar& wpar, float ymax) {
62  // this method is just a duplication of overlapInR
63  // adapeted for groupedCompatibleDets() needs
64 
65  // assume "fixed theta window", i.e. margin in local y = r is changing linearly with z
66  auto tsRadius = gpos.perp();
67  auto rmin = std::max(0.f, tsRadius - ymax);
68  auto zmax = std::abs(gpos.z()) + 10.f; // add 10 cm contingency
69  auto rmax = (tsRadius + ymax);
70  auto zmin = std::abs(gpos.z()) - 10.f;
71 
72  // do the theta regions overlap ?
73 
74  return !((rmin > zmax * wpar.thetaMax) | (zmin * wpar.thetaMin > rmax));
75  }
76 
77  } // namespace details
78 } // namespace
79 
80 CompositeTECPetal::CompositeTECPetal(vector<const TECWedge*>& innerWedges, vector<const TECWedge*>& outerWedges)
81  : GeometricSearchDet(true), theFrontComps(innerWedges), theBackComps(outerWedges) {
82  theComps.assign(theFrontComps.begin(), theFrontComps.end());
83  theComps.insert(theComps.end(), theBackComps.begin(), theBackComps.end());
84 
85  details::fillBoundaries(theFrontComps, theFrontBoundaries);
86  details::fillBoundaries(theBackComps, theBackBoundaries);
87  details::fillPars(theFrontComps, theFrontPars);
88  details::fillPars(theBackComps, theBackPars);
89 
90  for (vector<const GeometricSearchDet*>::const_iterator it = theComps.begin(); it != theComps.end(); it++) {
91  theBasicComps.insert(theBasicComps.end(), (**it).basicComponents().begin(), (**it).basicComponents().end());
92  }
93 
94  //the Wedge are already R ordered
95  //sort( theWedges.begin(), theWedges.end(), DetLessR());
96  //sort( theFrontWedges.begin(), theFrontWedges.end(), DetLessR() );
97  //sort( theBackWedges.begin(), theBackWedges.end(), DetLessR() );
98  vector<const TECWedge*> allWedges;
99  allWedges.assign(innerWedges.begin(), innerWedges.end());
100  allWedges.insert(allWedges.end(), outerWedges.begin(), outerWedges.end());
101 
105 
106  //--------- DEBUG INFO --------------
107  LogDebug("TkDetLayers") << "DEBUG INFO for CompositeTECPetal";
108 
109  for (auto it = theFrontComps.begin(); it != theFrontComps.end(); it++) {
110  LogDebug("TkDetLayers") << "frontWedge phi,z,r: " << (*it)->surface().position().phi() << " , "
111  << (*it)->surface().position().z() << " , " << (*it)->surface().position().perp();
112  }
113 
114  for (auto it = theBackComps.begin(); it != theBackComps.end(); it++) {
115  LogDebug("TkDetLayers") << "backWedge phi,z,r: " << (*it)->surface().position().phi() << " , "
116  << (*it)->surface().position().z() << " , " << (*it)->surface().position().perp();
117  }
118  //-----------------------------------
119 }
120 
122  vector<const GeometricSearchDet*>::const_iterator i;
123  for (i = theComps.begin(); i != theComps.end(); i++) {
124  delete *i;
125  }
126 }
127 
128 pair<bool, TrajectoryStateOnSurface> CompositeTECPetal::compatible(const TrajectoryStateOnSurface& ts,
129  const Propagator&,
130  const MeasurementEstimator&) const {
131  edm::LogError("TkDetLayers") << "temporary dummy implementation of CompositeTECPetal::compatible()!!";
132  return pair<bool, TrajectoryStateOnSurface>();
133 }
134 
136  const Propagator& prop,
137  const MeasurementEstimator& est,
138  std::vector<DetGroup>& result) const {
139  vector<DetGroup> closestResult;
140  SubLayerCrossings crossings;
141  crossings = computeCrossings(tsos, prop.propagationDirection());
142  if (!crossings.isValid())
143  return;
144 
145  addClosest(tsos, prop, est, crossings.closest(), closestResult);
146  LogDebug("TkDetLayers") << "in TECPetal, closestResult.size(): " << closestResult.size();
147 
148  if (closestResult.empty()) {
149  vector<DetGroup> nextResult;
150  addClosest(tsos, prop, est, crossings.other(), nextResult);
151  LogDebug("TkDetLayers") << "in TECPetal, nextResult.size(): " << nextResult.size();
152  if (nextResult.empty())
153  return;
154 
155  DetGroupElement nextGel(nextResult.front().front());
156  int crossingSide = LayerCrossingSide::endcapSide(nextGel.trajectoryState(), prop);
158  std::move(closestResult), std::move(nextResult), result, crossings.closestIndex(), crossingSide);
159  } else {
160  DetGroupElement closestGel(closestResult.front().front());
161  float window = computeWindowSize(closestGel.det(), closestGel.trajectoryState(), est);
162 
163  searchNeighbors(tsos, prop, est, crossings.closest(), window, closestResult, false);
164 
165  vector<DetGroup> nextResult;
166  searchNeighbors(tsos, prop, est, crossings.other(), window, nextResult, true);
167 
168  int crossingSide = LayerCrossingSide::endcapSide(closestGel.trajectoryState(), prop);
170  std::move(closestResult), std::move(nextResult), result, crossings.closestIndex(), crossingSide);
171  }
172 }
173 
175  PropagationDirection propDir) const {
176  HelixPlaneCrossing::PositionType startPos(startingState.globalPosition());
177  HelixPlaneCrossing::DirectionType startDir(startingState.globalMomentum());
178 
179  auto rho = startingState.transverseCurvature();
180 
181  HelixForwardPlaneCrossing crossing(startPos, startDir, rho, propDir);
182 
183  pair<bool, double> frontPath = crossing.pathLength(*theFrontSector);
184  if (!frontPath.first)
185  return SubLayerCrossings();
186 
187  pair<bool, double> backPath = crossing.pathLength(*theBackSector);
188  if (!backPath.first)
189  return SubLayerCrossings();
190 
191  GlobalPoint gFrontPoint(crossing.position(frontPath.second));
192  GlobalPoint gBackPoint(crossing.position(backPath.second));
193 
194  LogDebug("TkDetLayers") << "in TECPetal,front crossing : r,z,phi: (" << gFrontPoint.perp() << "," << gFrontPoint.z()
195  << "," << gFrontPoint.phi() << ")";
196 
197  LogDebug("TkDetLayers") << "in TECPetal,back crossing r,z,phi: (" << gBackPoint.perp() << "," << gBackPoint.z() << ","
198  << gBackPoint.phi() << ")";
199 
200  int frontIndex = findBin(gFrontPoint.perp(), 0);
201  SubLayerCrossing frontSLC(0, frontIndex, gFrontPoint);
202 
203  int backIndex = findBin(gBackPoint.perp(), 1);
204  SubLayerCrossing backSLC(1, backIndex, gBackPoint);
205 
206  auto frontDist = std::abs(theFrontPars[frontIndex].theR - gFrontPoint.perp());
207  auto backDist = std::abs(theBackPars[backIndex].theR - gBackPoint.perp());
208 
209  // 0ss: frontDisk has index=0, backDisk has index=1
210  if (frontDist < backDist) {
211  return SubLayerCrossings(frontSLC, backSLC, 0);
212  } else {
213  return SubLayerCrossings(backSLC, frontSLC, 1);
214  }
215 }
216 
218  const Propagator& prop,
219  const MeasurementEstimator& est,
220  const SubLayerCrossing& crossing,
221  vector<DetGroup>& result) const {
222  auto det = subLayer(crossing.subLayerIndex())[crossing.closestDetIndex()];
223 
224  LogDebug("TkDetLayers") << "in TECPetal, adding Wedge at r,z,phi: (" << det->position().perp() << ","
225  << det->position().z() << "," << det->position().phi() << ")";
226  LogDebug("TkDetLayers") << "wedge comps size: " << det->basicComponents().size();
227 
228  return CompatibleDetToGroupAdder::add(*det, tsos, prop, est, result);
229 }
230 
232  const Propagator& prop,
233  const MeasurementEstimator& est,
234  const SubLayerCrossing& crossing,
235  float window,
236  vector<DetGroup>& result,
237  bool checkClosest) const {
238  const GlobalPoint& gCrossingPos = crossing.position();
239 
240  int closestIndex = crossing.closestDetIndex();
241  int negStartIndex = closestIndex - 1;
242  int posStartIndex = closestIndex + 1;
243 
244  float detR = findPar(closestIndex, crossing.subLayerIndex()).theR;
245 
246  if (checkClosest) { // must decide if the closest is on the neg or pos side
247  if (gCrossingPos.perp2() < detR * detR) {
248  posStartIndex = closestIndex;
249  } else {
250  negStartIndex = closestIndex;
251  }
252  }
253 
254  const std::vector<const TECWedge*>& sLayer = subLayer(crossing.subLayerIndex());
255 
256  //const BinFinderType& binFinder = (crossing.subLayerIndex()==0 ? theFrontBinFinder : theBackBinFinder);
257  int theSize = crossing.subLayerIndex() == 0 ? theFrontComps.size() : theBackComps.size();
258 
259  typedef CompatibleDetToGroupAdder Adder;
260  for (int idet = negStartIndex; idet >= 0; idet--) {
261  //if(idet<0 || idet>= theSize) {edm::LogInfo(TkDetLayers) << "===== error! gone out vector bounds.idet: " << idet ;exit;}
262  const GeometricSearchDet& neighborWedge = *sLayer[idet];
263  WedgePar const& wpar = findPar(idet, crossing.subLayerIndex());
264  if (!details::overlap(gCrossingPos, wpar, window))
265  break; // --- to check
266  if (!Adder::add(neighborWedge, tsos, prop, est, result))
267  break;
268  // maybe also add shallow crossing angle test here???
269  }
270  for (int idet = posStartIndex; idet < theSize; idet++) {
271  //if(idet<0 || idet>= theSize) {edm::LogInfo(TkDetLayers) << "===== error! gone out vector bounds.idet: " << idet ;exit;}
272  const GeometricSearchDet& neighborWedge = *sLayer[idet];
273  WedgePar const& wpar = findPar(idet, crossing.subLayerIndex());
274  if (!details::overlap(gCrossingPos, wpar, window))
275  break; // ---- to check
276  if (!Adder::add(neighborWedge, tsos, prop, est, result))
277  break;
278  // maybe also add shallow crossing angle test here???
279  }
280 }
281 
283  const TrajectoryStateOnSurface& tsos,
284  const MeasurementEstimator& est) {
285  return est.maximalLocalDisplacement(tsos, det->surface()).y();
286 }
287 
288 int CompositeTECPetal::findBin(float R, int diskSectorType) const {
289  return details::findBin(diskSectorType == 0 ? theFrontBoundaries : theBackBoundaries, R);
290 }
SubLayerCrossing::position
const GlobalPoint & position() const
Definition: SubLayerCrossings.h:14
BoundDiskSector::bounds
DiskSectorBounds const & bounds() const
Definition: BoundDiskSector.h:18
MeasurementEstimator
Definition: MeasurementEstimator.h:19
SubLayerCrossings::isValid
bool isValid()
Definition: SubLayerCrossings.h:28
DDAxes::y
mps_fire.i
i
Definition: mps_fire.py:428
MessageLogger.h
CompositeTECPetal::theBasicComps
std::vector< const GeomDet * > theBasicComps
Definition: CompositeTECPetal.h:85
GeomDet
Definition: GeomDet.h:27
CompositeTECPetal::groupedCompatibleDetsV
void groupedCompatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const override __attribute__((hot))
Definition: CompositeTECPetal.cc:135
LayerCrossingSide.h
CompositeTECPetal::theBackSector
ReferenceCountingPointer< BoundDiskSector > theBackSector
Definition: CompositeTECPetal.h:97
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
SubLayerCrossings::closestIndex
int closestIndex() const
Definition: SubLayerCrossings.h:31
VectorUtil.h
CompositeTECPetal::theFrontPars
std::vector< WedgePar > theFrontPars
Definition: CompositeTECPetal.h:93
TrajectoryStateOnSurface::globalPosition
GlobalPoint globalPosition() const
Definition: TrajectoryStateOnSurface.h:65
CompositeTECPetal.h
svgfig.window
def window(xmin, xmax, ymin, ymax, x=0, y=0, width=100, height=100, xlogbase=None, ylogbase=None, minusInfinity=-1000, flipx=False, flipy=True)
Definition: svgfig.py:643
TrajectoryStateOnSurface::transverseCurvature
double transverseCurvature() const
Definition: TrajectoryStateOnSurface.h:70
GeometricSearchDet::position
virtual const Surface::PositionType & position() const
Returns position of the surface.
Definition: GeometricSearchDet.h:31
SiStripMonitorCluster_cfi.zmin
zmin
Definition: SiStripMonitorCluster_cfi.py:200
CompositeTECPetal::subLayer
const std::vector< const TECWedge * > & subLayer(int ind) const
Definition: CompositeTECPetal.h:80
Mean
Definition: SiPixelActionExecutor.h:17
CompositeTECPetal::findBin
int findBin(float R, int layer) const
Definition: CompositeTECPetal.cc:288
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
Propagator
Definition: Propagator.h:44
GeomDet::surface
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
DetLayerException.h
L1TOccupancyClient_cfi.ymax
ymax
Definition: L1TOccupancyClient_cfi.py:43
LayerCrossingSide::endcapSide
static int endcapSide(const TrajectoryStateOnSurface &startingState, const Propagator &prop)
Definition: LayerCrossingSide.h:31
SiStripMonitorCluster_cfi.zmax
zmax
Definition: SiStripMonitorCluster_cfi.py:201
MeasurementEstimator.h
Propagator::propagationDirection
virtual PropagationDirection propagationDirection() const final
Definition: Propagator.h:139
CompositeTECPetal::theFrontComps
std::vector< const TECWedge * > theFrontComps
Definition: CompositeTECPetal.h:88
details
Definition: helper.h:56
HcalDetIdTransform::transform
unsigned transform(const HcalDetId &id, unsigned transformCode)
Definition: HcalDetIdTransform.cc:7
DetGroupMerger.h
Point3DBase< float, GlobalTag >
b
double b
Definition: hdecay.h:118
DDAxes::rho
DetGroupMerger::orderAndMergeTwoLevels
static void orderAndMergeTwoLevels(std::vector< DetGroup > &&one, std::vector< DetGroup > &&two, std::vector< DetGroup > &result, int firstIndex, int firstCrossed)
Definition: DetGroupMerger.cc:6
TkDetUtil.h
CompositeTECPetal::theFrontSector
ReferenceCountingPointer< BoundDiskSector > theFrontSector
Definition: CompositeTECPetal.h:96
CompositeTECPetal::CompositeTECPetal
CompositeTECPetal(std::vector< const TECWedge * > &innerWedges, std::vector< const TECWedge * > &outerWedges) __attribute__((cold))
Definition: CompositeTECPetal.cc:80
funct::true
true
Definition: Factorize.h:173
CompositeTECPetal::~CompositeTECPetal
~CompositeTECPetal() override __attribute__((cold))
Definition: CompositeTECPetal.cc:121
pfDeepBoostedJetPreprocessParams_cfi.lower_bound
lower_bound
Definition: pfDeepBoostedJetPreprocessParams_cfi.py:15
CompatibleDetToGroupAdder::add
static bool add(const GeometricSearchDet &det, const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) __attribute__((hot))
Definition: CompatibleDetToGroupAdder.cc:7
SubLayerCrossings::closest
const SubLayerCrossing & closest() const
Definition: SubLayerCrossings.h:29
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:233
a
double a
Definition: hdecay.h:119
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
PVValHelper::add
void add(std::map< std::string, TH1 * > &h, TH1 *hist)
Definition: PVValidationHelpers.cc:12
CompositeTECPetal::findPar
WedgePar const & findPar(int index, int diskSectorType) const
Definition: CompositeTECPetal.h:76
CompositeTECPetal::theComps
std::vector< const GeometricSearchDet * > theComps
Definition: CompositeTECPetal.h:86
SubLayerCrossing::closestDetIndex
int closestDetIndex() const
Definition: SubLayerCrossings.h:13
CompositeTECPetal::theBackComps
std::vector< const TECWedge * > theBackComps
Definition: CompositeTECPetal.h:89
muon::overlap
bool overlap(const reco::Muon &muon1, const reco::Muon &muon2, double pullX=1.0, double pullY=1.0, bool checkAdjacentChambers=false)
Definition: MuonSelectors.cc:791
DetGroupElement
Definition: DetGroup.h:10
ForwardDiskSectorBuilderFromWedges
Definition: ForwardDiskSectorBuilderFromWedges.h:15
CompositeTECPetal::computeCrossings
SubLayerCrossings computeCrossings(const TrajectoryStateOnSurface &tsos, PropagationDirection propDir) const __attribute__((hot))
Definition: CompositeTECPetal.cc:174
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
GeometricSearchDet::DetWithState
std::pair< const GeomDet *, TrajectoryStateOnSurface > DetWithState
Definition: GeometricSearchDet.h:19
BoundDiskSector::outerRadius
float outerRadius() const
Definition: BoundDiskSector.h:14
CompositeTECPetal::theBackBoundaries
std::vector< float > theBackBoundaries
Definition: CompositeTECPetal.h:92
CompatibleDetToGroupAdder.h
HelixForwardPlaneCrossing::position
PositionType position(double s) const override
Definition: HelixForwardPlaneCrossing.cc:38
BoundDiskSector
Definition: BoundDiskSector.h:7
alignCSCRings.r
r
Definition: alignCSCRings.py:93
GloballyPositioned::position
const PositionType & position() const
Definition: GloballyPositioned.h:36
CompositeTECPetal::WedgePar::thetaMax
float thetaMax
Definition: CompositeTECPetal.h:21
TrajectoryStateOnSurface::globalMomentum
GlobalVector globalMomentum() const
Definition: TrajectoryStateOnSurface.h:66
CompositeTECPetal::WedgePar::thetaMin
float thetaMin
Definition: CompositeTECPetal.h:21
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
CompositeTECPetal::computeWindowSize
static float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) __attribute__((hot))
Definition: CompositeTECPetal.cc:282
CompositeTECPetal::theDiskSector
ReferenceCountingPointer< BoundDiskSector > theDiskSector
Definition: CompositeTECPetal.h:50
HelixForwardPlaneCrossing::pathLength
std::pair< bool, double > pathLength(const Plane &plane) override
Definition: HelixForwardPlaneCrossing.h:28
PropagationDirection
PropagationDirection
Definition: PropagationDirection.h:4
CompatibleDetToGroupAdder
Definition: CompatibleDetToGroupAdder.h:13
CompositeTECPetal::WedgePar
Definition: CompositeTECPetal.h:20
SubLayerCrossings::other
const SubLayerCrossing & other() const
Definition: SubLayerCrossings.h:30
CompositeTECPetal::compatible
std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &ts, const Propagator &, const MeasurementEstimator &) const override __attribute__((cold))
Definition: CompositeTECPetal.cc:128
SubLayerCrossing
Definition: SubLayerCrossings.h:7
SubLayerCrossing::subLayerIndex
int subLayerIndex() const
Definition: SubLayerCrossings.h:12
BoundDiskSector::innerRadius
float innerRadius() const
Definition: BoundDiskSector.h:13
mps_fire.result
result
Definition: mps_fire.py:311
HelixForwardPlaneCrossing
Definition: HelixForwardPlaneCrossing.h:14
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
GeometricSearchDet
Definition: GeometricSearchDet.h:17
dttmaxenums::R
Definition: DTTMax.h:29
CompositeTECPetal::theBackPars
std::vector< WedgePar > theBackPars
Definition: CompositeTECPetal.h:94
PV3DBase< float, PointTag, GlobalTag >::perp
float perp() const
Definition: PV3DBase.h:69
CompositeTECPetal::addClosest
bool addClosest(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, std::vector< DetGroup > &result) const __attribute__((hot))
Definition: CompositeTECPetal.cc:217
CompositeTECPetal::theFrontBoundaries
std::vector< float > theFrontBoundaries
Definition: CompositeTECPetal.h:91
Basic3DVector< float >
HelixForwardPlaneCrossing.h
PV3DBase::perp2
T perp2() const
Definition: PV3DBase.h:68
DetWithState
GeometricSearchDet::DetWithState DetWithState
Definition: CompositeTECPetal.cc:24
ForwardDiskSectorBuilderFromWedges.h
DiskSectorBounds::thickness
float thickness() const override
Definition: DiskSectorBounds.h:25
MeasurementEstimator::maximalLocalDisplacement
virtual Local2DVector maximalLocalDisplacement(const TrajectoryStateOnSurface &ts, const Plane &plane) const =0
SubLayerCrossings
Definition: SubLayerCrossings.h:22
CompositeTECPetal::searchNeighbors
void searchNeighbors(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, float window, std::vector< DetGroup > &result, bool checkClosest) const __attribute__((hot))
Definition: CompositeTECPetal.cc:231