CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
CompositeTECWedge Class Referencefinal

#include <CompositeTECWedge.h>

Inheritance diagram for CompositeTECWedge:
TECWedge GeometricSearchDet

Public Member Functions

const std::vector< const GeomDet * > & basicComponents () const override
 
std::pair< bool, TrajectoryStateOnSurfacecompatible (const TrajectoryStateOnSurface &ts, const Propagator &, const MeasurementEstimator &) const override __attribute__((cold))
 
const std::vector< const GeometricSearchDet * > & components () const override __attribute__((cold))
 Returns basic components, if any. More...
 
 CompositeTECWedge (std::vector< const GeomDet * > &innerDets, std::vector< const GeomDet * > &outerDets) __attribute__((cold))
 
void groupedCompatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const override __attribute__((hot))
 
 ~CompositeTECWedge () override __attribute__((cold))
 
- Public Member Functions inherited from TECWedge
virtual const BoundDiskSectorspecificSurface () const final
 
const BoundSurfacesurface () const final
 The surface of the GeometricSearchDet. More...
 
 TECWedge ()
 
- Public Member Functions inherited from GeometricSearchDet
virtual std::vector< DetWithStatecompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual void compatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
 
 GeometricSearchDet (bool doHaveGroups)
 
virtual std::vector< DetGroupgroupedCompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
bool hasGroups () const
 
virtual const Surface::PositionTypeposition () const
 Returns position of the surface. More...
 
virtual ~GeometricSearchDet ()
 

Private Member Functions

bool addClosest (const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, std::vector< DetGroup > &result) const __attribute__((hot))
 
SubLayerCrossings computeCrossings (const TrajectoryStateOnSurface &tsos, PropagationDirection propDir) const __attribute__((hot))
 
int findClosestDet (const GlobalPoint &startPos, int sectorId) const
 
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))
 
const std::vector< const GeomDet * > & subWedge (int ind) const
 

Private Attributes

std::vector< const GeomDet * > theBackDets
 
ReferenceCountingPointer< BoundDiskSectortheBackSector
 
std::vector< const GeomDet * > theDets
 
std::vector< const GeomDet * > theFrontDets
 
ReferenceCountingPointer< BoundDiskSectortheFrontSector
 

Additional Inherited Members

- Public Types inherited from GeometricSearchDet
typedef std::pair< const GeomDet *, TrajectoryStateOnSurfaceDetWithState
 
typedef BoundSurface::PositionType PositionType
 
typedef BoundSurface::RotationType RotationType
 
typedef TrajectoryStateOnSurface TrajectoryState
 
- Protected Attributes inherited from TECWedge
ReferenceCountingPointer< BoundDiskSectortheDiskSector
 
- Protected Attributes inherited from GeometricSearchDet
bool haveGroups
 
GeomDetCompatibilityChecker theCompatibilityChecker
 

Detailed Description

A concrete implementation for TEC layer built out of TECPetals

Definition at line 12 of file CompositeTECWedge.h.

Constructor & Destructor Documentation

CompositeTECWedge::CompositeTECWedge ( std::vector< const GeomDet * > &  innerDets,
std::vector< const GeomDet * > &  outerDets 
)

Definition at line 33 of file CompositeTECWedge.cc.

References LogDebug, PV3DBase< T, PVType, FrameType >::perp(), GeometricSearchDet::position(), theBackDets, theBackSector, theDets, TECWedge::theDiskSector, theFrontDets, theFrontSector, and PV3DBase< T, PVType, FrameType >::z().

