CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackerValidationVariables.cc
Go to the documentation of this file.
1 
9 
15 
18 
26 
28 
38 
40 
42 
43 #include "TMath.h"
44 
46 {
47 
48 }
49 
51  : conf_(iSetup)
52 {
55 }
56 
58 {
59 
60 }
61 
62 void
63 TrackerValidationVariables::fillHitQuantities(const Trajectory* trajectory, std::vector<AVHitStruct> & v_avhitout)
64 {
65  TrajectoryStateCombiner tsoscomb;
66 
67  const std::vector<TrajectoryMeasurement> &tmColl = trajectory->measurements();
68  for(std::vector<TrajectoryMeasurement>::const_iterator itTraj = tmColl.begin();
69  itTraj != tmColl.end();
70  ++itTraj) {
71 
72  if (!itTraj->updatedState().isValid()) continue;
73 
74  TrajectoryStateOnSurface tsos = tsoscomb( itTraj->forwardPredictedState(), itTraj->backwardPredictedState() );
76 
77  if(!hit->isValid() || hit->geographicalId().det() != DetId::Tracker) continue;
78 
79  AVHitStruct hitStruct;
80  const DetId& hit_detId = hit->geographicalId();
81  unsigned int IntRawDetID = (hit_detId.rawId());
82  unsigned int IntSubDetID = (hit_detId.subdetId());
83 
84  if(IntSubDetID == 0) continue;
85 
86  //first calculate residuals in cartesian coordinates in the local module coordinate system
87 
88  LocalPoint lPHit = hit->localPosition();
89  LocalPoint lPTrk = tsos.localPosition();
90  LocalVector lVTrk = tsos.localDirection();
91 
92  hitStruct.localAlpha = atan2(lVTrk.x(), lVTrk.z()); // wrt. normal tg(alpha)=x/z
93  hitStruct.localBeta = atan2(lVTrk.y(), lVTrk.z()); // wrt. normal tg(beta)= y/z
94 
95  //LocalError errHit = hit->localPositionError();
96  // adding APE to hitError
97  AlgebraicROOTObject<2>::SymMatrix mat = asSMatrix<2>(hit->parametersError());
98  LocalError errHit = LocalError( mat(0,0),mat(0,1),mat(1,1) );
99  LocalError errTrk = tsos.localError().positionError();
100 
101  //check for negative error values: track error can have negative value, if matrix inversion fails (very rare case)
102  //hit error should always give positive values
103  if(errHit.xx()<0. || errHit.yy()<0. || errTrk.xx()<0. || errTrk.yy()<0.){
104  edm::LogError("TrackerValidationVariables") << "@SUB=TrackerValidationVariables::fillHitQuantities"
105  << "One of the squared error methods gives negative result"
106  << "\n\terrHit.xx()\terrHit.yy()\terrTrk.xx()\terrTrk.yy()"
107  << "\n\t" << errHit.xx()
108  << "\t" << errHit.yy()
109  << "\t" << errTrk.xx()
110  << "\t" << errTrk.yy();
111  continue;
112  }
113 
114  align::LocalVector res = lPTrk - lPHit;
115 
116  float resXErr = std::sqrt( errHit.xx() + errTrk.xx() );
117  float resYErr = std::sqrt( errHit.yy() + errTrk.yy() );
118 
119  hitStruct.resX = res.x();
120  hitStruct.resY = res.y();
121  hitStruct.resErrX = resXErr;
122  hitStruct.resErrY = resYErr;
123 
124  // hitStruct.localX = lPhit.x();
125  // hitStruct.localY = lPhit.y();
126  // EM: use predictions for local coordinates
127  hitStruct.localX = lPTrk.x();
128  hitStruct.localY = lPTrk.y();
129 
130  // now calculate residuals taking global orientation of modules and radial topology in TID/TEC into account
131  float resXprime(999.F), resYprime(999.F);
132  float resXatTrkY(999.F);
133  float resXprimeErr(999.F), resYprimeErr(999.F);
134 
135  if(hit->detUnit()){ // is it a single physical module?
136  const GeomDetUnit& detUnit = *(hit->detUnit());
137  float uOrientation(-999.F), vOrientation(-999.F);
138  float resXTopol(999.F), resYTopol(999.F);
139  float resXatTrkYTopol(999.F);
140 
141  const Surface& surface = hit->detUnit()->surface();
142  const BoundPlane& boundplane = hit->detUnit()->surface();
143  const Bounds& bound = boundplane.bounds();
144 
145  float length = 0;
146  float width = 0;
147 
148  LocalPoint lPModule(0.,0.,0.), lUDirection(1.,0.,0.), lVDirection(0.,1.,0.);
149  GlobalPoint gPModule = surface.toGlobal(lPModule),
150  gUDirection = surface.toGlobal(lUDirection),
151  gVDirection = surface.toGlobal(lVDirection);
152 
153  if (IntSubDetID == PixelSubdetector::PixelBarrel ||
154  IntSubDetID == StripSubdetector::TIB ||
155  IntSubDetID == StripSubdetector::TOB) {
156 
157  uOrientation = deltaPhi(gUDirection.phi(),gPModule.phi()) >= 0. ? +1.F : -1.F;
158  vOrientation = gVDirection.z() - gPModule.z() >= 0 ? +1.F : -1.F;
159  resXTopol = res.x();
160  resXatTrkYTopol = res.x();
161  resYTopol = res.y();
162  resXprimeErr = resXErr;
163  resYprimeErr = resYErr;
164 
165  const RectangularPlaneBounds *rectangularBound = dynamic_cast<const RectangularPlaneBounds*>(&bound);
166  if (rectangularBound!=NULL) {
167  hitStruct.inside = rectangularBound->inside(lPTrk);
168  length = rectangularBound->length();
169  width = rectangularBound->width();
170  hitStruct.localXnorm = 2*hitStruct.localX/width;
171  hitStruct.localYnorm = 2*hitStruct.localY/length;
172  } else {
173  throw cms::Exception("Geometry Error")
174  << "[TrackerValidationVariables] Cannot cast bounds to RectangularPlaneBounds as expected for TPB, TIB and TOB";
175  }
176 
177  } else if (IntSubDetID == PixelSubdetector::PixelEndcap) {
178 
179  uOrientation = gUDirection.perp() - gPModule.perp() >= 0 ? +1.F : -1.F;
180  vOrientation = deltaPhi(gVDirection.phi(),gPModule.phi()) >= 0. ? +1.F : -1.F;
181  resXTopol = res.x();
182  resXatTrkYTopol = res.x();
183  resYTopol = res.y();
184  resXprimeErr = resXErr;
185  resYprimeErr = resYErr;
186 
187  const RectangularPlaneBounds *rectangularBound = dynamic_cast<const RectangularPlaneBounds*>(&bound);
188  if (rectangularBound!=NULL) {
189  hitStruct.inside = rectangularBound->inside(lPTrk);
190  length = rectangularBound->length();
191  width = rectangularBound->width();
192  hitStruct.localXnorm = 2*hitStruct.localX/width;
193  hitStruct.localYnorm = 2*hitStruct.localY/length;
194  } else {
195  throw cms::Exception("Geometry Error")
196  << "[TrackerValidationVariables] Cannot cast bounds to RectangularPlaneBounds as expected for TPE";
197  }
198 
199  } else if (IntSubDetID == StripSubdetector::TID ||
200  IntSubDetID == StripSubdetector::TEC) {
201 
202  uOrientation = deltaPhi(gUDirection.phi(),gPModule.phi()) >= 0. ? +1.F : -1.F;
203  vOrientation = gVDirection.perp() - gPModule.perp() >= 0. ? +1.F : -1.F;
204 
205  if (!dynamic_cast<const RadialStripTopology*>(&detUnit.type().topology()))continue;
206  const RadialStripTopology& topol = dynamic_cast<const RadialStripTopology&>(detUnit.type().topology());
207 
208  MeasurementPoint measHitPos = topol.measurementPosition(lPHit);
209  MeasurementPoint measTrkPos = topol.measurementPosition(lPTrk);
210 
211  MeasurementError measHitErr = topol.measurementError(lPHit,errHit);
212  MeasurementError measTrkErr = topol.measurementError(lPTrk,errTrk);
213 
214  if (measHitErr.uu()<0. ||
215  measHitErr.vv()<0. ||
216  measTrkErr.uu()<0. ||
217  measTrkErr.vv()<0.){
218  edm::LogError("TrackerValidationVariables") << "@SUB=TrackerValidationVariables::fillHitQuantities"
219  << "One of the squared error methods gives negative result"
220  << "\n\tmeasHitErr.uu()\tmeasHitErr.vv()\tmeasTrkErr.uu()\tmeasTrkErr.vv()"
221  << "\n\t" << measHitErr.uu()
222  << "\t" << measHitErr.vv()
223  << "\t" << measTrkErr.uu()
224  << "\t" << measTrkErr.vv();
225  continue;
226  }
227 
228  float localStripLengthHit = topol.localStripLength(lPHit);
229  float localStripLengthTrk = topol.localStripLength(lPTrk);
230  float phiHit = topol.stripAngle(measHitPos.x());
231  float phiTrk = topol.stripAngle(measTrkPos.x());
232  float r_0 = topol.originToIntersection();
233 
234  resXTopol = (phiTrk-phiHit)*r_0;
235 // resXTopol = (tan(phiTrk)-tan(phiHit))*r_0;
236 
237  LocalPoint LocalHitPosCor= topol.localPosition(MeasurementPoint(measHitPos.x(), measTrkPos.y()));
238  resXatTrkYTopol = lPTrk.x() - LocalHitPosCor.x();
239 
240 
241  //resYTopol = measTrkPos.y()*localStripLengthTrk - measHitPos.y()*localStripLengthHit;
242  float cosPhiHit(cos(phiHit)), cosPhiTrk(cos(phiTrk)),
243  sinPhiHit(sin(phiHit)), sinPhiTrk(sin(phiTrk));
244  float l_0 = r_0 - topol.detHeight()/2;
245  resYTopol = measTrkPos.y()*localStripLengthTrk - measHitPos.y()*localStripLengthHit + l_0*(1/cosPhiTrk - 1/cosPhiHit);
246 
247  resXprimeErr = std::sqrt(measHitErr.uu()+measTrkErr.uu())*topol.angularWidth()*r_0;
248  //resYprimeErr = std::sqrt(measHitErr.vv()*localStripLengthHit*localStripLengthHit + measTrkErr.vv()*localStripLengthTrk*localStripLengthTrk);
249  float helpSummand = l_0*l_0*topol.angularWidth()*topol.angularWidth()*(sinPhiHit*sinPhiHit/pow(cosPhiHit,4)*measHitErr.uu()
250  + sinPhiTrk*sinPhiTrk/pow(cosPhiTrk,4)*measTrkErr.uu() );
251  resYprimeErr = std::sqrt(measHitErr.vv()*localStripLengthHit*localStripLengthHit
252  + measTrkErr.vv()*localStripLengthTrk*localStripLengthTrk + helpSummand );
253 
254 
255  const TrapezoidalPlaneBounds *trapezoidalBound = dynamic_cast < const TrapezoidalPlaneBounds * >(& bound);
256  if (trapezoidalBound!=NULL) {
257  hitStruct.inside = trapezoidalBound->inside(lPTrk);
258  length = trapezoidalBound->length();
259  width = trapezoidalBound->width();
260  //float widthAtHalfLength = trapezoidalBound->widthAtHalfLength();
261 
262  // int yAxisOrientation=trapezoidalBound->yAxisOrientation();
263  // for trapezoidal shape modules, scale with as function of local y coordinate
264  // float widthAtlocalY=width-(1-yAxisOrientation*2*lPTrk.y()/length)*(width-widthAtHalfLength);
265  // hitStruct.localXnorm = 2*hitStruct.localX/widthAtlocalY;
266  hitStruct.localXnorm = 2*hitStruct.localX/width;
267  hitStruct.localYnorm = 2*hitStruct.localY/length;
268  } else {
269  throw cms::Exception("Geometry Error")
270  << "[TrackerValidationVariables] Cannot cast bounds to TrapezoidalPlaneBounds as expected for TID and TEC";
271  }
272 
273  } else {
274  edm::LogWarning("TrackerValidationVariables") << "@SUB=TrackerValidationVariables::fillHitQuantities"
275  << "No valid tracker subdetector " << IntSubDetID;
276  continue;
277  }
278 
279  resXprime = resXTopol*uOrientation;
280  resXatTrkY = resXatTrkYTopol;
281  resYprime = resYTopol*vOrientation;
282 
283  } else { // not a detUnit, so must be a virtual 2D-Module
284  // FIXME: at present only for det units residuals are calculated and filled in the hitStruct
285  // But in principle this method should also be useable for the gluedDets (2D modules in TIB, TID, TOB, TEC)
286  // In this case, only orientation should be taken into account for primeResiduals, but not the radial topology
287  // At present, default values (999.F) are given out
288  }
289 
290  hitStruct.resXprime = resXprime;
291  hitStruct.resXatTrkY = resXatTrkY;
292  hitStruct.resYprime = resYprime;
293  hitStruct.resXprimeErr = resXprimeErr;
294  hitStruct.resYprimeErr = resYprimeErr;
295 
296  hitStruct.rawDetId = IntRawDetID;
297  hitStruct.phi = tsos.globalDirection().phi();
298  hitStruct.eta = tsos.globalDirection().eta();
299 
300  v_avhitout.push_back(hitStruct);
301  }
302 }
303 
304 void
305 TrackerValidationVariables::fillTrackQuantities(const edm::Event& event, std::vector<AVTrackStruct> & v_avtrackout)
306 {
307  edm::InputTag TrjTrackTag = conf_.getParameter<edm::InputTag>("Tracks");
309  event.getByLabel(TrjTrackTag, TrajTracksMap);
310  LogDebug("TrackerValidationVariables") << "TrajTrack collection size " << TrajTracksMap->size();
311 
312  const Trajectory* trajectory;
313  const reco::Track* track;
314 
315  for ( TrajTrackAssociationCollection::const_iterator iPair = TrajTracksMap->begin();
316  iPair != TrajTracksMap->end();
317  ++iPair) {
318 
319  trajectory = &(*(*iPair).key);
320  track = &(*(*iPair).val);
321 
322  AVTrackStruct trackStruct;
323 
324  trackStruct.p = track->p();
325  trackStruct.pt = track->pt();
326  trackStruct.ptError = track->ptError();
327  trackStruct.px = track->px();
328  trackStruct.py = track->py();
329  trackStruct.pz = track->pz();
330  trackStruct.eta = track->eta();
331  trackStruct.phi = track->phi();
332  trackStruct.chi2 = track->chi2();
333  trackStruct.chi2Prob= TMath::Prob(track->chi2(),track->ndof());
334  trackStruct.normchi2 = track->normalizedChi2();
335  GlobalPoint gPoint(track->vx(), track->vy(), track->vz());
336  double theLocalMagFieldInInverseGeV = magneticField_->inInverseGeV(gPoint).z();
337  trackStruct.kappa = -track->charge()*theLocalMagFieldInInverseGeV/track->pt();
338  trackStruct.charge = track->charge();
339  trackStruct.d0 = track->d0();
340  trackStruct.dz = track->dz();
341  trackStruct.numberOfValidHits = track->numberOfValidHits();
342  trackStruct.numberOfLostHits = track->numberOfLostHits();
343 
344  fillHitQuantities(trajectory, trackStruct.hits);
345 
346  v_avtrackout.push_back(trackStruct);
347  }
348 }
349 
350 void
351 TrackerValidationVariables::fillHitQuantities(const edm::Event& event, std::vector<AVHitStruct> & v_avhitout)
352 {
353  edm::Handle<std::vector<Trajectory> > trajCollectionHandle;
354  event.getByLabel(conf_.getParameter<std::string>("trajectoryInput"), trajCollectionHandle);
355 
356  LogDebug("TrackerValidationVariables") << "trajColl->size(): " << trajCollectionHandle->size() ;
357 
358  for (std::vector<Trajectory>::const_iterator it = trajCollectionHandle->begin(), itEnd = trajCollectionHandle->end();
359  it!=itEnd;
360  ++it) {
361 
362  fillHitQuantities(&(*it), v_avhitout);
363  }
364 }
#define LogDebug(id)
double p() const
momentum vector magnitude
Definition: TrackBase.h:127
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:114
T getParameter(std::string const &) const
float xx() const
Definition: LocalError.h:24
float vv() const
T y() const
Definition: PV2DBase.h:46
T perp() const
Definition: PV3DBase.h:72
ROOT::Math::SMatrix< double, D1, D1, ROOT::Math::MatRepSym< double, D1 > > SymMatrix
virtual float localStripLength(const LocalPoint &) const =0
double d0() const
dxy parameter in perigee convention (d0 = - dxy)
Definition: TrackBase.h:121
edm::ESHandle< TrackerGeometry > tkGeom_
double normalizedChi2() const
chi-squared divided by n.d.o.f. (or chi-squared * 1e6 if n.d.o.f. is zero)
Definition: TrackBase.h:109
LocalVector localDirection() const
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
T y() const
Definition: PV3DBase.h:63
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:137
unsigned short numberOfLostHits() const
number of cases where track crossed a layer without getting a hit.
Definition: TrackBase.h:232
#define NULL
Definition: scimark2.h:8
void fillHitQuantities(const Trajectory *trajectory, std::vector< AVHitStruct > &v_avhitout)
virtual LocalPoint localPosition(float strip) const =0
double px() const
x coordinate of momentum vector
Definition: TrackBase.h:131
virtual float detHeight() const =0
LocalError positionError() const
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
DataContainer const & measurements() const
Definition: Trajectory.h:215
Measurement2DPoint MeasurementPoint
Measurement points are two-dimensional by default.
virtual MeasurementError measurementError(const LocalPoint &, const LocalError &) const =0
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:139
edm::ESHandle< MagneticField > magneticField_
float yy() const
Definition: LocalError.h:26
double chi2() const
chi-squared of the fit
Definition: TrackBase.h:105
double ndof() const
number of degrees of freedom of the fit
Definition: TrackBase.h:107
T sqrt(T t)
Definition: SSEVec.h:48
double pt() const
track transverse momentum
Definition: TrackBase.h:129
T z() const
Definition: PV3DBase.h:64
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double ptError() const
error on Pt (set to 1000 TeV if charge==0 for safety)
Definition: TrackBase.h:192
float uu() const
virtual MeasurementPoint measurementPosition(const LocalPoint &) const =0
virtual float angularWidth() const =0
unsigned short numberOfValidHits() const
number of valid hits found
Definition: TrackBase.h:230
const LocalTrajectoryError & localError() const
virtual const GeomDetType & type() const =0
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
double pz() const
z coordinate of momentum vector
Definition: TrackBase.h:135
double dz() const
dz parameter (= dsz/cos(lambda)). This is the track z0 w.r.t (0,0,0) only if the refPoint is close to...
Definition: TrackBase.h:125
double vz() const
z coordinate of the reference point on track
Definition: TrackBase.h:145
virtual float stripAngle(float strip) const =0
Definition: DetId.h:18
const T & get() const
Definition: EventSetup.h:55
void fillTrackQuantities(const edm::Event &, std::vector< AVTrackStruct > &v_avtrackout)
virtual float originToIntersection() const =0
virtual const Topology & topology() const =0
T eta() const
Definition: PV3DBase.h:76
double vy() const
y coordinate of the reference point on track
Definition: TrackBase.h:143
int charge() const
track electric charge
Definition: TrackBase.h:111
Definition: Bounds.h:22
static uInt32 F(BLOWFISH_CTX *ctx, uInt32 x)
Definition: blowfish.cc:281
T x() const
Definition: PV2DBase.h:45
T x() const
Definition: PV3DBase.h:62
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
double py() const
y coordinate of momentum vector
Definition: TrackBase.h:133
double vx() const
x coordinate of the reference point on track
Definition: TrackBase.h:141
GlobalVector globalDirection() const