CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes
MuRingForwardDoubleLayer Class Reference

#include <MuRingForwardDoubleLayer.h>

Inheritance diagram for MuRingForwardDoubleLayer:
RingedForwardLayer

Public Member Functions

const MuRingForwardLayerbackLayer () const
 
const std::vector< const GeomDet * > & basicComponents () const override
 
std::pair< bool, TrajectoryStateOnSurfacecompatible (const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const override
 
std::vector< DetWithStatecompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
 
const std::vector< const GeometricSearchDet * > & components () const override
 
const MuRingForwardLayerfrontLayer () const
 
std::vector< DetGroupgroupedCompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
 
bool isCrack (const GlobalPoint &gp) const
 
bool isInsideOut (const TrajectoryStateOnSurface &tsos) const
 
 MuRingForwardDoubleLayer (const std::vector< const ForwardDetRing *> &frontRings, const std::vector< const ForwardDetRing *> &backRings)
 Constructor, takes ownership of pointers. More...
 
virtual const std::vector< const ForwardDetRing * > & rings () const
 Return the vector of rings. More...
 
void selfTest () const
 
SubDetector subDetector () const override
 
 ~MuRingForwardDoubleLayer () override
 

Protected Member Functions

BoundDiskcomputeSurface () override
 

Private Attributes

MuRingForwardLayer theBackLayer
 
std::vector< const GeomDet * > theBasicComponents
 
std::vector< const GeometricSearchDet * > theComponents
 
MuRingForwardLayer theFrontLayer
 
std::vector< const ForwardDetRing * > theRings
 

Detailed Description

A plane composed two layers of disks. Represents forward muon CSC stations.

Author
R. Wilkinson

Definition at line 19 of file MuRingForwardDoubleLayer.h.

Constructor & Destructor Documentation

◆ MuRingForwardDoubleLayer()

MuRingForwardDoubleLayer::MuRingForwardDoubleLayer ( const std::vector< const ForwardDetRing *> &  frontRings,
const std::vector< const ForwardDetRing *> &  backRings 
)

Constructor, takes ownership of pointers.

Definition at line 21 of file MuRingForwardDoubleLayer.cc.

References basicComponents(), computeSurface(), LogTrace, metname, selfTest(), AlCaHLTBitMon_QueryRunRegistry::string, theBasicComponents, theComponents, and theRings.

23  : RingedForwardLayer(true),
24  theFrontLayer(frontRings),
25  theBackLayer(backRings),
26  theRings(frontRings), // add back later
27  theComponents(),
29  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer";
30 
31  theRings.insert(theRings.end(), backRings.begin(), backRings.end());
32  theComponents = std::vector<const GeometricSearchDet*>(theRings.begin(), theRings.end());
33 
34  // Cache chamber pointers (the basic components_)
35  // and find extension in R and Z
36  for (vector<const ForwardDetRing*>::const_iterator it = theRings.begin(); it != theRings.end(); it++) {
37  vector<const GeomDet*> tmp2 = (*it)->basicComponents();
38  theBasicComponents.insert(theBasicComponents.end(), tmp2.begin(), tmp2.end());
39  }
40 
41  setSurface(computeSurface());
42 
43  LogTrace(metname) << "Constructing MuRingForwardDoubleLayer: " << basicComponents().size() << " Dets "
44  << theRings.size() << " Rings "
45  << " Z: " << specificSurface().position().z() << " R1: " << specificSurface().innerRadius()
46  << " R2: " << specificSurface().outerRadius();
47 
48  selfTest();
49 }
ForwardDetLayer RingedForwardLayer
const std::string metname
std::vector< const GeomDet * > theBasicComponents
std::vector< const ForwardDetRing * > theRings
#define LogTrace(id)
const std::vector< const GeomDet * > & basicComponents() const override
BoundDisk * computeSurface() override
std::vector< const GeometricSearchDet * > theComponents

◆ ~MuRingForwardDoubleLayer()

MuRingForwardDoubleLayer::~MuRingForwardDoubleLayer ( )
inlineoverride

Definition at line 25 of file MuRingForwardDoubleLayer.h.

25 {}

Member Function Documentation

◆ backLayer()

const MuRingForwardLayer* MuRingForwardDoubleLayer::backLayer ( ) const
inline

Definition at line 59 of file MuRingForwardDoubleLayer.h.

References theBackLayer.

59 { return &theBackLayer; }

◆ basicComponents()

const std::vector<const GeomDet*>& MuRingForwardDoubleLayer::basicComponents ( ) const
inlineoverride

