CMS 3D CMS Logo

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

#include <MuDetRod.h>

Inheritance diagram for MuDetRod:
DetRodOneR DetRod GeometricSearchDet

Public Member Functions

virtual std::pair< bool,
TrajectoryStateOnSurface
compatible (const TrajectoryStateOnSurface &ts, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual std::vector< DetWithStatecompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual const std::vector
< const GeometricSearchDet * > & 
components () const
 Returns basic components, if any. More...
 
virtual std::vector< DetGroupgroupedCompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
 MuDetRod (std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
 Construct from iterators on GeomDet*. More...
 
 MuDetRod (const std::vector< const GeomDet * > &dets)
 Construct from a std::vector of GeomDet*. More...
 
virtual ~MuDetRod ()
 Destructor. More...
 
- Public Member Functions inherited from DetRodOneR
virtual const std::vector
< const GeomDet * > & 
basicComponents () const
 
 DetRodOneR (std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
 Construct from iterators on GeomDet*. More...
 
 DetRodOneR (const std::vector< const GeomDet * > &dets)
 Construct from a std::vector of GeomDet*. More...
 
virtual ~DetRodOneR ()
 
- Public Member Functions inherited from DetRod
virtual const PlanespecificSurface () const
 Return the rod surface as a Plane. More...
 
virtual const BoundSurfacesurface () const
 The surface of the GeometricSearchDet. More...
 
virtual ~DetRod ()
 
- Public Member Functions inherited from GeometricSearchDet
virtual void compatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
 
 GeometricSearchDet (bool doHaveGroups)
 
virtual void groupedCompatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const
 
bool hasGroups () const
 
virtual const
Surface::PositionType
position () const
 Returns position of the surface. More...
 
virtual ~GeometricSearchDet ()
 

Private Types

typedef GenericBinFinderInZ
< float, GeomDet
BinFinderType
 

Private Member Functions

void init ()
 

Private Attributes

BinFinderType theBinFinder
 

Additional Inherited Members

- Public Types inherited from DetRodOneR
typedef std::vector
< GeometricSearchDet * > 
DetContainer
 
- Public Types inherited from GeometricSearchDet
typedef std::pair< const
GeomDet
*, TrajectoryStateOnSurface
DetWithState
 
typedef BoundSurface::PositionType PositionType
 
typedef BoundSurface::RotationType RotationType
 
typedef TrajectoryStateOnSurface TrajectoryState
 
- Protected Member Functions inherited from DetRodOneR
bool add (int idet, std::vector< DetWithState > &result, const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 Query detector idet for compatible and add the output to result. More...
 
void initialize ()
 
- Protected Member Functions inherited from DetRod
void setPlane (Plane *plane)
 Set the rod's plane. More...
 
- Protected Attributes inherited from DetRodOneR
std::vector< const GeomDet * > theDets
 
- Protected Attributes inherited from GeometricSearchDet
bool haveGroups
 
GeomDetCompatibilityChecker theCompatibilityChecker
 

Detailed Description

A rod of aligned equal-sized non-overlapping detectors. Designed for barrel muon DT/RPC chambers.

Author
N. Amapane - INFN Torino

Definition at line 17 of file MuDetRod.h.

Member Typedef Documentation

Definition at line 52 of file MuDetRod.h.

Constructor & Destructor Documentation

MuDetRod::MuDetRod ( std::vector< const GeomDet * >::const_iterator  first,
std::vector< const GeomDet * >::const_iterator  last 
)

Construct from iterators on GeomDet*.

Definition at line 17 of file MuDetRod.cc.

References init().

19  : DetRodOneR(first,last) {
20  init();
21 }
DetRodOneR(std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
Construct from iterators on GeomDet*.
Definition: DetRodOneR.cc:15
void init()
Definition: MuDetRod.cc:29
MuDetRod::MuDetRod ( const std::vector< const GeomDet * > &  dets)

Construct from a std::vector of GeomDet*.

Definition at line 23 of file MuDetRod.cc.

References init().

24  : DetRodOneR(vdets) {
25  init();
26 }
DetRodOneR(std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
Construct from iterators on GeomDet*.
Definition: DetRodOneR.cc:15
void init()
Definition: MuDetRod.cc:29
MuDetRod::~MuDetRod ( )
virtual

Destructor.

Definition at line 34 of file MuDetRod.cc.

34 {}

Member Function Documentation

pair< bool, TrajectoryStateOnSurface > MuDetRod::compatible ( const TrajectoryStateOnSurface ts,
const Propagator ,
const MeasurementEstimator  
) const
virtual

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 46 of file MuDetRod.cc.

References MeasurementEstimator::estimate(), TrajectoryStateOnSurface::isValid(), AnalysisDataFormats_SUSYBSMObjects::ms, Propagator::propagate(), and DetRod::specificSurface().

Referenced by compatibleDets().

47  {
48 
49  TrajectoryStateOnSurface ms = prop.propagate(ts,specificSurface());
50  if (ms.isValid()) return make_pair(est.estimate(ms, specificSurface()) != 0, ms);
51  else return make_pair(false, ms);
52 }
virtual const Plane & specificSurface() const
Return the rod surface as a Plane.
Definition: DetRod.h:27
susybsm::MuonSegment ms
Definition: classes.h:31
vector< GeometricSearchDet::DetWithState > MuDetRod::compatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
virtual

Returns all Dets compatible with a trajectory state according to the estimator est. The startingState should be propagated to the surface of each compatible Det using the Propagator passed as an argument. The default implementation should be overridden in dets with specific surface types to avoid propagation to a generic Surface

Reimplemented from GeometricSearchDet.

Definition at line 56 of file MuDetRod.cc.

References DetRodOneR::add(), DetRodOneR::basicComponents(), GenericBinFinderInZ< T, G >::binIndex(), compatible(), TrajectoryStateOnSurface::globalPosition(), LogTrace, MeasurementEstimator::maximalLocalDisplacement(), metname, PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), GloballyPositioned< T >::position(), query::result, AlCaHLTBitMon_QueryRunRegistry::string, DetRod::surface(), theBinFinder, toLocal(), PV2DBase< T, PVType, FrameType >::y(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

58  {
59  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuDetRod";
60 
61  LogTrace(metname) << "MuDetRod::compatibleDets, Surface at R,phi: "
62  << surface().position().perp() << ","
63  << surface().position().phi() << " DetRod pos.";
64  // FIXME << " TS at R,phi: " << startingState.position().perp() << ","
65  // << startingState.position().phi()
66 
67 
68  vector<DetWithState> result;
69 
70  // Propagate and check that the result is within bounds
71  pair<bool, TrajectoryStateOnSurface> compat =
72  compatible(startingState, prop, est);
73 
74  if (!compat.first) {
75  LogTrace(metname) << " MuDetRod::compatibleDets: not compatible"
76  << " (should not have been selected!)";
77  return result;
78  }
79 
80  // Find the most probable destination component
81  TrajectoryStateOnSurface& tsos = compat.second;
82  GlobalPoint startPos = tsos.globalPosition();
83  int closest = theBinFinder.binIndex(startPos.z());
84  const vector<const GeomDet*> dets = basicComponents();
85  LogTrace(metname) << " MuDetRod::compatibleDets, closest det: " << closest
86  << " pos: " << dets[closest]->surface().position()
87  << " impact " << startPos;
88 
89  // Add this detector, if it is compatible
90  // NOTE: add performs a null propagation
91  add(closest, result, tsos, prop, est);
92 
93  int nclosest = result.size(); int nnextdet=0; // just DEBUG counters
94 
95  // Try the neighbors on each side until no more compatible.
96  // If closest is not compatible the next cannot be either
97  if (!result.empty()) {
98  const BoundPlane& closestPlane(dets[closest]->surface());
100  est.maximalLocalDisplacement( result.front().second, closestPlane);
101 
102  // detHalfLen is assumed to be the same for all detectors.
103  float detHalfLen = closestPlane.bounds().length()/2.;
104 
105  for (unsigned int idet=closest+1; idet < dets.size(); idet++) {
106  LocalPoint nextPos(dets[idet]->toLocal(startPos));
107  if (fabs(nextPos.y()) < detHalfLen + maxDistance.y()) {
108  LogTrace(metname) << " negativeZ: det:" << idet
109  << " pos " << nextPos.y()
110  << " maxDistance " << maxDistance.y();
111  nnextdet++;
112  if ( !add(idet, result, tsos, prop, est)) break;
113  } else {
114  break;
115  }
116  }
117 
118  for (int idet=closest-1; idet >= 0; idet--) {
119  LocalPoint nextPos( dets[idet]->toLocal(startPos));
120  if (fabs(nextPos.y()) < detHalfLen + maxDistance.y()) {
121  LogTrace(metname) << " positiveZ: det:" << idet
122  << " pos " << nextPos.y()
123  << " maxDistance " << maxDistance.y();
124  nnextdet++;
125  if ( !add(idet, result, tsos, prop, est)) break;
126  } else {
127  break;
128  }
129  }
130  }
131 
132  LogTrace(metname) << " MuDetRod::compatibleDets, size: " << result.size()
133  << " on closest: " << nclosest
134  << " # checked dets: " << nnextdet+1;
135  if (result.size()==0) {
136  LogTrace(metname) << " ***Rod not compatible---should have been discarded before!!!";
137  }
138  return result;
139 }
T y() const
Definition: PV2DBase.h:46
T perp() const
Definition: PV3DBase.h:72
const std::string metname
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
GlobalPoint globalPosition() const
bool add(int idet, std::vector< DetWithState > &result, const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
Query detector idet for compatible and add the output to result.
Definition: DetRodOneR.cc:42
LocalVector toLocal(const reco::Track::Vector &v, const Surface &s)
virtual std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &ts, const Propagator &prop, const MeasurementEstimator &est) const
Definition: MuDetRod.cc:46
T z() const
Definition: PV3DBase.h:64
tuple result
Definition: query.py:137
#define LogTrace(id)
virtual Local2DVector maximalLocalDisplacement(const TrajectoryStateOnSurface &ts, const Plane &plane) const
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
Definition: DetRod.h:21
BinFinderType theBinFinder
Definition: MuDetRod.h:53
virtual int binIndex(T z) const
returns an index in the valid range for the bin closest to Z
virtual const std::vector< const GeomDet * > & basicComponents() const
Definition: DetRodOneR.h:28
const PositionType & position() const
const vector< const GeometricSearchDet * > & MuDetRod::components ( ) const
virtual

Returns basic components, if any.

Returns direct components, if any

Implements GeometricSearchDet.

Definition at line 37 of file MuDetRod.cc.

References gather_cfg::cout, and query::result.

37  {
38 
39  // FIXME dummy impl.
40  cout << "temporary dummy implementation of MuDetRod::components()!!" << endl;
41  static const vector<const GeometricSearchDet*> result;
42  return result;
43 }
tuple result
Definition: query.py:137
tuple cout
Definition: gather_cfg.py:121
vector< DetGroup > MuDetRod::groupedCompatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
virtual

Similar to compatibleDets(), but the compatible Dets are grouped in one or more groups. Dets are put in the same group if they are mutually exclusive for track crossing, i.e. a reconstructible track cannot cross more than one Det from a group. Pathological tracks (spirals etc.) can of course violate this rule.
The DetGroups are sorted in the sequence of crossing by a track. In order to define the direction of crossing the Propagator used in this method should have a defined direction() : either "alongMomentum" or "oppositeToMomentum" but not "anyDirection".
The three signatures of this method differ by the input trajectory state arguments: the starting state can be a TrajectoryStateOnSurface or a FreeTrajectoryState, and the state on this CompositeDet may be already known or not. The last two arguments are as for the method compatibleDets().
First signature: The first argument is a TrajectoryStateOnSurface, usually not on the surface of this CompositeDet.

Reimplemented from GeometricSearchDet.

Definition at line 143 of file MuDetRod.cc.

References gather_cfg::cout, and query::result.

145  {
146  // FIXME should return only 1 group
147  cout << "dummy implementation of MuDetRod::groupedCompatibleDets()" << endl;
148  vector<DetGroup> result;
149  return result;
150 }
tuple result
Definition: query.py:137
tuple cout
Definition: gather_cfg.py:121
void MuDetRod::init ( void  )
private

Definition at line 29 of file MuDetRod.cc.

References DetRodOneR::basicComponents(), begin, end, and theBinFinder.

Referenced by MuDetRod().

29  {
31 }
#define end
Definition: vmac.h:37
GenericBinFinderInZ< float, GeomDet > BinFinderType
Definition: MuDetRod.h:52
BinFinderType theBinFinder
Definition: MuDetRod.h:53
#define begin
Definition: vmac.h:30
virtual const std::vector< const GeomDet * > & basicComponents() const
Definition: DetRodOneR.h:28

Member Data Documentation

BinFinderType MuDetRod::theBinFinder
private

Definition at line 53 of file MuDetRod.h.

Referenced by compatibleDets(), and init().