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
MuDetRing Class Reference

#include <MuDetRing.h>

Inheritance diagram for MuDetRing:
ForwardDetRingOneZ ForwardDetRing 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
 
 MuDetRing (std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
 Construct from iterators on GeomDet*. More...
 
 MuDetRing (const std::vector< const GeomDet * > &dets)
 Construct from a vector of GeomDet*. More...
 
virtual ~MuDetRing ()
 
- Public Member Functions inherited from ForwardDetRingOneZ
virtual const std::vector
< const GeomDet * > & 
basicComponents () const
 
 ForwardDetRingOneZ (std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
 Construct from iterators on Det*. More...
 
 ForwardDetRingOneZ (const std::vector< const GeomDet * > &dets)
 
virtual ~ForwardDetRingOneZ ()
 
- Public Member Functions inherited from ForwardDetRing
virtual void compatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
 
const BoundDiskspecificSurface () const
 Return the ring surface as a BoundDisk. More...
 
virtual const BoundSurfacesurface () const
 The surface of the GeometricSearchDet. More...
 
virtual ~ForwardDetRing ()
 
- Public Member Functions inherited from GeometricSearchDet
 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 PeriodicBinFinderInPhi
< float > 
BinFinderType
 

Private Member Functions

void init ()
 

Private Attributes

BinFinderType theBinFinder
 

Additional Inherited Members

- 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 ForwardDetRingOneZ
bool add (int idet, std::vector< DetWithState > &result, const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est) const
 
- Protected Member Functions inherited from ForwardDetRing
void setDisk (BoundDisk *disk)
 Set the rod's disk. More...
 
- Protected Attributes inherited from GeometricSearchDet
bool haveGroups
 
GeomDetCompatibilityChecker theCompatibilityChecker
 

Detailed Description

A ring of periodic, possibly overlapping vertical detectors. Designed for forward muon CSC/RPC chambers.

Author
N. Amapane - INFN Torino

Definition at line 16 of file MuDetRing.h.

Member Typedef Documentation

Definition at line 49 of file MuDetRing.h.

Constructor & Destructor Documentation

MuDetRing::MuDetRing ( 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 MuDetRing.cc.

References init().

18  :
20 {
21  init();
22 }
void init()
Definition: MuDetRing.cc:32
ForwardDetRingOneZ(std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
Construct from iterators on Det*.
MuDetRing::MuDetRing ( const std::vector< const GeomDet * > &  dets)

Construct from a vector of GeomDet*.

Definition at line 25 of file MuDetRing.cc.

References init().

25  :
26  ForwardDetRingOneZ(vdets)
27 {
28  init();
29 }
void init()
Definition: MuDetRing.cc:32
ForwardDetRingOneZ(std::vector< const GeomDet * >::const_iterator first, std::vector< const GeomDet * >::const_iterator last)
Construct from iterators on Det*.
MuDetRing::~MuDetRing ( )
virtual

Definition at line 38 of file MuDetRing.cc.

38 {}

Member Function Documentation

pair< bool, TrajectoryStateOnSurface > MuDetRing::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 51 of file MuDetRing.cc.

References MeasurementEstimator::estimate(), TrajectoryStateOnSurface::globalPosition(), TrajectoryStateOnSurface::isValid(), TrajectoryStateOnSurface::localPosition(), LogTrace, metname, AnalysisDataFormats_SUSYBSMObjects::ms, PV3DBase< T, PVType, FrameType >::perp(), Propagator::propagate(), ForwardDetRing::specificSurface(), AlCaHLTBitMon_QueryRunRegistry::string, and PV3DBase< T, PVType, FrameType >::z().

Referenced by compatibleDets().

52  {
53 
54  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuDetRing";
55  TrajectoryStateOnSurface ms = prop.propagate(ts,specificSurface());
56 
57  LogTrace(metname) << "MuDetRing::compatible, Surface at Z: "
58  << specificSurface().position().z()
59  << " R1: " << specificSurface().innerRadius()
60  << " R2: " << specificSurface().outerRadius()
61  << " TS at Z,R: " << ts.globalPosition().z() << ","
62  << ts.globalPosition().perp();
63  if (ms.isValid()) {
64  LogTrace(metname) << " DEST at Z,R: " << ms.globalPosition().z() << ","
65  << ms.globalPosition().perp()
66  << " local Z: " << ms.localPosition().z() << endl;
67  }
68  else
69  LogTrace(metname) << " DEST: not valid" <<endl;
70 
71 
72  if (ms.isValid()) return make_pair(est.estimate(ms, specificSurface()) != 0, ms);
73  else return make_pair(false, ms);
74 }
T perp() const
Definition: PV3DBase.h:72
const std::string metname
GlobalPoint globalPosition() const
T z() const
Definition: PV3DBase.h:64
#define LogTrace(id)
susybsm::MuonSegment ms
Definition: classes.h:31
const BoundDisk & specificSurface() const
Return the ring surface as a BoundDisk.
vector< GeometricSearchDet::DetWithState > MuDetRing::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 78 of file MuDetRing.cc.

References ForwardDetRingOneZ::add(), ForwardDetRingOneZ::basicComponents(), PeriodicBinFinderInPhi< T >::binIndex(), compatible(), TrajectoryStateOnSurface::globalPosition(), LogTrace, metname, PV3DBase< T, PVType, FrameType >::perp(), PV3DBase< T, PVType, FrameType >::phi(), GeometricSearchDet::position(), GloballyPositioned< T >::position(), query::result, ForwardDetRing::specificSurface(), mathSSE::sqrt(), AlCaHLTBitMon_QueryRunRegistry::string, ForwardDetRing::surface(), theBinFinder, and PV3DBase< T, PVType, FrameType >::z().

80  {
81 
82  const std::string metname = "Muon|RecoMuon|RecoMuonDetLayers|MuDetRing";
83 
84  LogTrace(metname) << "MuDetRing::compatibleDets, Surface at Z: "
85  << surface().position().z()
86  << " R1: " << specificSurface().innerRadius()
87  << " R2: " << specificSurface().outerRadius()
88  << " TS at Z,R: " << startingState.globalPosition().z() << ","
89  << startingState.globalPosition().perp() << " DetRing pos." << position();
90 
91  vector<DetWithState> result;
92 
93  // Propagate and check that the result is within bounds
94  pair<bool, TrajectoryStateOnSurface> compat =
95  compatible(startingState, prop, est);
96  if (!compat.first) {
97  LogTrace(metname) << " MuDetRing::compatibleDets: not compatible"
98  << " (should not have been selected!)";
99  return result;
100  }
101 
102  // Find the most probable destination component
103  TrajectoryStateOnSurface& tsos = compat.second;
104  GlobalPoint startPos = tsos.globalPosition();
105  int closest = theBinFinder.binIndex(startPos.phi());
106  const vector<const GeomDet*> dets = basicComponents();
107  LogTrace(metname) << " MuDetRing::compatibleDets, closest det: " << closest
108  << " Phi: " << dets[closest]->surface().position().phi()
109  << " impactPhi " << startPos.phi();
110 
111  // Add this detector, if it is compatible
112  // NOTE: add performs a null propagation
113  add(closest, result, tsos, prop, est);
114 
115  int nclosest = result.size(); int nnextdet=0; // MDEBUG counters
116 
117  // Try the neighbors on each side until no more compatible.
118  float dphi=0;
119  if (!result.empty()) { // If closest is not compatible the next cannot be either
120  float nSigmas = 3.;
121  if (result.back().second.hasError()) {
122  dphi = nSigmas*
123  atan(sqrt(result.back().second.localError().positionError().xx())/
124  result.back().second.globalPosition().perp());
125  }
126  } else {
127  LogTrace(metname) << " MuDetRing::compatibleDets, closest not compatible!";
128  //FIXME: if closest is not compatible the next cannot be either
129  }
130 
131  for (int idet=closest+1; idet < closest+int(dets.size())/4+1; idet++){
132  // FIXME: should use dphi to decide if det must be queried.
133  // Right now query until not compatible.
134  int idetp = theBinFinder.binIndex(idet);
135  {
136  LogTrace(metname) << " next det:" << idetp
137  << " at Z: " << dets[idetp]->position().z()
138  << " phi: " << dets[idetp]->position().phi()
139  << " FTS phi " << startPos.phi()
140  << " max dphi " << dphi;
141  nnextdet++;
142  if ( !add(idetp, result, tsos, prop, est)) break;
143  }
144  }
145 
146  for (int idet=closest-1; idet > closest-int(dets.size())/4-1; idet--){
147  // FIXME: should use dphi to decide if det must be queried.
148  // Right now query until not compatible.
149  int idetp = theBinFinder.binIndex(idet);
150  {
151  LogTrace(metname) << " previous det:" << idetp << " " << idet << " " << closest-dets.size()/4-1
152  << " at Z: " << dets[idetp]->position().z()
153  << " phi: " << dets[idetp]->position().phi()
154  << " FTS phi " << startPos.phi()
155  << " max dphi" << dphi;
156  nnextdet++;
157  if ( !add(idetp, result, tsos, prop, est)) break;
158  }
159  }
160 
161  LogTrace(metname) << " MuDetRing::compatibleDets, size: " << result.size()
162  << " on closest: " << nclosest << " # checked dets: " << nnextdet+1;
163 
164  if (result.size()==0) {
165  LogTrace(metname) << " ***Ring not compatible,should have been discarded before!!!";
166  }
167 
168  return result;
169 }
T perp() const
Definition: PV3DBase.h:72
const std::string metname
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
GlobalPoint globalPosition() const
virtual int binIndex(T phi) const
returns an index in the valid range for the bin that contains phi
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
virtual std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &ts, const Propagator &prop, const MeasurementEstimator &est) const
Definition: MuDetRing.cc:51
T sqrt(T t)
Definition: SSEVec.h:48
T z() const
Definition: PV3DBase.h:64
tuple result
Definition: query.py:137
#define LogTrace(id)
virtual const std::vector< const GeomDet * > & basicComponents() const
virtual const Surface::PositionType & position() const
Returns position of the surface.
bool add(int idet, std::vector< DetWithState > &result, const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est) const
const PositionType & position() const
const BoundDisk & specificSurface() const
Return the ring surface as a BoundDisk.
BinFinderType theBinFinder
Definition: MuDetRing.h:50
const vector< const GeometricSearchDet * > & MuDetRing::components ( ) const
virtual

Returns basic components, if any.

Returns direct components, if any

Implements GeometricSearchDet.

Definition at line 42 of file MuDetRing.cc.

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

42  {
43  // FIXME dummy impl.
44  cout << "temporary dummy implementation of MuDetRing::components()!!" << endl;
45  static const vector<const GeometricSearchDet*> result;
46  return result;
47 }
tuple result
Definition: query.py:137
tuple cout
Definition: gather_cfg.py:121
vector< DetGroup > MuDetRing::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 173 of file MuDetRing.cc.

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

175  {
176  // FIXME should be implemented to allow returning overlapping chambers
177  // as separate groups!
178  cout << "dummy implementation of MuDetRod::groupedCompatibleDets()" << endl;
179  vector<DetGroup> result;
180  return result;
181 }
tuple result
Definition: query.py:137
tuple cout
Definition: gather_cfg.py:121
void MuDetRing::init ( void  )
private

Definition at line 32 of file MuDetRing.cc.

References ForwardDetRingOneZ::basicComponents(), prof2calltree::front, phi, GeometricSearchDet::position(), findQualityFiles::size, and theBinFinder.

Referenced by MuDetRing().

33 {
35  basicComponents().size());
36 }
PeriodicBinFinderInPhi< float > BinFinderType
Definition: MuDetRing.h:49
virtual const std::vector< const GeomDet * > & basicComponents() const
virtual const Surface::PositionType & position() const
Returns position of the surface.
tuple size
Write out results.
BinFinderType theBinFinder
Definition: MuDetRing.h:50

Member Data Documentation

BinFinderType MuDetRing::theBinFinder
private

Definition at line 50 of file MuDetRing.h.

Referenced by compatibleDets(), and init().