Definition at line 29 of file MuRingForwardDoubleLayer.h.

References theBasicComponents.

Referenced by MuRingForwardDoubleLayer().

29 { return theBasicComponents; }
std::vector< const GeomDet * > theBasicComponents

◆ compatible()

std::pair< bool, TrajectoryStateOnSurface > MuRingForwardDoubleLayer::compatible ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
override

Definition at line 74 of file MuRingForwardDoubleLayer.cc.

References PbPb_ZMuSkimMuonDPG_cff::deltaR, submitPVResolutionJobs::err, TrajectoryStateOnSurface::hasError(), insideOut, isInsideOut(), TrajectoryStateOnSurface::isValid(), TrajectoryStateOnSurface::localDirection(), TrajectoryStateOnSurface::localError(), TrajectoryStateOnSurface::localPosition(), LogTrace, metname, HLTSiStripMonitoring_cff::nSigma, LocalTrajectoryError::positionError(), Propagator::propagate(), mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, funct::tan(), theBackLayer, theFrontLayer, PV3DBase< T, PVType, FrameType >::theta(), createJobs::tmp, SiStripMonitorCluster_cfi::zmax, and SiStripMonitorCluster_cfi::zmin.

Referenced by compatibleDets().

75  {
76  // mostly copied from ForwardDetLayer, except propagates to closest surface,
77  // not to center
78  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer";
79 
80  bool insideOut = isInsideOut(startingState);
81  const MuRingForwardLayer& closerLayer = (insideOut) ? theFrontLayer : theBackLayer;
82  LogTrace("Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer")
83  << "MuRingForwardDoubleLayer::compatible is assuming inside-out direction: " << insideOut;
84 
85  //std::pair<bool, TrajectoryStateOnSurface> result
86  // = closerLayer.compatible(startingState, prop, est);
87  //if(!result.first)
88  // {
89  // result = furtherLayer.compatible(startingState, prop, est);
90  //}
91 
92  TrajectoryStateOnSurface myState = prop.propagate(startingState, closerLayer.specificSurface());
93  if (!myState.isValid())
94  return make_pair(false, myState);
95 
96  // take into account the thickness of the layer
97  float deltaR = surface().bounds().thickness() / 2. * fabs(tan(myState.localDirection().theta()));
98 
99  // take into account the error on the predicted state
100  const float nSigma = 3.;
101  if (myState.hasError()) {
102  LocalError err = myState.localError().positionError();
103  // ignore correlation for the moment...
104  deltaR += nSigma * sqrt(err.xx() + err.yy());
105  }
106 
107  float zPos = (zmax() + zmin()) / 2.;
108  SimpleDiskBounds tmp(rmin() - deltaR, rmax() + deltaR, zmin() - zPos, zmax() - zPos);
109 
110  return make_pair(tmp.inside(myState.localPosition()), myState);
111 }
const LocalTrajectoryError & localError() const
const std::string metname
bool isInsideOut(const TrajectoryStateOnSurface &tsos) const
LocalError positionError() const
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
#define LogTrace(id)
T sqrt(T t)
Definition: SSEVec.h:19
LocalVector localDirection() const
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
tmp
align.sh
Definition: createJobs.py:716
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72

◆ compatibleDets()

vector< GeometricSearchDet::DetWithState > MuRingForwardDoubleLayer::compatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
override

Definition at line 113 of file MuRingForwardDoubleLayer.cc.

References compatible(), groupedCompatibleDets(), LogTrace, metname, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.

114  {
115  vector<DetWithState> result;
116  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer";
117  pair<bool, TrajectoryStateOnSurface> compat = compatible(startingState, prop, est);
118 
119  if (!compat.first) {
120  LogTrace(metname) << " MuRingForwardDoubleLayer::compatibleDets: not compatible"
121  << " (should not have been selected!)";
122  return result;
123  }
124 
125  TrajectoryStateOnSurface& tsos = compat.second;
126 
127  // standard implementation of compatibleDets() for class which have
128  // groupedCompatibleDets implemented.
129  // This code should be moved in a common place intead of being
130  // copied many times.
131  vector<DetGroup> vectorGroups = groupedCompatibleDets(tsos, prop, est);
132  for (vector<DetGroup>::const_iterator itDG = vectorGroups.begin(); itDG != vectorGroups.end(); itDG++) {
133  for (vector<DetGroupElement>::const_iterator itDGE = itDG->begin(); itDGE != itDG->end(); itDGE++) {
134  result.push_back(DetWithState(itDGE->det(), itDGE->trajectoryState()));
135  }
136  }
137  return result;
138 }
const std::string metname
std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const override
#define LogTrace(id)
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
std::pair< const GeomDet *, TrajectoryStateOnSurface > DetWithState