34  : theFrontDets(innerDets.begin(), innerDets.end()), theBackDets(outerDets.begin(), outerDets.end()) {
35  theDets.assign(theFrontDets.begin(), theFrontDets.end());
36  theDets.insert(theDets.end(), theBackDets.begin(), theBackDets.end());
37 
38  //
39  std::sort(theFrontDets.begin(), theFrontDets.end(), DetPhiLess());
40  std::sort(theBackDets.begin(), theBackDets.end(), DetPhiLess());
41 
45 
46  //--------- DEBUG INFO --------------
47  LogDebug("TkDetLayers") << "DEBUG INFO for CompositeTECWedge"
48  << "\n"
49  << "TECWedge z, perp,innerRadius,outerR: " << this->position().z() << " , "
50  << this->position().perp() << " , " << theDiskSector->innerRadius() << " , "
51  << theDiskSector->outerRadius();
52 
53  for (vector<const GeomDet*>::const_iterator it = theFrontDets.begin(); it != theFrontDets.end(); it++) {
54  LogDebug("TkDetLayers") << "frontDet phi,z,r: " << (*it)->surface().position().phi() << " , "
55  << (*it)->surface().position().z() << " , " << (*it)->surface().position().perp();
56  }
57 
58  for (vector<const GeomDet*>::const_iterator it = theBackDets.begin(); it != theBackDets.end(); it++) {
59  LogDebug("TkDetLayers") << "backDet phi,z,r: " << (*it)->surface().phi() << " , " << (*it)->surface().position().z()
60  << " , " << (*it)->surface().position().perp();
61  }
62  //-----------------------------------
63 }
#define LogDebug(id)
T perp() const
Definition: PV3DBase.h:69
std::vector< const GeomDet * > theDets
ReferenceCountingPointer< BoundDiskSector > theDiskSector
Definition: TECWedge.h:24
std::vector< const GeomDet * > theFrontDets
std::vector< const GeomDet * > theBackDets
T z() const
Definition: PV3DBase.h:61
ReferenceCountingPointer< BoundDiskSector > theBackSector
virtual const Surface::PositionType & position() const
Returns position of the surface.
ReferenceCountingPointer< BoundDiskSector > theFrontSector
CompositeTECWedge::~CompositeTECWedge ( )
override

Definition at line 65 of file CompositeTECWedge.cc.

65 {}

Member Function Documentation

bool CompositeTECWedge::addClosest ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
const SubLayerCrossing crossing,
std::vector< DetGroup > &  result 
) const
private

Definition at line 162 of file CompositeTECWedge.cc.

References CompatibleDetToGroupAdder::add(), SubLayerCrossing::closestDetIndex(), LogDebug, mps_fire::result, SubLayerCrossing::subLayerIndex(), and subWedge().

Referenced by basicComponents(), and groupedCompatibleDetsV().

166  {
167  const vector<const GeomDet*>& sWedge(subWedge(crossing.subLayerIndex()));
168 
169  LogDebug("TkDetLayers") << "in CompositeTECWedge,adding GeomDet at r,z,phi: ("
170  << sWedge[crossing.closestDetIndex()]->position().perp() << ","
171  << sWedge[crossing.closestDetIndex()]->position().z() << ","
172  << sWedge[crossing.closestDetIndex()]->position().phi() << ")";
173 
174  return CompatibleDetToGroupAdder().add(*sWedge[crossing.closestDetIndex()], tsos, prop, est, result);
175 }
#define LogDebug(id)
int closestDetIndex() const
const std::vector< const GeomDet * > & subWedge(int ind) const
int subLayerIndex() const
static bool add(const GeometricSearchDet &det, const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) __attribute__((hot))
const std::vector<const GeomDet*>& CompositeTECWedge::basicComponents ( ) const
inlineoverridevirtual
pair< bool, TrajectoryStateOnSurface > CompositeTECWedge::compatible ( const TrajectoryStateOnSurface ts,
const Propagator ,
const MeasurementEstimator  
) const
overridevirtual

tests the geometrical compatibility of the Det with the predicted state. The FreeTrajectoryState argument is propagated to the Det surface using the Propagator argument. The resulting TrajectoryStateOnSurface is tested for compatibility with the surface bounds. If compatible, a std::pair< true, propagatedState> is returned. If the propagation fails, or if the state is not compatible, a std::pair< false, propagatedState> is returned.

Implements GeometricSearchDet.

Definition at line 71 of file CompositeTECWedge.cc.

Referenced by basicComponents().

73  {
74  edm::LogError("TkDetLayers") << "temporary dummy implementation of CompositeTECWedge::compatible()!!";
75  return pair<bool, TrajectoryStateOnSurface>();
76 }
const vector< const GeometricSearchDet * > & CompositeTECWedge::components ( ) const
overridevirtual

