CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
Phase2OTECRingedLayer Class Reference

#include <Phase2OTECRingedLayer.h>

Inheritance diagram for Phase2OTECRingedLayer:
RingedForwardLayer

Classes

struct  RingPar
 

Public Member Functions

virtual const std::vector
< const GeomDet * > & 
basicComponents () const
 
virtual const std::vector
< const GeometricSearchDet * > & 
components () const __attribute__((cold))
 
void groupedCompatibleDetsV (const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const __attribute__((hot))
 
Phase2OTECRingedLayeroperator= (const Phase2OTECRingedLayer &)=delete
 
 Phase2OTECRingedLayer (std::vector< const Phase2OTECRing * > &rings) __attribute__((cold))
 
 Phase2OTECRingedLayer (const Phase2OTECRingedLayer &)=delete
 
virtual SubDetector subDetector () const
 
 ~Phase2OTECRingedLayer () __attribute__((cold))
 

Private Member Functions

BoundDiskcomputeDisk (const std::vector< const Phase2OTECRing * > &rings) const __attribute__((cold))
 
float computeWindowSize (const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const __attribute__((hot))
 
void fillRingPars (int i) __attribute__((cold))
 
std::array< int, 3 > findThreeClosest (const GlobalPoint[15]) const __attribute__((hot))
 
bool overlapInR (const TrajectoryStateOnSurface &tsos, int i, double ymax) const __attribute__((hot))
 
std::array< int, 3 > ringIndicesByCrossingProximity (const TrajectoryStateOnSurface &startingState, const Propagator &prop) const
 

Private Attributes

RingPar ringPars [15]
 
std::vector< GeomDet const * > theBasicComps
 
std::atomic< std::vector
< const GeometricSearchDet * > * > 
theComponents
 
const Phase2OTECRingtheComps [15]
 

Detailed Description

A concrete implementation for Phase 2 OT EC layer built out of Phase2OTECRings

Definition at line 16 of file Phase2OTECRingedLayer.h.

Constructor & Destructor Documentation

Phase2OTECRingedLayer::Phase2OTECRingedLayer ( std::vector< const Phase2OTECRing * > &  rings)

Definition at line 50 of file Phase2OTECRingedLayer.cc.

50  :
51  RingedForwardLayer(true),
52  theComponents{nullptr}
53 {
54  //They should be already R-ordered. TO BE CHECKED!!
55  //sort( theRings.begin(), theRings.end(), DetLessR());
56 
57  if ( rings.size() != NOTECRINGS) throw DetLayerException("Number of rings in Phase2 OT EC layer is not equal to NOTECRINGS !!");
58  setSurface( computeDisk( rings ) );
59 
60  for(int i=0; i!=NOTECRINGS; ++i) {
61  theComps[i]=rings[i];
62  fillRingPars(i);
63  theBasicComps.insert(theBasicComps.end(),
64  (*rings[i]).basicComponents().begin(),
65  (*rings[i]).basicComponents().end());
66  }
67 
68 
69  LogDebug("TkDetLayers") << "==== DEBUG Phase2OTECRingedLayer =====" ;
70  LogDebug("TkDetLayers") << "r,zed pos , thickness, innerR, outerR: "
71  << this->position().perp() << " , "
72  << this->position().z() << " , "
73  << this->specificSurface().bounds().thickness() << " , "
74  << this->specificSurface().innerRadius() << " , "
75  << this->specificSurface().outerRadius() ;
76 }
#define LogDebug(id)
Common base class.
void fillRingPars(int i) __attribute__((cold))
int i
Definition: DBlmapReader.cc:9
ForwardDetLayer RingedForwardLayer
const Phase2OTECRing * theComps[15]
BoundDisk * computeDisk(const std::vector< const Phase2OTECRing * > &rings) const __attribute__((cold))
std::atomic< std::vector< const GeometricSearchDet * > * > theComponents
static int position[264][3]
Definition: ReadPGInfo.cc:509
virtual const std::vector< const GeomDet * > & basicComponents() const
#define NOTECRINGS
std::vector< GeomDet const * > theBasicComps
Phase2OTECRingedLayer::~Phase2OTECRingedLayer ( )

Definition at line 110 of file Phase2OTECRingedLayer.cc.

References EnergyCorrector::c, theComponents, and theComps.

110  {
111  for (auto c : theComps) delete c;
112 
113  delete theComponents.load();
114 }
const Phase2OTECRing * theComps[15]
std::atomic< std::vector< const GeometricSearchDet * > * > theComponents
Phase2OTECRingedLayer::Phase2OTECRingedLayer ( const Phase2OTECRingedLayer )
delete

Member Function Documentation

virtual const std::vector<const GeomDet*>& Phase2OTECRingedLayer::basicComponents ( ) const
inlinevirtual

Definition at line 27 of file Phase2OTECRingedLayer.h.

References theBasicComps.

27 {return theBasicComps;}
std::vector< GeomDet const * > theBasicComps
const std::vector< const GeometricSearchDet * > & Phase2OTECRingedLayer::components ( ) const
virtual

Definition at line 22 of file Phase2OTECRingedLayer.cc.

References EnergyCorrector::c, NOTECRINGS, and groupFilesInBlocks::temp.

22  {
23  if (not theComponents) {
24  std::unique_ptr<std::vector<const GeometricSearchDet*>> temp( new std::vector<const GeometricSearchDet*>() );
25  temp->reserve(NOTECRINGS);
26  for ( auto c: theComps) temp->push_back(c);
27  std::vector<const GeometricSearchDet*>* expected = nullptr;
28  if(theComponents.compare_exchange_strong(expected,temp.get())) {
29  //this thread set the value
30  temp.release();
31  }
32  }
33  return *theComponents;
34  }
const Phase2OTECRing * theComps[15]
std::atomic< std::vector< const GeometricSearchDet * > * > theComponents
#define NOTECRINGS
BoundDisk * Phase2OTECRingedLayer::computeDisk ( const std::vector< const Phase2OTECRing * > &  rings) const
private

Definition at line 80 of file Phase2OTECRingedLayer.cc.

References i, bookConverter::max, min(), makeMuonMisalignmentScenario::rot, SiStripMonitorClusterAlca_cfi::zmax, SiStripMonitorClusterAlca_cfi::zmin, and zPos.

81 {
82  float theRmin = rings.front()->specificSurface().innerRadius();
83  float theRmax = rings.front()->specificSurface().outerRadius();
84  float theZmin = rings.front()->position().z() -
85  rings.front()->surface().bounds().thickness()/2;
86  float theZmax = rings.front()->position().z() +
87  rings.front()->surface().bounds().thickness()/2;
88 
89  for (vector<const Phase2OTECRing*>::const_iterator i = rings.begin(); i != rings.end(); i++) {
90  float rmin = (**i).specificSurface().innerRadius();
91  float rmax = (**i).specificSurface().outerRadius();
92  float zmin = (**i).position().z() - (**i).surface().bounds().thickness()/2.;
93  float zmax = (**i).position().z() + (**i).surface().bounds().thickness()/2.;
94  theRmin = min( theRmin, rmin);
95  theRmax = max( theRmax, rmax);
96  theZmin = min( theZmin, zmin);
97  theZmax = max( theZmax, zmax);
98  }
99 
100  float zPos = (theZmax+theZmin)/2.;
101  PositionType pos(0.,0.,zPos);
103 
104  return new BoundDisk( pos, rot, new SimpleDiskBounds(theRmin, theRmax,
105  theZmin-zPos, theZmax-zPos));
106 
107 }
TkRotation< Scalar > RotationType
Definition: Definitions.h:29
int i
Definition: DBlmapReader.cc:9
double zPos
Point3DBase< Scalar, GlobalTag > PositionType
Definition: Definitions.h:30
T min(T a, T b)
Definition: MathUtil.h:58
Disk BoundDisk
Definition: BoundDisk.h:62
float Phase2OTECRingedLayer::computeWindowSize ( const GeomDet det,
const TrajectoryStateOnSurface tsos,
const MeasurementEstimator est 
) const
private

Definition at line 279 of file Phase2OTECRingedLayer.cc.

References MeasurementEstimator::maximalLocalDisplacement(), GeomDet::surface(), and PV2DBase< T, PVType, FrameType >::y().

Referenced by groupedCompatibleDetsV().

282 {
283  const Plane& startPlane = det->surface();
285  est.maximalLocalDisplacement( tsos, startPlane);
286  return maxDistance.y();
287 }
T y() const
Definition: PV2DBase.h:46
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:40
Definition: Plane.h:17
virtual Local2DVector maximalLocalDisplacement(const TrajectoryStateOnSurface &ts, const Plane &plane) const
void Phase2OTECRingedLayer::fillRingPars ( int  i)
private

Definition at line 38 of file Phase2OTECRingedLayer.cc.

References funct::abs(), and i.

38  {
39  const BoundDisk& ringDisk = static_cast<const BoundDisk&>(theComps[i]->surface());
40  float ringMinZ = std::abs( ringDisk.position().z()) - ringDisk.bounds().thickness()/2.;
41  float ringMaxZ = std::abs( ringDisk.position().z()) + ringDisk.bounds().thickness()/2.;
42  ringPars[i].thetaRingMin = ringDisk.innerRadius()/ ringMaxZ;
43  ringPars[i].thetaRingMax = ringDisk.outerRadius()/ ringMinZ;
44  ringPars[i].theRingR=( ringDisk.innerRadius() +
45  ringDisk.outerRadius())/2.;
46 
47 }
int i
Definition: DBlmapReader.cc:9
const Phase2OTECRing * theComps[15]
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::array< int, 3 > Phase2OTECRingedLayer::findThreeClosest ( const GlobalPoint  ringCrossing[15]) const
private

Definition at line 290 of file Phase2OTECRingedLayer.cc.

References funct::abs(), i, NOTECRINGS, perp(), ringPars, and Phase2OTECRingedLayer::RingPar::theRingR.

Referenced by ringIndicesByCrossingProximity().

291 {
292  std::array<int,3> theBins={{-1,-1,-1}};
293  theBins[0] = 0;
294  float initialR = ringPars[0].theRingR;
295  float rDiff0 = std::abs( ringCrossing[0].perp() - initialR);
296  float rDiff1 = -1.;
297  float rDiff2 = -1.;
298  for (int i = 1; i < NOTECRINGS ; i++){
299  float ringR = ringPars[i].theRingR;
300  float testDiff = std::abs( ringCrossing[i].perp() - ringR);
301  if ( testDiff<rDiff0 ) {
302  rDiff2 = rDiff1;
303  rDiff1 = rDiff0;
304  rDiff0 = testDiff;
305  theBins[2] = theBins[1];
306  theBins[1] = theBins[0];
307  theBins[0] = i;
308  }
309  else
310  if ( rDiff1 < 0 || testDiff<rDiff1 ) {
311  rDiff2 = rDiff1;
312  rDiff1 = testDiff;
313  theBins[2] = theBins[1];
314  theBins[1] = i;
315  }
316  else
317  if ( rDiff2 < 0 || testDiff<rDiff2 ) {
318  rDiff2 = testDiff;
319  theBins[2] = i;
320  }
321  }
322 
323  return theBins;
324 }
int i
Definition: DBlmapReader.cc:9
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
T perp() const
Magnitude of transverse component.
#define NOTECRINGS
void Phase2OTECRingedLayer::groupedCompatibleDetsV ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
std::vector< DetGroup > &  result 
) const

Definition at line 119 of file Phase2OTECRingedLayer.cc.

References DetGroupMerger::addSameLevel(), alongMomentum, computeWindowSize(), constexpr, TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), Phase2OTECRing::groupedCompatibleDetsV(), i, cmsHarvester::index, eostools::move(), NOTECRINGS, DetGroupMerger::orderAndMergeTwoLevels(), overlapInR(), Propagator::propagationDirection(), ringIndicesByCrossingProximity(), theComps, and PV3DBase< T, PVType, FrameType >::z().