◆ components()

const std::vector<const GeometricSearchDet*>& MuRingForwardDoubleLayer::components ( ) const
inlineoverride

Definition at line 31 of file MuRingForwardDoubleLayer.h.

References theComponents.

31 { return theComponents; }
std::vector< const GeometricSearchDet * > theComponents

◆ computeSurface()

BoundDisk * MuRingForwardDoubleLayer::computeSurface ( )
overrideprotected

Definition at line 51 of file MuRingForwardDoubleLayer.cc.

References SiStripPI::max, SiStripPI::min, makeMuonMisalignmentScenario::rot, theBackLayer, theFrontLayer, SiStripMonitorCluster_cfi::zmax, and SiStripMonitorCluster_cfi::zmin.

Referenced by MuRingForwardDoubleLayer().

51  {
52  const BoundDisk& frontDisk = theFrontLayer.specificSurface();
53  const BoundDisk& backDisk = theBackLayer.specificSurface();
54 
55  float rmin = min(frontDisk.innerRadius(), backDisk.innerRadius());
56  float rmax = max(frontDisk.outerRadius(), backDisk.outerRadius());
57  float zmin = frontDisk.position().z();
58  float halfThickness = frontDisk.bounds().thickness() / 2.;
59  zmin = (zmin > 0) ? zmin - halfThickness : zmin + halfThickness;
60  float zmax = backDisk.position().z();
61  halfThickness = backDisk.bounds().thickness() / 2.;
62  zmax = (zmax > 0) ? zmax + halfThickness : zmax - halfThickness;
63  float zPos = (zmax + zmin) / 2.;
64  PositionType pos(0., 0., zPos);
66 
67  return new BoundDisk(pos, rot, new SimpleDiskBounds(rmin, rmax, zmin - zPos, zmax - zPos));
68 }
TkRotation< Scalar > RotationType
Definition: Definitions.h:27
Point3DBase< Scalar, GlobalTag > PositionType
Definition: Definitions.h:28
Disk BoundDisk
Definition: BoundDisk.h:54

◆ frontLayer()

const MuRingForwardLayer* MuRingForwardDoubleLayer::frontLayer ( ) const
inline

Definition at line 58 of file MuRingForwardDoubleLayer.h.

References theFrontLayer.

58 { return &theFrontLayer; }

◆ groupedCompatibleDets()

vector< DetGroup > MuRingForwardDoubleLayer::groupedCompatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
override

Definition at line 140 of file MuRingForwardDoubleLayer.cc.

References MuRingForwardLayer::compatibleDets(), LogTrace, metname, mps_fire::result, AlCaHLTBitMon_QueryRunRegistry::string, theBackLayer, and theFrontLayer.

Referenced by compatibleDets().

142  {
143  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer";
144  vector<GeometricSearchDet::DetWithState> detWithStates1, detWithStates2;
145 
146  LogTrace(metname) << "groupedCompatibleDets are currently given always in inside-out order";
147  // this should be fixed either in RecoMuon/MeasurementDet/MuonDetLayerMeasurements or
148  // RecoMuon/DetLayers/MuRingForwardDoubleLayer
149  // and removed the reverse operation in StandAloneMuonFilter::findBestMeasurements
150 
151  detWithStates1 = theFrontLayer.compatibleDets(startingState, prop, est);
152  detWithStates2 = theBackLayer.compatibleDets(startingState, prop, est);
153 
154  vector<DetGroup> result;
155  if (!detWithStates1.empty())
156  result.push_back(DetGroup(detWithStates1));
157  if (!detWithStates2.empty())
158  result.push_back(DetGroup(detWithStates2));
159  LogTrace(metname) << "DoubleLayer Compatible dets: " << result.size();
160  return result;
161 }
const std::string metname
#define LogTrace(id)
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override

◆ isCrack()

bool MuRingForwardDoubleLayer::isCrack ( const GlobalPoint gp) const

Definition at line 163 of file MuRingForwardDoubleLayer.cc.

References cms::cuda::assert(), runTauDisplay::gp, LogTrace, metname, alignCSCRings::r, mps_fire::result, MuRingForwardLayer::rings(), ForwardDetRing::specificSurface(), AlCaHLTBitMon_QueryRunRegistry::string, and theBackLayer.