Returns basic components, if any.

Returns direct components, if any

Implements GeometricSearchDet.

Definition at line 67 of file CompositeTECWedge.cc.

Referenced by basicComponents().

67  {
68  throw DetLayerException("CompositeTECWedge doesn't have GeometricSearchDet components");
69 }
Common base class.
SubLayerCrossings CompositeTECWedge::computeCrossings ( const TrajectoryStateOnSurface tsos,
PropagationDirection  propDir 
) const
private

Definition at line 110 of file CompositeTECWedge.cc.

References funct::abs(), SiPixelRawToDigiRegional_cfi::deltaPhi, findClosestDet(), TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), LogDebug, HelixForwardPlaneCrossing::pathLength(), HelixForwardPlaneCrossing::position(), rho, theBackDets, theBackSector, theFrontDets, theFrontSector, and TrajectoryStateOnSurface::transverseCurvature().

Referenced by basicComponents(), and groupedCompatibleDetsV().

111  {
112  HelixPlaneCrossing::PositionType startPos(startingState.globalPosition());
113  HelixPlaneCrossing::DirectionType startDir(startingState.globalMomentum());
114 
115  auto rho = startingState.transverseCurvature();
116 
117  HelixForwardPlaneCrossing crossing(startPos, startDir, rho, propDir);
118 
119  pair<bool, double> frontPath = crossing.pathLength(*theFrontSector);
120  if (!frontPath.first)
121  return SubLayerCrossings();
122 
123  pair<bool, double> backPath = crossing.pathLength(*theBackSector);
124  if (!backPath.first)
125  return SubLayerCrossings();
126 
127  GlobalPoint gFrontPoint(crossing.position(frontPath.second));
128  GlobalPoint gBackPoint(crossing.position(backPath.second));
129 
130  LogDebug("TkDetLayers") << "in TECWedge,front crossing r,z,phi: (" << gFrontPoint.perp() << "," << gFrontPoint.z()
131  << "," << gFrontPoint.phi() << ")";
132 
133  LogDebug("TkDetLayers") << "in TECWedge,back crossing r,z,phi: (" << gBackPoint.perp() << "," << gBackPoint.z() << ","
134  << gBackPoint.phi() << ")" << endl;
135 
136  int frontIndex = findClosestDet(gFrontPoint, 0);
137  SubLayerCrossing frontSLC(0, frontIndex, gFrontPoint);
138 
139  int backIndex = findClosestDet(gBackPoint, 1);
140  SubLayerCrossing backSLC(1, backIndex, gBackPoint);
141 
142  auto frontDist = std::abs(Geom::deltaPhi(gFrontPoint.barePhi(), theFrontDets[frontIndex]->surface().phi()));
143  /*
144  float frontDist = theFrontDets[frontIndex]->surface().phi() - gFrontPoint.phi();
145  frontDist *= Geom::phiLess( theFrontDets[frontIndex]->surface().phi(),gFrontPoint.barePhi()) ? -1. : 1.;
146  if (frontDist < 0.) { frontDist += 2.*Geom::pi();}
147  */
148  auto backDist = std::abs(Geom::deltaPhi(gBackPoint.barePhi(), theBackDets[backIndex]->surface().phi()));
149  /*
150  float backDist = theBackDets[backIndex]->surface().phi() - gBackPoint.phi();
151  backDist *= Geom::phiLess( theBackDets[backIndex]->surface().phi(),gBackPoint.barePhi()) ? -1. : 1.;
152  if ( backDist < 0.) { backDist += 2.*Geom::pi();}
153  */
154 
155  if (frontDist < backDist) {
156  return SubLayerCrossings(frontSLC, backSLC, 0);
157  } else {
158  return SubLayerCrossings(backSLC, frontSLC, 1);
159  }
160 }
#define LogDebug(id)
std::vector< const GeomDet * > theFrontDets
int findClosestDet(const GlobalPoint &startPos, int sectorId) const
std::vector< const GeomDet * > theBackDets
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
ReferenceCountingPointer< BoundDiskSector > theBackSector
ReferenceCountingPointer< BoundDiskSector > theFrontSector
int CompositeTECWedge::findClosestDet ( const GlobalPoint startPos,
int  sectorId 
) const
private