123 {
124  std::array<int,3> const & ringIndices = ringIndicesByCrossingProximity(startingState,prop);
125  if ( ringIndices[0]==-1 || ringIndices[1] ==-1 || ringIndices[2] == -1 ) {
126  edm::LogError("TkDetLayers") << "TkRingedForwardLayer::groupedCompatibleDets : error in CrossingProximity";
127  return;
128  }
129 
130  //order is odd rings in front of even rings
131 #ifdef __INTEL_COMPILER
132  const int ringOrder[NOTECRINGS]{0,1,0,1,0,1,0,1,0,1,0,1,0,1,0};
133 #else
134  constexpr int ringOrder[NOTECRINGS]{0,1,0,1,0,1,0,1,0,1,0,1,0,1,0};
135 #endif
136  auto index = [&ringIndices,& ringOrder](int i) { return ringOrder[ringIndices[i]];};
137 
138  std::vector<DetGroup> closestResult;
139  theComps[ringIndices[0]]->groupedCompatibleDetsV( startingState, prop, est, closestResult);
140  // if the closest is empty, use the next one and exit: inherited from TID !
141  if ( closestResult.empty() ){
142  theComps[ringIndices[1]]->groupedCompatibleDetsV( startingState, prop, est, result);
143  return;
144  }
145 
146  DetGroupElement closestGel( closestResult.front().front());
147  float rWindow = computeWindowSize( closestGel.det(), closestGel.trajectoryState(), est);
148 
149  // check if next ring and next next ring are found and if there is overlap
150 
151  bool ring1ok = ringIndices[1] != -1 && overlapInR(closestGel.trajectoryState(),ringIndices[1],rWindow);
152  bool ring2ok = ringIndices[2] != -1 && overlapInR(closestGel.trajectoryState(),ringIndices[2],rWindow);
153 
154  // look for the two rings in the same plane (are they only two?)
155 
156  // determine if we are propagating from in to out (0) or from out to in (1)
157 
158  int direction = 0;
159  if(startingState.globalPosition().z()*startingState.globalMomentum().z()>0) {
160  if(prop.propagationDirection() == alongMomentum) direction=0;
161  else direction=1;
162  }
163  else{
164  if(prop.propagationDirection() == alongMomentum) direction=1;
165  else direction=0;
166  }
167 
168  if((index(0) == index(1)) && (index(0) == index(2))) {
169  edm::LogInfo("AllRingsInOnePlane") << " All rings: "
170  << ringIndices[0] << " "
171  << ringIndices[1] << " "
172  << ringIndices[2] << " in one plane. Only the first two will be considered";
173  ring2ok=false;
174  }
175 
176  if(index(0) == index(1)) {
177  if(ring1ok) {
178  std::vector<DetGroup> ring1res;
179  theComps[ringIndices[1]]->groupedCompatibleDetsV( startingState, prop, est, ring1res);
180  DetGroupMerger::addSameLevel(std::move(ring1res),closestResult);
181  }
182  if(ring2ok) {
183  std::vector<DetGroup> ring2res;
184  theComps[ringIndices[2]]->groupedCompatibleDetsV( startingState, prop, est, ring2res);
185  DetGroupMerger::orderAndMergeTwoLevels(std::move(closestResult),std::move(ring2res),result,index(0),direction);
186  return;
187  }
188  else {
189  result.swap(closestResult);
190  return;
191  }
192  }
193  else if(index(0) == index(2)) {
194  if(ring2ok) {
195  std::vector<DetGroup> ring2res;
196  theComps[ringIndices[2]]->groupedCompatibleDetsV( startingState, prop, est, ring2res);
197  DetGroupMerger::addSameLevel(std::move(ring2res),closestResult);
198  }
199  if(ring1ok) {
200  std::vector<DetGroup> ring1res;
201  theComps[ringIndices[1]]->groupedCompatibleDetsV( startingState, prop, est, ring1res);
202  DetGroupMerger::orderAndMergeTwoLevels(std::move(closestResult),std::move(ring1res),result,index(0),direction);
203  return;
204  }
205  else {
206  result.swap(closestResult);
207  return;
208  }
209  }
210  else {
211  std::vector<DetGroup> ring12res;
212  if(ring1ok) {
213  std::vector<DetGroup> ring1res;
214  theComps[ringIndices[1]]->groupedCompatibleDetsV( startingState, prop, est, ring1res);
215  ring12res.swap(ring1res);
216  }
217  if(ring2ok) {
218  std::vector<DetGroup> ring2res;
219  theComps[ringIndices[2]]->groupedCompatibleDetsV( startingState, prop, est, ring2res);
220  DetGroupMerger::addSameLevel(std::move(ring2res),ring12res);
221  }
222  if(!ring12res.empty()) {
223  DetGroupMerger::orderAndMergeTwoLevels(std::move(closestResult),std::move(ring12res),result,index(0),direction);
224  return;
225  }
226  else {
227  result.swap(closestResult);
228  return;
229  }
230  }
231 }
int i
Definition: DBlmapReader.cc:9
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:155
const Phase2OTECRing * theComps[15]
#define constexpr
static void addSameLevel(std::vector< DetGroup > &&gvec, std::vector< DetGroup > &result)
void groupedCompatibleDetsV(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const __attribute__((hot))
tuple result
Definition: query.py:137
def move
Definition: eostools.py:510
bool overlapInR(const TrajectoryStateOnSurface &tsos, int i, double ymax) const __attribute__((hot))
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est) const __attribute__((hot))
std::array< int, 3 > ringIndicesByCrossingProximity(const TrajectoryStateOnSurface &startingState, const Propagator &prop) const
#define NOTECRINGS
static void orderAndMergeTwoLevels(std::vector< DetGroup > &&one, std::vector< DetGroup > &&two, std::vector< DetGroup > &result, int firstIndex, int firstCrossed)
Phase2OTECRingedLayer& Phase2OTECRingedLayer::operator= ( const Phase2OTECRingedLayer )
delete
bool Phase2OTECRingedLayer::overlapInR ( const TrajectoryStateOnSurface tsos,
int  i,
double  ymax 
) const
private