163  {
164  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuRingForwardDoubleLayer";
165  // approximate
166  bool result = false;
167  double r = gp.perp();
168  const std::vector<const ForwardDetRing*>& backRings = theBackLayer.rings();
169  if (backRings.size() > 1) {
170  const MuDetRing* innerRing = dynamic_cast<const MuDetRing*>(backRings[0]);
171  const MuDetRing* outerRing = dynamic_cast<const MuDetRing*>(backRings[1]);
172  assert(innerRing && outerRing);
173  float crackInner = innerRing->specificSurface().outerRadius();
174  float crackOuter = outerRing->specificSurface().innerRadius();
175  LogTrace(metname) << "In a crack:" << crackInner << " " << r << " " << crackOuter;
176  if (r > crackInner && r < crackOuter)
177  return true;
178  }
179  // non-overlapping rings
180  //double phi = gp.phi().degrees();
181  return result;
182 }
const std::string metname
const BoundDisk & specificSurface() const
Return the ring surface as a BoundDisk.
assert(be >=bs)
#define LogTrace(id)
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.

◆ isInsideOut()

bool MuRingForwardDoubleLayer::isInsideOut ( const TrajectoryStateOnSurface tsos) const

Definition at line 70 of file MuRingForwardDoubleLayer.cc.

References PV3DBase< T, PVType, FrameType >::basicVector(), Basic3DVector< T >::dot(), TrajectoryStateOnSurface::globalMomentum(), and TrajectoryStateOnSurface::globalPosition().

Referenced by compatible().

70  {
71  return tsos.globalPosition().basicVector().dot(tsos.globalMomentum().basicVector()) > 0;
72 }
GlobalPoint globalPosition() const
const BasicVectorType & basicVector() const
Definition: PV3DBase.h:53
GlobalVector globalMomentum() const
T dot(const Basic3DVector &rh) const
Scalar product, or "dot" product, with a vector of same type.

◆ rings()

virtual const std::vector<const ForwardDetRing*>& MuRingForwardDoubleLayer::rings ( ) const
inlinevirtual

Return the vector of rings.

Definition at line 54 of file MuRingForwardDoubleLayer.h.

References theRings.

54 { return theRings; }
std::vector< const ForwardDetRing * > theRings

◆ selfTest()

void MuRingForwardDoubleLayer::selfTest ( ) const

Definition at line 184 of file MuRingForwardDoubleLayer.cc.

References cms::cuda::assert(), MuRingForwardLayer::basicComponents(), theBackLayer, and theFrontLayer.

Referenced by MuRingForwardDoubleLayer().

184  {
185  const std::vector<const GeomDet*>& frontDets = theFrontLayer.basicComponents();
186  const std::vector<const GeomDet*>& backDets = theBackLayer.basicComponents();
187 
188  std::vector<const GeomDet*>::const_iterator frontItr = frontDets.begin(), lastFront = frontDets.end(),
189  backItr = backDets.begin(), lastBack = backDets.end();
190 
191  // test that each front z is less than each back z
192  for (; frontItr != lastFront; ++frontItr) {
193  float frontz = fabs((**frontItr).surface().position().z());
194  for (; backItr != lastBack; ++backItr) {
195  float backz = fabs((**backItr).surface().position().z());
196  assert(frontz < backz);
197  }
198  }
199 }
assert(be >=bs)
const std::vector< const GeomDet * > & basicComponents() const override

◆ subDetector()

SubDetector MuRingForwardDoubleLayer::subDetector ( ) const
inlineoverride

Definition at line 49 of file MuRingForwardDoubleLayer.h.

References MuRingForwardLayer::subDetector(), and theBackLayer.

49 { return theBackLayer.subDetector(); }
SubDetector subDetector() const override

Member Data Documentation

◆ theBackLayer

MuRingForwardLayer MuRingForwardDoubleLayer::theBackLayer
private

◆ theBasicComponents

std::vector<const GeomDet*> MuRingForwardDoubleLayer::theBasicComponents
private

Definition at line 71 of file MuRingForwardDoubleLayer.h.

Referenced by basicComponents(), and MuRingForwardDoubleLayer().

◆ theComponents

std::vector<const GeometricSearchDet*> MuRingForwardDoubleLayer::theComponents
private

Definition at line 70 of file MuRingForwardDoubleLayer.h.

Referenced by components(), and MuRingForwardDoubleLayer().

◆ theFrontLayer

MuRingForwardLayer MuRingForwardDoubleLayer::theFrontLayer
private

◆ theRings

std::vector<const ForwardDetRing*> MuRingForwardDoubleLayer::theRings
private

Definition at line 69 of file MuRingForwardDoubleLayer.h.

Referenced by MuRingForwardDoubleLayer(), and rings().