Definition at line 217 of file CompositeTECWedge.cc.

References funct::abs(), mps_fire::i, theBackDets, theFrontDets, toLocal(), and x.

Referenced by basicComponents(), and computeCrossings().

217  {
218  vector<const GeomDet*> const& myDets = sectorId == 0 ? theFrontDets : theBackDets;
219 
220  int close = 0;
221  auto closeDist = std::abs((myDets.front()->toLocal(startPos)).x());
222  for (unsigned int i = 1; i < myDets.size(); i++) {
223  auto dist = std::abs((myDets[i]->toLocal(startPos)).x());
224  if (dist < closeDist) {
225  close = i;
226  closeDist = dist;
227  }
228  }
229  return close;
230 }
LocalVector toLocal(const reco::Track::Vector &v, const Surface &s)
std::vector< const GeomDet * > theFrontDets
std::vector< const GeomDet * > theBackDets
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
void CompositeTECWedge::groupedCompatibleDetsV ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est,
std::vector< DetGroup > &  result 
) const
overridevirtual

Reimplemented from GeometricSearchDet.

Definition at line 78 of file CompositeTECWedge.cc.

References addClosest(), SubLayerCrossings::closest(), SubLayerCrossings::closestIndex(), computeCrossings(), tkDetUtil::computeWindowSize(), LayerCrossingSide::endcapSide(), SubLayerCrossings::isValid(), LogDebug, eostools::move(), DetGroupMerger::orderAndMergeTwoLevels(), SubLayerCrossings::other(), Propagator::propagationDirection(), searchNeighbors(), and svgfig::window().

Referenced by basicComponents().

81  {
83  if (!crossings.isValid())
84  return;
85 
86  std::vector<DetGroup> closestResult;
87  addClosest(tsos, prop, est, crossings.closest(), closestResult);
88 
89  LogDebug("TkDetLayers") << "in CompositeTECWedge::groupedCompatibleDets,closestResult.size(): "
90  << closestResult.size();
91 
92  if (closestResult.empty())
93  return;
94 
95  DetGroupElement closestGel(closestResult.front().front());
96  auto window = tkDetUtil::computeWindowSize(closestGel.det(), closestGel.trajectoryState(), est);
97 
98  searchNeighbors(tsos, prop, est, crossings.closest(), window, closestResult, false);
99 
100  std::vector<DetGroup> nextResult;
101  searchNeighbors(tsos, prop, est, crossings.other(), window, nextResult, true);
102 
103  int crossingSide = LayerCrossingSide().endcapSide(closestGel.trajectoryState(), prop);
105  std::move(closestResult), std::move(nextResult), result, crossings.closestIndex(), crossingSide);
106 }
#define LogDebug(id)
int closestIndex() const
SubLayerCrossings computeCrossings(const TrajectoryStateOnSurface &tsos, PropagationDirection propDir) const __attribute__((hot))
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est)
Definition: TkDetUtil.cc:10
virtual PropagationDirection propagationDirection() const final
Definition: Propagator.h:139
static int endcapSide(const TrajectoryStateOnSurface &startingState, const Propagator &prop)
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
const SubLayerCrossing & other() const
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))
const SubLayerCrossing & closest() const
bool addClosest(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, std::vector< DetGroup > &result) const __attribute__((hot))
static void orderAndMergeTwoLevels(std::vector< DetGroup > &&one, std::vector< DetGroup > &&two, std::vector< DetGroup > &result, int firstIndex, int firstCrossed)
def move(src, dest)
Definition: eostools.py:511
void CompositeTECWedge::searchNeighbors ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
const SubLayerCrossing crossing,
float  window,
std::vector< DetGroup > &  result,
bool  checkClosest 
) const
private

Definition at line 177 of file CompositeTECWedge.cc.