Definition at line 327 of file Phase2OTECRingedLayer.cc.

References funct::abs(), f, TrajectoryStateOnSurface::globalPosition(), cmsHarvester::index, bookConverter::max, PV3DBase< T, PVType, FrameType >::perp(), ringPars, Phase2OTECRingedLayer::RingPar::thetaRingMax, Phase2OTECRingedLayer::RingPar::thetaRingMin, SiStripMonitorClusterAlca_cfi::ymax, and PV3DBase< T, PVType, FrameType >::z().

Referenced by groupedCompatibleDetsV().

328 {
329  // assume "fixed theta window", i.e. margin in local y = r is changing linearly with z
330  float tsRadius = tsos.globalPosition().perp();
331  float thetamin = ( max(0.,tsRadius-ymax))/(std::abs(tsos.globalPosition().z())+10.f); // add 10 cm contingency
332  float thetamax = ( tsRadius + ymax)/(std::abs(tsos.globalPosition().z())-10.f);
333 
334  // do the theta regions overlap ?
335 
336  return !( thetamin > ringPars[index].thetaRingMax || ringPars[index].thetaRingMin > thetamax);
337 }
T perp() const
Definition: PV3DBase.h:72
GlobalPoint globalPosition() const
T z() const
Definition: PV3DBase.h:64
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double f[11][100]
std::array< int, 3 > Phase2OTECRingedLayer::ringIndicesByCrossingProximity ( const TrajectoryStateOnSurface startingState,
const Propagator prop 
) const
private

