CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonTransientTrackingRecHit.cc
Go to the documentation of this file.
1 
9 
14 
16 
17 #include <map>
18 
21 
22 
25 
27  GenericTransientTrackingRecHit(other.det(), *(other.hit())) {}
28 
29 
31 
32  if (dynamic_cast<const RecSegment*>(hit()) )
33  return dynamic_cast<const RecSegment*>(hit())->localDirection();
34  else return LocalVector(0.,0.,0.);
35 
36 }
37 
39 
40  if (dynamic_cast<const RecSegment*>(hit()))
41  return dynamic_cast<const RecSegment*>(hit())->localDirectionError();
42  else return LocalError(0.,0.,0.);
43 
44 }
45 
47 {
48  return (det()->surface().toGlobal(localDirection()));
49 }
50 
52 {
54 }
55 
56 
58 
60 
62  if (lape.valid()) {
63 
64  // Just for speed up the code, the "else" branch can handle also the case of dim = 1.
65  if(err.num_row() == 1) err[0][0] += lape.xx();
66  else{
67  AlgebraicSymMatrix lapeMatrix(5,0);
68  lapeMatrix[3][3] = lape.xx();
69  lapeMatrix[3][4] = lape.xy();
70  lapeMatrix[4][4] = lape.yy();
71 
72  AlgebraicSymMatrix lapeMatrixProj = lapeMatrix.similarity(projectionMatrix());
73 
74  if(err.num_row() != lapeMatrixProj.num_row())
75  throw cms::Exception("MuonTransientTrackingRecHit::parametersError")
76  <<"Discrepancy between alignment error matrix and error matrix: APE "
77  << lapeMatrixProj.num_row()
78  << ", error matrix " << err.num_row()
79  << std::endl;
80 
81  err += lapeMatrixProj;
82  }
83  }
84  return err;
85 }
86 
88 {
89  if (dynamic_cast<const RecSegment*>(hit()))
90  return dynamic_cast<const RecSegment*>(hit())->chi2();
91  else return 0.;
92 }
93 
95 {
96  if (dynamic_cast<const RecSegment*>(hit()))
97  return dynamic_cast<const RecSegment*>(hit())->degreesOfFreedom();
98  else return 0;
99 }
100 
102  return (geographicalId().subdetId() == MuonSubdetId::DT);
103 }
104 
106  return (geographicalId().subdetId() == MuonSubdetId::CSC);
107 }
108 
110  return (geographicalId().subdetId() == MuonSubdetId::RPC);
111 }
112 
113 // FIXME, now it is "on-demand". I have to change it.
114 // FIXME check on mono hit!
116 
117  ConstRecHitContainer theSubTransientRecHits;
118 
119  // the sub rec hit of this TransientRecHit
120  std::vector<const TrackingRecHit*> ownRecHits = recHits();
121 
122  if(ownRecHits.size() == 0){
123  theSubTransientRecHits.push_back(this);
124  return theSubTransientRecHits;
125  }
126 
127  // the components of the geom det on which reside this rechit
128  std::vector<const GeomDet *> geomDets = det()->components();
129 
130  if(isDT() && dimension() == 2 && ownRecHits.front()->dimension() == 1
131  && (geomDets.size() == 3 || geomDets.size() == 2) ){ // it is a phi segment!!
132 
133  std::vector<const GeomDet *> subGeomDets;
134 
135  int sl = 1;
136  for(std::vector<const GeomDet *>::const_iterator geoDet = geomDets.begin();
137  geoDet != geomDets.end(); ++geoDet){
138  if(sl != 3){ // FIXME!! this maybe is not always true
139  std::vector<const GeomDet *> tmp = (*geoDet)->components();
140  std::copy(tmp.begin(),tmp.end(),back_inserter(subGeomDets));
141  }
142  ++sl;
143  }
144  geomDets.clear();
145  geomDets = subGeomDets;
146  }
147 
148  // Fill the GeomDet map
149  std::map<DetId,const GeomDet*> gemDetMap;
150 
151  for (std::vector<const GeomDet*>::const_iterator subDet = geomDets.begin();
152  subDet != geomDets.end(); ++subDet)
153  gemDetMap[ (*subDet)->geographicalId() ] = *subDet;
154 
155  std::map<DetId,const GeomDet*>::iterator gemDetMap_iter;
156 
157  // Loop in order to check the ids
158  for (std::vector<const TrackingRecHit*>::const_iterator rechit = ownRecHits.begin();
159  rechit != ownRecHits.end(); ++rechit){
160 
161  gemDetMap_iter = gemDetMap.find( (*rechit)->geographicalId() );
162 
163  if(gemDetMap_iter != gemDetMap.end() )
164  theSubTransientRecHits.push_back(new MuonTransientTrackingRecHit(gemDetMap_iter->second,
165  *rechit) );
166  else if( (*rechit)->geographicalId() == det()->geographicalId() ) // Phi in DT is on Chamber
167  theSubTransientRecHits.push_back(new MuonTransientTrackingRecHit(det(),
168  *rechit) );
169  }
170  return theSubTransientRecHits;
171 
172 }
173 
174 
177 
178 
179  if (isDT()){
180  if(dimension() > 1){ // MB4s have 2D, but formatted in 4D segments
181  std::vector<TrackingRecHit*> seg2D = recHits(); // 4D --> 2D
182  // load 1D hits (2D --> 1D)
183  for(std::vector<TrackingRecHit*>::iterator it = seg2D.begin(); it != seg2D.end(); ++it){
184  std::vector<TrackingRecHit*> hits1D = (*it)->recHits();
185  (*it)->setType(bad);
186  for(std::vector<TrackingRecHit*>::iterator it2 = hits1D.begin(); it2 != hits1D.end(); ++it2)
187  (*it2)->setType(bad);
188  }
189  }
190  }
191  else if(isCSC())
192  if(dimension() == 4){
193  std::vector<TrackingRecHit*> hits = recHits(); // load 2D hits (4D --> 1D)
194  for(std::vector<TrackingRecHit*>::iterator it = hits.begin(); it != hits.end(); ++it)
195  (*it)->setType(bad);
196  }
197 
198 
199 }
virtual int degreesOfFreedom() const
Degrees of freedom for segments, else 0.
bool valid() const
Definition: LocalError.h:21
static GlobalError transform(const LocalError &le, const Surface &surf)
bool isCSC() const
if this rec hit is a CSC rec hit
float xx() const
Definition: LocalError.h:24
Local3DVector LocalVector
Definition: LocalVector.h:12
MuonTransientTrackingRecHit::MuonRecHitPointer MuonRecHitPointer
virtual double chi2() const
Chi square of the fit for segments, else 0.
virtual const TrackingRecHit * hit() const
virtual GlobalVector globalDirection() const
Direction in 3D for segments, otherwise (0,0,0)
virtual AlgebraicSymMatrix parametersError() const
virtual AlgebraicMatrix projectionMatrix() const
virtual GlobalError globalDirectionError() const
Error on the global direction.
bool isRPC() const
if this rec hit is a RPC rec hit
bool isDT() const
if this rec hit is a DT rec hit
std::vector< ConstRecHitPointer > RecHitContainer
virtual ConstRecHitContainer transientHits() const
return the sub components of this transient rechit
virtual LocalVector localDirection() const
Direction in 3D for segments, otherwise (0,0,0)
float xy() const
Definition: LocalError.h:25
static const int CSC
Definition: MuonSubdetId.h:15
MuonTransientTrackingRecHit(const GeomDet *geom, const TrackingRecHit *rh)
Construct from a TrackingRecHit and its GeomDet.
float yy() const
Definition: LocalError.h:26
virtual AlgebraicSymMatrix parametersError() const
void setType(Type ttype)
DetId geographicalId() const
The label of this GeomDet.
Definition: GeomDet.h:72
virtual std::vector< const GeomDet * > components() const =0
Returns direct components, if any.
LocalError const & localAlignmentError() const
Return local alligment error.
Definition: GeomDet.h:78
std::vector< ConstRecHitPointer > ConstRecHitContainer
virtual LocalError localDirectionError() const
Error on the local direction.
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
virtual std::vector< const TrackingRecHit * > recHits() const
Access to component RecHits (if any)
static const int RPC
Definition: MuonSubdetId.h:16
const GeomDet * det() const
The GomeDet* can be zero for InvalidTransientRecHits and for TConstraintRecHit2Ds.
CLHEP::HepSymMatrix AlgebraicSymMatrix
virtual const Surface * surface() const
MuonTransientTrackingRecHit::MuonRecHitContainer MuonRecHitContainer
static const int DT
Definition: MuonSubdetId.h:14
DetId geographicalId() const