References PVValHelper::add(), PV3DBase< T, PVType, FrameType >::barePhi(), SubLayerCrossing::closestDetIndex(), tkDetUtil::overlapInPhi(), Geom::phiLess(), SubLayerCrossing::position(), SubLayerCrossing::subLayerIndex(), and subWedge().

Referenced by basicComponents(), and groupedCompatibleDetsV().

183  {
184  const GlobalPoint& gCrossingPos = crossing.position();
185 
186  const vector<const GeomDet*>& sWedge(subWedge(crossing.subLayerIndex()));
187 
188  int closestIndex = crossing.closestDetIndex();
189  int negStartIndex = closestIndex - 1;
190  int posStartIndex = closestIndex + 1;
191 
192  if (checkClosest) { // must decide if the closest is on the neg or pos side
193  if (Geom::phiLess(gCrossingPos.barePhi(), sWedge[closestIndex]->surface().phi())) {
194  posStartIndex = closestIndex;
195  } else {
196  negStartIndex = closestIndex;
197  }
198  }
199 
200  typedef CompatibleDetToGroupAdder Adder;
201  for (int idet = negStartIndex; idet >= 0; idet--) {
202  //if(idet <0 || idet>=sWedge.size()) {edm::LogInfo(TkDetLayers) << "==== warning! gone out vector bounds.idet: " << idet ;break;}
203  if (!tkDetUtil::overlapInPhi(gCrossingPos, *sWedge[idet], window))
204  break;
205  if (!Adder::add(*sWedge[idet], tsos, prop, est, result))
206  break;
207  }
208  for (int idet = posStartIndex; idet < static_cast<int>(sWedge.size()); idet++) {
209  //if(idet <0 || idet>=sWedge.size()) {edm::LogInfo(TkDetLayers) << "==== warning! gone out vector bounds.idet: " << idet ;break;}
210  if (!tkDetUtil::overlapInPhi(gCrossingPos, *sWedge[idet], window))
211  break;
212  if (!Adder::add(*sWedge[idet], tsos, prop, est, result))
213  break;
214  }
215 }
int closestDetIndex() const
bool overlapInPhi(float phi, const GeomDet &det, float phiWindow)
Definition: TkDetUtil.h:18
const GlobalPoint & position() const
T barePhi() const
Definition: PV3DBase.h:65
const std::vector< const GeomDet * > & subWedge(int ind) const
int subLayerIndex() const
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
bool phiLess(float phi1, float phi2)
Definition: VectorUtil.h:18
void add(std::map< std::string, TH1 * > &h, TH1 *hist)
const std::vector<const GeomDet*>& CompositeTECWedge::subWedge ( int  ind) const
inlineprivate

Definition at line 55 of file CompositeTECWedge.h.

References theBackDets, and theFrontDets.

Referenced by addClosest(), and searchNeighbors().

55 { return (ind == 0 ? theFrontDets : theBackDets); }
std::vector< const GeomDet * > theFrontDets
std::vector< const GeomDet * > theBackDets

Member Data Documentation

std::vector<const GeomDet*> CompositeTECWedge::theBackDets
private

Definition at line 59 of file CompositeTECWedge.h.

Referenced by CompositeTECWedge(), computeCrossings(), findClosestDet(), and subWedge().

ReferenceCountingPointer<BoundDiskSector> CompositeTECWedge::theBackSector
private

Definition at line 63 of file CompositeTECWedge.h.

Referenced by CompositeTECWedge(), and computeCrossings().

std::vector<const GeomDet*> CompositeTECWedge::theDets
private

Definition at line 60 of file CompositeTECWedge.h.

Referenced by basicComponents(), and CompositeTECWedge().

std::vector<const GeomDet*> CompositeTECWedge::theFrontDets
private

Definition at line 58 of file CompositeTECWedge.h.

Referenced by CompositeTECWedge(), computeCrossings(), findClosestDet(), and subWedge().

ReferenceCountingPointer<BoundDiskSector> CompositeTECWedge::theFrontSector
private

Definition at line 62 of file CompositeTECWedge.h.

Referenced by CompositeTECWedge(), and computeCrossings().