Definition at line 235 of file Phase2OTECRingedLayer.cc.

References findThreeClosest(), TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), i, NOTECRINGS, Propagator::propagationDirection(), rho, Phase2OTECRing::surface(), theComps, and TrajectoryStateOnSurface::transverseCurvature().

Referenced by groupedCompatibleDetsV().

237 {
238  typedef HelixForwardPlaneCrossing Crossing;
240 
241  HelixPlaneCrossing::PositionType startPos( startingState.globalPosition());
242  HelixPlaneCrossing::DirectionType startDir( startingState.globalMomentum());
244  float rho( startingState.transverseCurvature());
245 
246  // calculate the crossings with the ring surfaces
247  // rings are assumed to be sorted in R !
248 
249  Crossing myXing( startPos, startDir, rho, propDir );
250 
251  GlobalPoint ringCrossings[NOTECRINGS];
252  // vector<GlobalVector> ringXDirections;
253 
254  for (int i = 0; i < NOTECRINGS ; i++ ) {
255  const BoundDisk & theRing = static_cast<const BoundDisk &>(theComps[i]->surface());
256  pair<bool,double> pathlen = myXing.pathLength( theRing);
257  if ( pathlen.first ) {
258  ringCrossings[i] = GlobalPoint( myXing.position(pathlen.second ));
259  // ringXDirections.push_back( GlobalVector( myXing.direction(pathlen.second )));
260  } else {
261  // TO FIX.... perhaps there is something smarter to do
262  //throw DetLayerException("trajectory doesn't cross TID rings");
263  ringCrossings[i] = GlobalPoint( 0.,0.,0.);
264  // ringXDirections.push_back( GlobalVector( 0.,0.,0.));
265  }
266  }
267 
268  //find three closest rings to the crossing
269 
270  std::array<int,3> closests = findThreeClosest(ringCrossings);
271 
272  return closests;
273 }
int i
Definition: DBlmapReader.cc:9
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:155
const Phase2OTECRing * theComps[15]
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
GlobalPoint globalPosition() const
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
Vector2DBase< float, LocalTag > Local2DVector
PropagationDirection
std::array< int, 3 > findThreeClosest(const GlobalPoint[15]) const __attribute__((hot))
GlobalVector globalMomentum() const
#define NOTECRINGS
virtual SubDetector Phase2OTECRingedLayer::subDetector ( ) const
inlinevirtual

Member Data Documentation

RingPar Phase2OTECRingedLayer::ringPars[15]
private

Definition at line 66 of file Phase2OTECRingedLayer.h.

Referenced by findThreeClosest(), and overlapInR().

std::vector<GeomDet const*> Phase2OTECRingedLayer::theBasicComps
private

Definition at line 62 of file Phase2OTECRingedLayer.h.

Referenced by basicComponents().

std::atomic<std::vector<const GeometricSearchDet*>*> Phase2OTECRingedLayer::theComponents
mutableprivate

Definition at line 63 of file Phase2OTECRingedLayer.h.

Referenced by ~Phase2OTECRingedLayer().

const Phase2OTECRing* Phase2OTECRingedLayer::theComps[15]
private