CMS 3D CMS Logo

MTDRingForwardDoubleLayer.cc
Go to the documentation of this file.
1 //#define EDM_ML_DEBUG
2 
15 
17 
18 #include <algorithm>
19 #include <iostream>
20 #include <vector>
21 
22 using namespace std;
23 
24 MTDRingForwardDoubleLayer::MTDRingForwardDoubleLayer(const vector<const ForwardDetRing*>& frontRings,
25  const vector<const ForwardDetRing*>& backRings)
27  theFrontLayer(frontRings),
28  theBackLayer(backRings),
29  theRings(frontRings), // add back later
30  theComponents(),
31  theBasicComponents() {
32  theRings.insert(theRings.end(), backRings.begin(), backRings.end());
33  theComponents = std::vector<const GeometricSearchDet*>(theRings.begin(), theRings.end());
34 
35  // Cache chamber pointers (the basic components_)
36  // and find extension in R and Z
37  for (vector<const ForwardDetRing*>::const_iterator it = theRings.begin(); it != theRings.end(); it++) {
38  vector<const GeomDet*> tmp2 = (*it)->basicComponents();
39  theBasicComponents.insert(theBasicComponents.end(), tmp2.begin(), tmp2.end());
40  }
41 
42  setSurface(computeSurface());
43 
44  LogTrace("MTDDetLayers") << "Constructing MTDRingForwardDoubleLayer: " << basicComponents().size() << " Dets "
45  << theRings.size() << " Rings "
46  << " Z: " << specificSurface().position().z() << " R1: " << specificSurface().innerRadius()
47  << " R2: " << specificSurface().outerRadius();
48 
49  selfTest();
50 }
51 
53  const BoundDisk& frontDisk = theFrontLayer.specificSurface();
54  const BoundDisk& backDisk = theBackLayer.specificSurface();
55 
56  float rmin = min(frontDisk.innerRadius(), backDisk.innerRadius());
57  float rmax = max(frontDisk.outerRadius(), backDisk.outerRadius());
58  float zmin = frontDisk.position().z();
59  float halfThickness = frontDisk.bounds().thickness() / 2.;
60  zmin = (zmin > 0) ? zmin - halfThickness : zmin + halfThickness;
61  float zmax = backDisk.position().z();
62  halfThickness = backDisk.bounds().thickness() / 2.;
63  zmax = (zmax > 0) ? zmax + halfThickness : zmax - halfThickness;
64  float zPos = (zmax + zmin) / 2.;
65  PositionType pos(0., 0., zPos);
67 
68  return new BoundDisk(pos, rot, new SimpleDiskBounds(rmin, rmax, zmin - zPos, zmax - zPos));
69 }
70 
72  return tsos.globalPosition().basicVector().dot(tsos.globalMomentum().basicVector()) > 0;
73 }
74 
75 std::pair<bool, TrajectoryStateOnSurface> MTDRingForwardDoubleLayer::compatible(
76  const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const {
77  // mostly copied from ForwardDetLayer, except propagates to closest surface,
78  // not to center
79 
80  bool insideOut = isInsideOut(startingState);
81  const MTDRingForwardLayer& closerLayer = (insideOut) ? theFrontLayer : theBackLayer;
82  LogTrace("MTDDetLayers") << "MTDRingForwardDoubleLayer::compatible is assuming inside-out direction: " << insideOut;
83 
84  TrajectoryStateOnSurface myState = prop.propagate(startingState, closerLayer.specificSurface());
85  if (!myState.isValid())
86  return make_pair(false, myState);
87 
88  // take into account the thickness of the layer
89  float deltaR = surface().bounds().thickness() / 2. * fabs(tan(myState.localDirection().theta()));
90 
91  // take into account the error on the predicted state
92  const float nSigma = 3.;
93  if (myState.hasError()) {
94  LocalError err = myState.localError().positionError();
95  // ignore correlation for the moment...
96  deltaR += nSigma * sqrt(err.xx() + err.yy());
97  }
98 
99  float zPos = (zmax() + zmin()) / 2.;
100  SimpleDiskBounds tmp(rmin() - deltaR, rmax() + deltaR, zmin() - zPos, zmax() - zPos);
101 
102  return make_pair(tmp.inside(myState.localPosition()), myState);
103 }
104 
105 vector<GeometricSearchDet::DetWithState> MTDRingForwardDoubleLayer::compatibleDets(
106  const TrajectoryStateOnSurface& startingState, const Propagator& prop, const MeasurementEstimator& est) const {
107  vector<DetWithState> result;
108  pair<bool, TrajectoryStateOnSurface> compat = compatible(startingState, prop, est);
109 
110  if (!compat.first) {
111  LogTrace("MTDDetLayers") << " MTDRingForwardDoubleLayer::compatibleDets: not compatible"
112  << " (should not have been selected!)";
113  return result;
114  }
115 
116  TrajectoryStateOnSurface& tsos = compat.second;
117 
118  // standard implementation of compatibleDets() for class which have
119  // groupedCompatibleDets implemented.
120  // This code should be moved in a common place intead of being
121  // copied many times.
122  vector<DetGroup> vectorGroups = groupedCompatibleDets(tsos, prop, est);
123  for (const auto& thisDG : vectorGroups) {
124  for (const auto& thisDGE : thisDG) {
125  result.emplace_back(DetWithState(thisDGE.det(), thisDGE.trajectoryState()));
126  }
127  }
128  return result;
129 }
130 
132  const Propagator& prop,
133  const MeasurementEstimator& est) const {
134  vector<GeometricSearchDet::DetWithState> detWithStates1, detWithStates2;
135 
136  LogTrace("MTDDetLayers") << "groupedCompatibleDets are currently given always in inside-out order";
137  // this should be fixed either in RecoMTD/MeasurementDet/MTDDetLayerMeasurements or
138  // RecoMTD/DetLayers/MTDRingForwardDoubleLayer
139 
140  detWithStates1 = theFrontLayer.compatibleDets(startingState, prop, est);
141  detWithStates2 = theBackLayer.compatibleDets(startingState, prop, est);
142 
143  vector<DetGroup> result;
144  if (!detWithStates1.empty())
145  result.push_back(DetGroup(detWithStates1));
146  if (!detWithStates2.empty())
147  result.push_back(DetGroup(detWithStates2));
148  LogTrace("MTDDetLayers") << "DoubleLayer Compatible dets: " << result.size();
149  return result;
150 }
151 
153  // approximate
154  bool result = false;
155  double r = gp.perp();
156  const std::vector<const ForwardDetRing*>& backRings = theBackLayer.rings();
157  if (backRings.size() > 1) {
158  const MTDDetRing* innerRing = dynamic_cast<const MTDDetRing*>(backRings[0]);
159  const MTDDetRing* outerRing = dynamic_cast<const MTDDetRing*>(backRings[1]);
160  assert(innerRing && outerRing);
161  float crackInner = innerRing->specificSurface().outerRadius();
162  float crackOuter = outerRing->specificSurface().innerRadius();
163  LogTrace("MTDDetLayers") << "In a crack:" << crackInner << " " << r << " " << crackOuter;
164  if (r > crackInner && r < crackOuter)
165  return true;
166  }
167  // non-overlapping rings
168  return result;
169 }
170 
172  const std::vector<const GeomDet*>& frontDets = theFrontLayer.basicComponents();
173  const std::vector<const GeomDet*>& backDets = theBackLayer.basicComponents();
174 
175  for (int iring = 0; iring <= ETLDetId::kETLv1maxRing; iring++) {
176  float frontz(0.);
177  float backz(1e3f);
178  for (const auto& thisFront : frontDets) {
179  if (static_cast<ETLDetId>(thisFront->geographicalId().rawId()).mtdRR() == iring) {
180  float tmpz(std::abs(thisFront->surface().position().z()));
181  if (tmpz > frontz) {
182  frontz = tmpz;
183  }
184  }
185  }
186  for (const auto& thisBack : backDets) {
187  if (static_cast<ETLDetId>(thisBack->geographicalId().rawId()).mtdRR() == iring) {
188  float tmpz(std::abs(thisBack->surface().position().z()));
189  if (tmpz < backz) {
190  backz = tmpz;
191  }
192  }
193  }
194  assert(frontz < backz);
195  }
196 }
Propagator.h
MeasurementEstimator
Definition: MeasurementEstimator.h:19
ForwardDetRing::specificSurface
const BoundDisk & specificSurface() const
Return the ring surface as a BoundDisk.
Definition: ForwardDetRing.h:27
MessageLogger.h
align::RotationType
TkRotation< Scalar > RotationType
Definition: Definitions.h:27
LocalTrajectoryError::positionError
LocalError positionError() const
Definition: LocalTrajectoryError.h:81
MTDRingForwardLayer
Definition: MTDRingForwardLayer.h:18
min
T min(T a, T b)
Definition: MathUtil.h:58
PV3DBase::theta
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
TrajectoryStateOnSurface::globalPosition
GlobalPoint globalPosition() const
Definition: TrajectoryStateOnSurface.h:65
pos
Definition: PixelAliasList.h:18
align::PositionType
Point3DBase< Scalar, GlobalTag > PositionType
Definition: Definitions.h:28
cms::cuda::assert
assert(be >=bs)
MTDRingForwardDoubleLayer::compatibleDets
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MTDRingForwardDoubleLayer.cc:105
ETLDetId.h
MTDRingForwardDoubleLayer::theBasicComponents
std::vector< const GeomDet * > theBasicComponents
Definition: MTDRingForwardDoubleLayer.h:71
createJobs.tmp
tmp
align.sh
Definition: createJobs.py:716
SiStripMonitorCluster_cfi.zmin
zmin
Definition: SiStripMonitorCluster_cfi.py:200
BoundDisk
SimpleDiskBounds
Definition: SimpleDiskBounds.h:11
Propagator
Definition: Propagator.h:44
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
MTDRingForwardDoubleLayer::theRings
std::vector< const ForwardDetRing * > theRings
Definition: MTDRingForwardDoubleLayer.h:69
SiStripMonitorCluster_cfi.zmax
zmax
Definition: SiStripMonitorCluster_cfi.py:201
TrajectoryStateOnSurface::localDirection
LocalVector localDirection() const
Definition: TrajectoryStateOnSurface.h:76
TrajectoryStateOnSurface::hasError
bool hasError() const
Definition: TrajectoryStateOnSurface.h:56
MTDRingForwardDoubleLayer::basicComponents
const std::vector< const GeomDet * > & basicComponents() const override
Definition: MTDRingForwardDoubleLayer.h:29
MeasurementEstimator.h
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
Basic3DVector::dot
T dot(const Basic3DVector &rh) const
Scalar product, or "dot" product, with a vector of same type.
Definition: extBasic3DVector.h:189
Point3DBase< float, GlobalTag >
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
MTDRingForwardDoubleLayer::theBackLayer
MTDRingForwardLayer theBackLayer
Definition: MTDRingForwardDoubleLayer.h:68
runTauDisplay.gp
gp
Definition: runTauDisplay.py:431
funct::true
true
Definition: Factorize.h:173
TrajectoryStateOnSurface::localPosition
LocalPoint localPosition() const
Definition: TrajectoryStateOnSurface.h:74
MTDRingForwardDoubleLayer.h
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
MTDDetRing.h
LocalError
Definition: LocalError.h:12
MTDRingForwardDoubleLayer::compatible
std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const override
Definition: MTDRingForwardDoubleLayer.cc:75
funct::tan
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
RingedForwardLayer
Propagator::propagate
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
DetWithState
std::pair< const GeomDet *, TrajectoryStateOnSurface > DetWithState
Definition: RPCRecHitFilter.h:58
submitPVResolutionJobs.err
err
Definition: submitPVResolutionJobs.py:85
MTDRingForwardDoubleLayer::groupedCompatibleDets
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MTDRingForwardDoubleLayer.cc:131
PV3DBase::basicVector
const BasicVectorType & basicVector() const
Definition: PV3DBase.h:53
alignCSCRings.r
r
Definition: alignCSCRings.py:93
MTDRingForwardDoubleLayer::selfTest
void selfTest() const
Definition: MTDRingForwardDoubleLayer.cc:171
TrajectoryStateOnSurface::globalMomentum
GlobalVector globalMomentum() const
Definition: TrajectoryStateOnSurface.h:66
GeomDet.h
std
Definition: JetResolutionObject.h:76
MTDRingForwardDoubleLayer::MTDRingForwardDoubleLayer
MTDRingForwardDoubleLayer(const std::vector< const ForwardDetRing * > &frontRings, const std::vector< const ForwardDetRing * > &backRings)
Constructor, takes ownership of pointers.
Definition: MTDRingForwardDoubleLayer.cc:24
MTDRingForwardDoubleLayer::theComponents
std::vector< const GeometricSearchDet * > theComponents
Definition: MTDRingForwardDoubleLayer.h:70
MTDRingForwardDoubleLayer::theFrontLayer
MTDRingForwardLayer theFrontLayer
Definition: MTDRingForwardDoubleLayer.h:67
MTDRingForwardLayer::compatibleDets
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MTDRingForwardLayer.cc:77
MTDRingForwardLayer::basicComponents
const std::vector< const GeomDet * > & basicComponents() const override
Definition: MTDRingForwardLayer.h:27
ETLDetId::kETLv1maxRing
static constexpr int kETLv1maxRing
Definition: ETLDetId.h:28
makeMuonMisalignmentScenario.rot
rot
Definition: makeMuonMisalignmentScenario.py:322
MTDRingForwardLayer::rings
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.
Definition: MTDRingForwardLayer.h:45
insideOut
Definition: NavigationDirection.h:4
MTDRingForwardDoubleLayer::computeSurface
BoundDisk * computeSurface() override
Definition: MTDRingForwardDoubleLayer.cc:52
DetGroup
Definition: DetGroup.h:41
mps_fire.result
result
Definition: mps_fire.py:311
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
SimpleDiskBounds.h
TrajectoryStateOnSurface::localError
const LocalTrajectoryError & localError() const
Definition: TrajectoryStateOnSurface.h:77
MTDRingForwardDoubleLayer::isCrack
bool isCrack(const GlobalPoint &gp) const
Definition: MTDRingForwardDoubleLayer.cc:152
BoundDisk
Disk BoundDisk
Definition: BoundDisk.h:54
MTDRingForwardDoubleLayer::isInsideOut
bool isInsideOut(const TrajectoryStateOnSurface &tsos) const
Definition: MTDRingForwardDoubleLayer.cc:71
MTDDetRing
Definition: MTDDetRing.h:16
HLTSiStripMonitoring_cff.nSigma
nSigma
Definition: HLTSiStripMonitoring_cff.py:151
TrajectoryStateOnSurface::isValid
bool isValid() const
Definition: TrajectoryStateOnSurface.h:54