CMS 3D CMS Logo

SimpleForwardNavigableLayer.cc
Go to the documentation of this file.
2 
6 
9 
13 
14 using namespace std;
15 
17  const BDLC& outerBL,
18  const FDLC& outerFL,
19  const MagneticField* field,
20  float epsilon,
21  bool checkCrossingSide)
22  : SimpleNavigableLayer(field, epsilon, checkCrossingSide),
23  theDetLayer(detLayer),
24  theOuterBarrelLayers(outerBL),
25  theInnerBarrelLayers(0),
26  theOuterForwardLayers(outerFL),
27  theInnerForwardLayers(0),
28  theOuterLayers(0),
29  theInnerLayers(0) {
30  // put barrel and forward layers together
31  theOuterLayers.reserve(outerBL.size() + outerFL.size());
32  for (ConstBDLI bl = outerBL.begin(); bl != outerBL.end(); bl++)
33  theOuterLayers.push_back(*bl);
34  for (ConstFDLI fl = outerFL.begin(); fl != outerFL.end(); fl++)
35  theOuterLayers.push_back(*fl);
36 
37  // sort the outer layers
38  sort(theOuterLayers.begin(), theOuterLayers.end(), TkLayerLess());
41 }
42 
44  vector<const DetLayer*> result;
45 
46  // the order is the one in which layers
47  // should be checked for a reasonable trajectory
48 
49  if (dir == insideOut) {
50  return theOuterLayers;
51  } else {
52  return theInnerLayers;
53  }
54 
55  return result;
56 }
57 
59  PropagationDirection dir) const {
60  // This method contains the sequence in which the layers are tested.
61  // The iteration stops as soon as a layer contains the propagated state
62  // within epsilon
63 
64  vector<const DetLayer*> result;
65 
66  FreeTrajectoryState ftsWithoutErrors = (fts.hasError()) ? FreeTrajectoryState(fts.parameters()) : fts;
67 
68  auto const position = fts.position();
69  auto const momentum = fts.momentum();
70 
71  //establish whether the tracks is crossing the tracker from outer layers to inner ones
72  //or from inner to outer
73  float zpos = position.z();
74  bool isInOutTrackFWD = momentum.z() * zpos > 0;
75  GlobalVector transversePosition(position.x(), position.y(), 0);
76  bool isInOutTrackBarrel = (transversePosition.dot(momentum) > 0);
77 
78  //establish whether inner or outer layers are crossed after propagation, according
79  //to BOTH propagationDirection AND track momentum
80  bool dirOppositeXORisInOutTrackBarrel =
81  (!(dir == oppositeToMomentum) && isInOutTrackBarrel) || ((dir == oppositeToMomentum) && !isInOutTrackBarrel);
82  bool dirOppositeXORisInOutTrackFWD =
83  (!(dir == oppositeToMomentum) && isInOutTrackFWD) || ((dir == oppositeToMomentum) && !isInOutTrackFWD);
84  //bool dirOppositeXORisInOutTrack = ( !(dir == oppositeToMomentum) && isInOutTrack) || ( (dir == oppositeToMomentum) && !isInOutTrack);
85 
86  if LIKELY (dirOppositeXORisInOutTrackFWD && dirOppositeXORisInOutTrackBarrel) { //standard tracks
87  wellInside(ftsWithoutErrors, dir, theOuterLayers, result);
88  } else if (!dirOppositeXORisInOutTrackFWD && !dirOppositeXORisInOutTrackBarrel) { // !dirOppositeXORisInOutTrack
89  wellInside(ftsWithoutErrors, dir, theInnerLayers, result);
90  } else if (!dirOppositeXORisInOutTrackFWD && dirOppositeXORisInOutTrackBarrel) {
91  wellInside(ftsWithoutErrors, dir, theInnerForwardLayers.begin(), theInnerForwardLayers.end(), result);
92  wellInside(ftsWithoutErrors, dir, theOuterBarrelLayers.begin(), theOuterBarrelLayers.end(), result);
93  } else {
94  wellInside(ftsWithoutErrors, dir, theInnerBarrelLayers.begin(), theInnerBarrelLayers.end(), result);
95  wellInside(ftsWithoutErrors, dir, theOuterForwardLayers.begin(), theOuterForwardLayers.end(), result);
96  }
97 
98  return result;
99 }
100 
102  edm::LogError("TkNavigation") << "ERROR: compatibleLayers() method used without all reachableLayers are set";
103  throw DetLayerException("compatibleLayers() method used without all reachableLayers are set");
104  return vector<const DetLayer*>();
105 }
106 
108  cerr << "Warning: SimpleForwardNavigableLayer::setDetLayer called." << endl << "This should never happen!" << endl;
109 }
110 
112  theInnerBarrelLayers = innerBL;
113  theInnerForwardLayers = innerFL;
114 
115  theInnerLayers.clear();
116  theInnerLayers.reserve(innerBL.size() + innerFL.size());
117  for (ConstBDLI bl = innerBL.begin(); bl != innerBL.end(); bl++)
118  theInnerLayers.push_back(*bl);
119  for (ConstFDLI fl = innerFL.begin(); fl != innerFL.end(); fl++)
120  theInnerLayers.push_back(*fl);
121 
122  // sort the inner layers
123  sort(theInnerLayers.begin(), theInnerLayers.end(), sorter);
126 }
127 
129  const ForwardDetLayer* fadditional = dynamic_cast<const ForwardDetLayer*>(additional);
130  const BarrelDetLayer* badditional = dynamic_cast<const BarrelDetLayer*>(additional);
131  if (badditional) {
132  if (direction == insideOut) {
133  theOuterBarrelLayers.push_back(badditional);
134  theOuterLayers.push_back(badditional);
135  return;
136  }
137  theInnerBarrelLayers.push_back(badditional);
138  theInnerLayers.push_back(badditional);
139  return;
140  } else if (fadditional) {
141  if (direction == insideOut) {
142  theOuterForwardLayers.push_back(fadditional);
143  theOuterLayers.push_back(badditional);
144  return;
145  }
146  theInnerForwardLayers.push_back(fadditional);
147  theInnerLayers.push_back(badditional);
148  return;
149  }
150  edm::LogError("TkNavigation") << "trying to add neither a ForwardDetLayer nor a BarrelDetLayer";
151  return;
152 }
void setDetLayer(const DetLayer *dl) override
Common base class.
#define LIKELY(x)
Definition: Likely.h:20
PropagationDirection
Log< level::Error, false > LogError
SimpleForwardNavigableLayer(const ForwardDetLayer *detLayer, const BDLC &outerBL, const FDLC &outerFL, const MagneticField *field, float epsilon, bool checkCrossingSide=true)
const GlobalTrajectoryParameters & parameters() const
GlobalPoint position() const
std::vector< const DetLayer * > compatibleLayers(NavigationDirection direction) const override
std::vector< const ForwardDetLayer * > FDLC
FDLC::const_iterator ConstFDLI
GlobalVector momentum() const
bool wellInside(const FreeTrajectoryState &fts, PropagationDirection dir, const BarrelDetLayer *bl, DLC &result) const
std::vector< const DetLayer * > nextLayers(NavigationDirection direction) const override
static int position[264][3]
Definition: ReadPGInfo.cc:289
void setAdditionalLink(const DetLayer *, NavigationDirection direction=insideOut) override
BDLC::const_iterator ConstBDLI
void setInwardLinks(const BDLC &, const FDLC &, TkLayerLess sorter=TkLayerLess(outsideIn)) override
std::vector< const BarrelDetLayer * > BDLC