CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TestHits.cc
Go to the documentation of this file.
2 
11 #include <TDirectory.h>
14 
18 
21 using namespace std;
22 using namespace edm;
23 
25  conf_(iConfig){
26  LogTrace("TestHits") << conf_<< std::endl;
27  propagatorName = conf_.getParameter<std::string>("Propagator");
28  builderName = conf_.getParameter<std::string>("TTRHBuilder");
30  fname = conf_.getParameter<std::string>("Fitter");
31  mineta = conf_.getParameter<double>("mineta");
32  maxeta = conf_.getParameter<double>("maxeta");
33 }
34 
36 
38 {
39 
40  iSetup.get<TrackerDigiGeometryRecord>().get(theG);
41  iSetup.get<IdealMagneticFieldRecord>().get(theMF);
44  iSetup.get<TrajectoryFitter::Record>().get(fname, fit);
45 
46  file = new TFile("testhits.root","recreate");
47  for (int i=0; i!=6; i++)
48  for (int j=0; j!=9; j++){
49  if (i==0 && j>2) break;
50  if (i==1 && j>1) break;
51  if (i==2 && j>3) break;
52  if (i==3 && j>2) break;
53  if (i==4 && j>5) break;
54  if (i==5 && j>8) break;
55  title.str("");
56  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts";
57  hPullGP_X_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
58  title.str("");
59  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts";
60  hPullGP_Y_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
61  title.str("");
62  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts";
63  hPullGP_Z_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
64  title.str("");
65  title << "Chi2Increment_" << i+1 << "-" << j+1;
66  hChi2Increment[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,0,100);
67 
68  title.str("");
69  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts";
70  hPullGM_X_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
71  title.str("");
72  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts";
73  hPullGM_Y_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
74  title.str("");
75  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts";
76  hPullGM_Z_ts[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
77 
78  title.str("");
79  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr";
80  hPullGP_X_tr[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
81  title.str("");
82  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr";
83  hPullGP_Y_tr[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
84  title.str("");
85  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr";
86  hPullGP_Z_tr[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
87 
88  title.str("");
89  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs";
90  hPullGP_X_rs[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
91  title.str("");
92  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs";
93  hPullGP_Y_rs[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
94  title.str("");
95  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs";
96  hPullGP_Z_rs[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
97 
98  if ( ((i==2||i==4)&&(j==0||j==1)) || (i==3||i==5) ){
99  //mono
100  title.str("");
101  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_mono";
102  hPullGP_X_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
103  title.str("");
104  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_mono";
105  hPullGP_Y_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
106  title.str("");
107  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_mono";
108  hPullGP_Z_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
109 
110  title.str("");
111  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_mono";
112  hPullGM_X_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
113  title.str("");
114  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_mono";
115  hPullGM_Y_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
116  title.str("");
117  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_mono";
118  hPullGM_Z_ts_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
119 
120  title.str("");
121  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_mono";
122  hPullGP_X_tr_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
123  title.str("");
124  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_mono";
125  hPullGP_Y_tr_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
126  title.str("");
127  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_mono";
128  hPullGP_Z_tr_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
129 
130  title.str("");
131  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_mono";
132  hPullGP_X_rs_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
133  title.str("");
134  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_mono";
135  hPullGP_Y_rs_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
136  title.str("");
137  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_mono";
138  hPullGP_Z_rs_mono[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
139 
140  //stereo
141  title.str("");
142  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_stereo";
143  hPullGP_X_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
144  title.str("");
145  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
146  hPullGP_Y_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
147  title.str("");
148  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
149  hPullGP_Z_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
150 
151  title.str("");
152  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_stereo";
153  hPullGM_X_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
154  title.str("");
155  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
156  hPullGM_Y_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
157  title.str("");
158  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
159  hPullGM_Z_ts_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
160 
161  title.str("");
162  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_stereo";
163  hPullGP_X_tr_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
164  title.str("");
165  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_stereo";
166  hPullGP_Y_tr_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
167  title.str("");
168  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_stereo";
169  hPullGP_Z_tr_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
170 
171  title.str("");
172  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_stereo";
173  hPullGP_X_rs_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
174  title.str("");
175  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_stereo";
176  hPullGP_Y_rs_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
177  title.str("");
178  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_stereo";
179  hPullGP_Z_rs_stereo[title.str()] = new TH1F(title.str().c_str(),title.str().c_str(),1000,-50,50);
180  }
181  }
182  hTotChi2Increment = new TH1F("TotChi2Increment","TotChi2Increment",1000,0,100);
183  hProcess_vs_Chi2 = new TH2F("Process_vs_Chi2","Process_vs_Chi2",1000,0,100,17,-0.5,16.5);
184  hClsize_vs_Chi2 = new TH2F("Clsize_vs_Chi2","Clsize_vs_Chi2",1000,0,100,17,-0.5,16.5);
185 }
186 
187 
189 {
190  //Retrieve tracker topology from geometry
192  iSetup.get<IdealGeometryRecord>().get(tTopo);
193 
194 
195  LogTrace("TestHits") << "\nnew event";
196 
198  hitAssociator = new TrackerHitAssociator(iEvent);
199 
201 
202  for (TrackCandidateCollection::const_iterator i=theTCCollection->begin(); i!=theTCCollection->end();i++){
203 
204  LogTrace("TestHits") << "\n*****************new candidate*****************" << std::endl;
205 
206  const TrackCandidate * theTC = &(*i);
208  const TrackCandidate::range& recHitVec=theTC->recHits();
209 
210  //convert PTrajectoryStateOnDet to TrajectoryStateOnSurface
211 
212 
213  DetId detId(state.detId());
214  TrajectoryStateOnSurface theTSOS=
215  trajectoryStateTransform::transientState(state, &(theG->idToDet(detId)->surface()),theMF.product());
216 
217  if (theTSOS.globalMomentum().eta()>maxeta || theTSOS.globalMomentum().eta()<mineta) continue;
218 
219  //convert the TrackingRecHit vector to a TransientTrackingRecHit vector
221 
223  i!=recHitVec.second; i++){
224  hits.push_back(theBuilder->build(&(*i) ));
225  }
226 
227  //call the fitter
228  std::vector<Trajectory> result = fit->fit(theTC->seed(), hits, theTSOS);
229  if (result.size()==0) continue;
230  std::vector<TrajectoryMeasurement> vtm = result[0].measurements();
231  double tchi2 = 0;
232 
233  TSOS lastState = theTSOS;
234  for (std::vector<TrajectoryMeasurement>::iterator tm=vtm.begin(); tm!=vtm.end();tm++){
235 
237  if ((rhit)->isValid()==0&&rhit->det()!=0) continue;
238  LogTrace("TestHits") << "*****************new hit*****************" ;
239 
240  int subdetId = rhit->det()->geographicalId().subdetId();
241  DetId id = rhit->det()->geographicalId();
242  int layerId = tTopo->layer(id);
243  LogTrace("TestHits") << "subdetId=" << subdetId << " layerId=" << layerId ;
244 
245  double delta = 99999;
246  LocalPoint rhitLPv = rhit->localPosition();
247 
248  std::vector<PSimHit> assSimHits = hitAssociator->associateHit(*(rhit->hit()));
249  if (assSimHits.size()==0) continue;
250  PSimHit shit;
251  for(std::vector<PSimHit>::const_iterator m=assSimHits.begin(); m<assSimHits.end(); m++){
252  if ((m->localPosition()-rhitLPv).mag()<delta) {
253  shit=*m;
254  delta = (m->localPosition()-rhitLPv).mag();
255  }
256  }
257 
258  TSOS currentState = tm->forwardPredictedState();
259  if (tm->backwardPredictedState().isValid())
260  currentState = combiner(tm->backwardPredictedState(), tm->forwardPredictedState());
261  TSOS updatedState = tm->updatedState();
262  tchi2+=tm->estimate();
263 
264  //plot chi2 increment
265  double chi2increment = tm->estimate();
266  LogTrace("TestHits") << "tm->estimate()=" << tm->estimate();
267  title.str("");
268  title << "Chi2Increment_" << subdetId << "-" << layerId;
269  hChi2Increment[title.str()]->Fill( chi2increment );
270  hTotChi2Increment->Fill( chi2increment );
271  hProcess_vs_Chi2->Fill( chi2increment, shit.processType() );
272  if (dynamic_cast<const SiPixelRecHit*>(rhit->hit()))
273  hClsize_vs_Chi2->Fill( chi2increment, ((const SiPixelRecHit*)(rhit->hit()))->cluster()->size() );
274  if (dynamic_cast<const SiStripRecHit2D*>(rhit->hit()))
275  hClsize_vs_Chi2->Fill( chi2increment, ((const SiStripRecHit2D*)(rhit->hit()))->cluster()->amplitudes().size() );
276 
277  //test hits
278  const Surface * surf = &( (rhit)->det()->surface() );
279  LocalVector shitLMom;
280  LocalPoint shitLPos;
281  if (dynamic_cast<const SiStripMatchedRecHit2D*>((rhit)->hit())) {
282  double rechitmatchedx = rhit->localPosition().x();
283  double rechitmatchedy = rhit->localPosition().y();
284  double mindist = 999999;
285  double distx, disty;
286  std::pair<LocalPoint,LocalVector> closestPair;
287  const StripGeomDetUnit* stripDet =(StripGeomDetUnit*) ((const GluedGeomDet *)(rhit)->det())->stereoDet();
288  const BoundPlane& plane = (rhit)->det()->surface();
289  for(std::vector<PSimHit>::const_iterator m=assSimHits.begin(); m<assSimHits.end(); m++) {
290  //project simhit;
291  std::pair<LocalPoint,LocalVector> hitPair = projectHit((*m),stripDet,plane);
292  distx = fabs(rechitmatchedx - hitPair.first.x());
293  disty = fabs(rechitmatchedy - hitPair.first.y());
294  double dist = distx*distx+disty*disty;
295  if(sqrt(dist)<mindist){
296  mindist = dist;
297  closestPair = hitPair;
298  }
299  }
300  shitLPos = closestPair.first;
301  shitLMom = closestPair.second;
302  } else {
303  shitLPos = shit.localPosition();
304  shitLMom = shit.momentumAtEntry();
305  }
306  GlobalVector shitGMom = surf->toGlobal(shitLMom);
307  GlobalPoint shitGPos = surf->toGlobal(shitLPos);
308 
309  GlobalVector tsosGMom = currentState.globalMomentum();
310  GlobalError tsosGMEr(currentState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
311  GlobalPoint tsosGPos = currentState.globalPosition();
312  GlobalError tsosGPEr = currentState.cartesianError().position();
313 
314  GlobalPoint rhitGPos = (rhit)->globalPosition();
315  GlobalError rhitGPEr = (rhit)->globalPositionError();
316 
317  double pullGPX_rs = (rhitGPos.x()-shitGPos.x())/sqrt(rhitGPEr.cxx());
318  double pullGPY_rs = (rhitGPos.y()-shitGPos.y())/sqrt(rhitGPEr.cyy());
319  double pullGPZ_rs = (rhitGPos.z()-shitGPos.z())/sqrt(rhitGPEr.czz());
320  //double pullGPX_rs = (rhitGPos.x()-shitGPos.x());
321  //double pullGPY_rs = (rhitGPos.y()-shitGPos.y());
322  //double pullGPZ_rs = (rhitGPos.z()-shitGPos.z());
323 
324  LogTrace("TestHits") << "rs" << std::endl;
325  LogVerbatim("TestHits") << "assSimHits.size()=" << assSimHits.size() ;
326  LogVerbatim("TestHits") << "tsos globalPos =" << tsosGPos ;
327  LogVerbatim("TestHits") << "sim hit globalPos=" << shitGPos ;
328  LogVerbatim("TestHits") << "rec hit globalPos=" << rhitGPos ;
329  LogVerbatim("TestHits") << "geographicalId =" << rhit->det()->geographicalId().rawId() ;
330  LogVerbatim("TestHits") << "surface position =" << surf->position() ;
331 
332  title.str("");
333  title << "PullGP_X_" << subdetId << "-" << layerId << "_rs";
334  hPullGP_X_rs[title.str()]->Fill( pullGPX_rs );
335  title.str("");
336  title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs";
337  hPullGP_Y_rs[title.str()]->Fill( pullGPY_rs );
338  title.str("");
339  title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs";
340  hPullGP_Z_rs[title.str()]->Fill( pullGPZ_rs );
341 
342  double pullGPX_tr = (tsosGPos.x()-rhitGPos.x())/sqrt(tsosGPEr.cxx()+rhitGPEr.cxx());
343  double pullGPY_tr = (tsosGPos.y()-rhitGPos.y())/sqrt(tsosGPEr.cyy()+rhitGPEr.cyy());
344  double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z())/sqrt(tsosGPEr.czz()+rhitGPEr.czz());
345  //double pullGPX_tr = (tsosGPos.x()-rhitGPos.x());
346  //double pullGPY_tr = (tsosGPos.y()-rhitGPos.y());
347  //double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z());
348 
349  LogTrace("TestHits") << "tr" << std::endl;
350 
351  title.str("");
352  title << "PullGP_X_" << subdetId << "-" << layerId << "_tr";
353  hPullGP_X_tr[title.str()]->Fill( pullGPX_tr );
354  title.str("");
355  title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr";
356  hPullGP_Y_tr[title.str()]->Fill( pullGPY_tr );
357  title.str("");
358  title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr";
359  hPullGP_Z_tr[title.str()]->Fill( pullGPZ_tr );
360 
361  double pullGPX_ts = (tsosGPos.x()-shitGPos.x())/sqrt(tsosGPEr.cxx());
362  double pullGPY_ts = (tsosGPos.y()-shitGPos.y())/sqrt(tsosGPEr.cyy());
363  double pullGPZ_ts = (tsosGPos.z()-shitGPos.z())/sqrt(tsosGPEr.czz());
364  //double pullGPX_ts = (tsosGPos.x()-shitGPos.x());
365  //double pullGPY_ts = (tsosGPos.y()-shitGPos.y());
366  //double pullGPZ_ts = (tsosGPos.z()-shitGPos.z());
367 
368  LogTrace("TestHits") << "ts1" << std::endl;
369 
370  title.str("");
371  title << "PullGP_X_" << subdetId << "-" << layerId << "_ts";
372  hPullGP_X_ts[title.str()]->Fill( pullGPX_ts );
373  title.str("");
374  title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts";
375  hPullGP_Y_ts[title.str()]->Fill( pullGPY_ts );
376  title.str("");
377  title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts";
378  hPullGP_Z_ts[title.str()]->Fill( pullGPZ_ts );
379 
380  double pullGMX_ts = (tsosGMom.x()-shitGMom.x())/sqrt(tsosGMEr.cxx());
381  double pullGMY_ts = (tsosGMom.y()-shitGMom.y())/sqrt(tsosGMEr.cyy());
382  double pullGMZ_ts = (tsosGMom.z()-shitGMom.z())/sqrt(tsosGMEr.czz());
383  //double pullGMX_ts = (tsosGMom.x()-shitGMom.x());
384  //double pullGMY_ts = (tsosGMom.y()-shitGMom.y());
385  //double pullGMZ_ts = (tsosGMom.z()-shitGMom.z());
386 
387  LogTrace("TestHits") << "ts2" << std::endl;
388 
389  title.str("");
390  title << "PullGM_X_" << subdetId << "-" << layerId << "_ts";
391  hPullGM_X_ts[title.str()]->Fill( pullGMX_ts );
392  title.str("");
393  title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts";
394  hPullGM_Y_ts[title.str()]->Fill( pullGMY_ts );
395  title.str("");
396  title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts";
397  hPullGM_Z_ts[title.str()]->Fill( pullGMZ_ts );
398 
399  if (dynamic_cast<const SiStripMatchedRecHit2D*>((rhit)->hit())) {
400  //mono
401  LogTrace("TestHits") << "MONO HIT" << std::endl;
402  auto m = dynamic_cast<const SiStripMatchedRecHit2D*>((rhit)->hit())->monoHit();
403  CTTRHp tMonoHit = theBuilder->build(&m);
404  if (tMonoHit==0) continue;
405  vector<PSimHit> assMonoSimHits = hitAssociator->associateHit(*tMonoHit->hit());
406  if (assMonoSimHits.size()==0) continue;
407  const PSimHit sMonoHit = *(assSimHits.begin());
408  const Surface * monoSurf = &( tMonoHit->det()->surface() );
409  if (monoSurf==0) continue;
410  TSOS monoState = thePropagator->propagate(lastState,*monoSurf);
411  if (monoState.isValid()==0) continue;
412 
413  LocalVector monoShitLMom = sMonoHit.momentumAtEntry();
414  GlobalVector monoShitGMom = monoSurf->toGlobal(monoShitLMom);
415  LocalPoint monoShitLPos = sMonoHit.localPosition();
416  GlobalPoint monoShitGPos = monoSurf->toGlobal(monoShitLPos);
417 
418  GlobalVector monoTsosGMom = monoState.globalMomentum();
419  GlobalError monoTsosGMEr(monoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
420  GlobalPoint monoTsosGPos = monoState.globalPosition();
421  GlobalError monoTsosGPEr = monoState.cartesianError().position();
422 
423  GlobalPoint monoRhitGPos = tMonoHit->globalPosition();
424  GlobalError monoRhitGPEr = tMonoHit->globalPositionError();
425 
426  double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x())/sqrt(monoRhitGPEr.cxx());
427  double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y())/sqrt(monoRhitGPEr.cyy());
428  double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z())/sqrt(monoRhitGPEr.czz());
429  //double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x());
430  //double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y());
431  //double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z());
432 
433  title.str("");
434  title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_mono";
435  hPullGP_X_rs_mono[title.str()]->Fill( pullGPX_rs_mono );
436  title.str("");
437  title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_mono";
438  hPullGP_Y_rs_mono[title.str()]->Fill( pullGPY_rs_mono );
439  title.str("");
440  title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_mono";
441  hPullGP_Z_rs_mono[title.str()]->Fill( pullGPZ_rs_mono );
442 
443  double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x())/sqrt(monoTsosGPEr.cxx()+monoRhitGPEr.cxx());
444  double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y())/sqrt(monoTsosGPEr.cyy()+monoRhitGPEr.cyy());
445  double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z())/sqrt(monoTsosGPEr.czz()+monoRhitGPEr.czz());
446  //double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x());
447  //double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y());
448  //double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z());
449 
450  title.str("");
451  title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_mono";
452  hPullGP_X_tr_mono[title.str()]->Fill( pullGPX_tr_mono );
453  title.str("");
454  title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_mono";
455  hPullGP_Y_tr_mono[title.str()]->Fill( pullGPY_tr_mono );
456  title.str("");
457  title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_mono";
458  hPullGP_Z_tr_mono[title.str()]->Fill( pullGPZ_tr_mono );
459 
460  double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x())/sqrt(monoTsosGPEr.cxx());
461  double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y())/sqrt(monoTsosGPEr.cyy());
462  double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z())/sqrt(monoTsosGPEr.czz());
463  //double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x());
464  //double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y());
465  //double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z());
466 
467  title.str("");
468  title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_mono";
469  hPullGP_X_ts_mono[title.str()]->Fill( pullGPX_ts_mono );
470  title.str("");
471  title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_mono";
472  hPullGP_Y_ts_mono[title.str()]->Fill( pullGPY_ts_mono );
473  title.str("");
474  title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_mono";
475  hPullGP_Z_ts_mono[title.str()]->Fill( pullGPZ_ts_mono );
476 
477  double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x())/sqrt(monoTsosGMEr.cxx());
478  double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y())/sqrt(monoTsosGMEr.cyy());
479  double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z())/sqrt(monoTsosGMEr.czz());
480  //double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x());
481  //double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y());
482  //double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z());
483 
484  title.str("");
485  title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_mono";
486  hPullGM_X_ts_mono[title.str()]->Fill( pullGMX_ts_mono );
487  title.str("");
488  title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_mono";
489  hPullGM_Y_ts_mono[title.str()]->Fill( pullGMY_ts_mono );
490  title.str("");
491  title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_mono";
492  hPullGM_Z_ts_mono[title.str()]->Fill( pullGMZ_ts_mono );
493 
494  //stereo
495  LogTrace("TestHits") << "STEREO HIT" << std::endl;
496  auto s = dynamic_cast<const SiStripMatchedRecHit2D*>((rhit)->hit())->stereoHit();
497  CTTRHp tStereoHit =
498  theBuilder->build(&s);
499  if (tStereoHit==0) continue;
500  vector<PSimHit> assStereoSimHits = hitAssociator->associateHit(*tStereoHit->hit());
501  if (assStereoSimHits.size()==0) continue;
502  const PSimHit sStereoHit = *(assSimHits.begin());
503  const Surface * stereoSurf = &( tStereoHit->det()->surface() );
504  if (stereoSurf==0) continue;
505  TSOS stereoState = thePropagator->propagate(lastState,*stereoSurf);
506  if (stereoState.isValid()==0) continue;
507 
508  LocalVector stereoShitLMom = sStereoHit.momentumAtEntry();
509  GlobalVector stereoShitGMom = stereoSurf->toGlobal(stereoShitLMom);
510  LocalPoint stereoShitLPos = sStereoHit.localPosition();
511  GlobalPoint stereoShitGPos = stereoSurf->toGlobal(stereoShitLPos);
512 
513  GlobalVector stereoTsosGMom = stereoState.globalMomentum();
514  GlobalError stereoTsosGMEr(stereoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
515  GlobalPoint stereoTsosGPos = stereoState.globalPosition();
516  GlobalError stereoTsosGPEr = stereoState.cartesianError().position();
517 
518  GlobalPoint stereoRhitGPos = tStereoHit->globalPosition();
519  GlobalError stereoRhitGPEr = tStereoHit->globalPositionError();
520 
521  double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x())/sqrt(stereoRhitGPEr.cxx());
522  double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y())/sqrt(stereoRhitGPEr.cyy());
523  double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z())/sqrt(stereoRhitGPEr.czz());
524  //double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x());
525  //double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y());
526  //double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z());
527 
528  title.str("");
529  title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_stereo";
530  hPullGP_X_rs_stereo[title.str()]->Fill( pullGPX_rs_stereo );
531  title.str("");
532  title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_stereo";
533  hPullGP_Y_rs_stereo[title.str()]->Fill( pullGPY_rs_stereo );
534  title.str("");
535  title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_stereo";
536  hPullGP_Z_rs_stereo[title.str()]->Fill( pullGPZ_rs_stereo );
537 
538  double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x())/sqrt(stereoTsosGPEr.cxx()+stereoRhitGPEr.cxx());
539  double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y())/sqrt(stereoTsosGPEr.cyy()+stereoRhitGPEr.cyy());
540  double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z())/sqrt(stereoTsosGPEr.czz()+stereoRhitGPEr.czz());
541  //double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x());
542  //double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y());
543  //double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z());
544 
545  title.str("");
546  title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_stereo";
547  hPullGP_X_tr_stereo[title.str()]->Fill( pullGPX_tr_stereo );
548  title.str("");
549  title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_stereo";
550  hPullGP_Y_tr_stereo[title.str()]->Fill( pullGPY_tr_stereo );
551  title.str("");
552  title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_stereo";
553  hPullGP_Z_tr_stereo[title.str()]->Fill( pullGPZ_tr_stereo );
554 
555  double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x())/sqrt(stereoTsosGPEr.cxx());
556  double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y())/sqrt(stereoTsosGPEr.cyy());
557  double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z())/sqrt(stereoTsosGPEr.czz());
558  //double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x());
559  //double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y());
560  //double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z());
561 
562  title.str("");
563  title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_stereo";
564  hPullGP_X_ts_stereo[title.str()]->Fill( pullGPX_ts_stereo );
565  title.str("");
566  title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_stereo";
567  hPullGP_Y_ts_stereo[title.str()]->Fill( pullGPY_ts_stereo );
568  title.str("");
569  title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_stereo";
570  hPullGP_Z_ts_stereo[title.str()]->Fill( pullGPZ_ts_stereo );
571 
572  double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x())/sqrt(stereoTsosGMEr.cxx());
573  double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y())/sqrt(stereoTsosGMEr.cyy());
574  double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z())/sqrt(stereoTsosGMEr.czz());
575  //double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x());
576  //double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y());
577  //double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z());
578 
579  title.str("");
580  title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_stereo";
581  hPullGM_X_ts_stereo[title.str()]->Fill( pullGMX_ts_stereo );
582  title.str("");
583  title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_stereo";
584  hPullGM_Y_ts_stereo[title.str()]->Fill( pullGMY_ts_stereo );
585  title.str("");
586  title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_stereo";
587  hPullGM_Z_ts_stereo[title.str()]->Fill( pullGMZ_ts_stereo );
588  }
589  lastState = updatedState;
590  }
591  LogTrace("TestHits") << "traj chi2=" << tchi2 ;
592  LogTrace("TestHits") << "track chi2=" << result[0].chiSquared() ;
593  }
594  delete hitAssociator;
595  LogTrace("TestHits") << "end of event" << std::endl;
596 }
597 // TSOS lastState = theTSOS;
598 // for (std::vector<TrajectoryMeasurement>::iterator tm=vtm.begin(); tm!=vtm.end();tm++){
599 
600 // TransientTrackingRecHit::ConstRecHitPointer rhit = tm->recHit();
601 // if ((rhit)->isValid()==0&&rhit->det()!=0) continue;
602 
603 // // //test hits
604 // // TSOS lastState, currentState, updatedState;
605 // // updatedState=theTSOS;
606 // // for (TransientTrackingRecHit::RecHitContainer::iterator rhit=hits.begin()+1;rhit!=hits.end();++rhit){
607 
608 // lastState=updatedState;
609 
610 // LogTrace("TestHits") << "new hit" << std::endl;
611 
612 // if ((*rhit)->isValid()==0) continue;
613 
614 // int subdetId = (*rhit)->det()->geographicalId().subdetId();
615 // int layerId = 0;
616 // DetId id = (*rhit)->det()->geographicalId();
617 // if (id.subdetId()==3) layerId = ((tTopo->tibLayer(id);
618 // if (id.subdetId()==5) layerId = ((tTopo->tobLayer(id);
619 // if (id.subdetId()==1) layerId = ((tTopo->pxbLayer(id);
620 // if (id.subdetId()==4) layerId = ((tTopo->tidWheel(id);
621 // if (id.subdetId()==6) layerId = ((tTopo->tecWheel(id);
622 // if (id.subdetId()==2) layerId = ((tTopo->pxfDisk(id);
623 // const Surface * surf = &( (*rhit)->det()->surface() );
624 // currentState=thePropagator->propagate(lastState,*surf);
625 // if (currentState.isValid()==0) continue;
626 // updatedState=theUpdator->update(currentState,**rhit);
627 
628 // double delta = 99999;
629 // LocalPoint rhitLP = rhit->localPosition();
630 
631 // std::vector<PSimHit> assSimHits = hitAssociator->associateHit(*(*rhit)->hit());
632 // if (assSimHits.size()==0) continue;
633 // PSimHit shit;
634 // for(std::vector<PSimHit>::const_iterator m=assSimHits.begin(); m<assSimHits.end(); m++){
635 // if ((*m-rhitLP).mag()<delta) {
636 // shit=*m;
637 // delta = (*m-rhitLP).mag();
638 // }
639 // }
640 
641 // LocalVector shitLMom = shit.momentumAtEntry();
642 // GlobalVector shitGMom = surf->toGlobal(shitLMom);
643 // LocalPoint shitLPos = shit.localPosition();
644 // GlobalPoint shitGPos = surf->toGlobal(shitLPos);
645 
646 // GlobalVector tsosGMom = currentState.globalMomentum();
647 // GlobalError tsosGMEr(currentState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
648 // GlobalPoint tsosGPos = currentState.globalPosition();
649 // GlobalError tsosGPEr = currentState.cartesianError().position();
650 
651 // GlobalPoint rhitGPos = (*rhit)->globalPosition();
652 // GlobalError rhitGPEr = (*rhit)->globalPositionError();
653 
654 // double pullGPX_rs = (rhitGPos.x()-shitGPos.x())/sqrt(rhitGPEr.cxx());
655 // double pullGPY_rs = (rhitGPos.y()-shitGPos.y())/sqrt(rhitGPEr.cyy());
656 // double pullGPZ_rs = (rhitGPos.z()-shitGPos.z())/sqrt(rhitGPEr.czz());
657 // // double pullGPX_rs = (rhitGPos.x()-shitGPos.x())/*/sqrt(rhitGPEr.cxx())*/;
658 // // double pullGPY_rs = (rhitGPos.y()-shitGPos.y())/*/sqrt(rhitGPEr.cyy())*/;
659 // // double pullGPZ_rs = (rhitGPos.z()-shitGPos.z())/*/sqrt(rhitGPEr.czz())*/;
660 
661 // //plot chi2 increment
662 // MeasurementExtractor me(currentState);
663 // double chi2increment = computeChi2Increment(me,*rhit);
664 // LogTrace("TestHits") << "chi2increment=" << chi2increment << std::endl;
665 // title.str("");
666 // title << "Chi2Increment_" << subdetId << "-" << layerId;
667 // hChi2Increment[title.str()]->Fill( chi2increment );
668 // hTotChi2Increment->Fill( chi2increment );
669 // hChi2_vs_Process->Fill( chi2increment, shit.processType() );
670 // if (dynamic_cast<const SiPixelRecHit*>((*rhit)->hit()))
671 // hChi2_vs_clsize->Fill( chi2increment, ((const SiPixelRecHit*)(*rhit)->hit())->cluster()->size() );
672 // if (dynamic_cast<const SiStripRecHit2D*>((*rhit)->hit()))
673 // hChi2_vs_clsize->Fill( chi2increment, ((const SiStripRecHit2D*)(*rhit)->hit())->cluster()->amplitudes().size() );
674 
675 // LogTrace("TestHits") << "rs" << std::endl;
676 
677 // title.str("");
678 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs";
679 // hPullGP_X_rs[title.str()]->Fill( pullGPX_rs );
680 // title.str("");
681 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs";
682 // hPullGP_Y_rs[title.str()]->Fill( pullGPY_rs );
683 // title.str("");
684 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs";
685 // hPullGP_Z_rs[title.str()]->Fill( pullGPZ_rs );
686 
687 // double pullGPX_tr = (tsosGPos.x()-rhitGPos.x())/sqrt(tsosGPEr.cxx()+rhitGPEr.cxx());
688 // double pullGPY_tr = (tsosGPos.y()-rhitGPos.y())/sqrt(tsosGPEr.cyy()+rhitGPEr.cyy());
689 // double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z())/sqrt(tsosGPEr.czz()+rhitGPEr.czz());
690 // // double pullGPX_tr = (tsosGPos.x()-rhitGPos.x())/*/sqrt(tsosGPEr.cxx()+rhitGPEr.cxx())*/;
691 // // double pullGPY_tr = (tsosGPos.y()-rhitGPos.y())/*/sqrt(tsosGPEr.cyy()+rhitGPEr.cyy())*/;
692 // // double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z())/*/sqrt(tsosGPEr.czz()+rhitGPEr.czz())*/;
693 
694 // LogTrace("TestHits") << "tr" << std::endl;
695 
696 // title.str("");
697 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr";
698 // hPullGP_X_tr[title.str()]->Fill( pullGPX_tr );
699 // title.str("");
700 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr";
701 // hPullGP_Y_tr[title.str()]->Fill( pullGPY_tr );
702 // title.str("");
703 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr";
704 // hPullGP_Z_tr[title.str()]->Fill( pullGPZ_tr );
705 
706 // double pullGPX_ts = (tsosGPos.x()-shitGPos.x())/sqrt(tsosGPEr.cxx());
707 // double pullGPY_ts = (tsosGPos.y()-shitGPos.y())/sqrt(tsosGPEr.cyy());
708 // double pullGPZ_ts = (tsosGPos.z()-shitGPos.z())/sqrt(tsosGPEr.czz());
709 // // double pullGPX_ts = (tsosGPos.x()-shitGPos.x())/*/sqrt(tsosGPEr.cxx())*/;
710 // // double pullGPY_ts = (tsosGPos.y()-shitGPos.y())/*/sqrt(tsosGPEr.cyy())*/;
711 // // double pullGPZ_ts = (tsosGPos.z()-shitGPos.z())/*/sqrt(tsosGPEr.czz())*/;
712 
713 // LogTrace("TestHits") << "ts1" << std::endl;
714 
715 // title.str("");
716 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts";
717 // hPullGP_X_ts[title.str()]->Fill( pullGPX_ts );
718 // title.str("");
719 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts";
720 // hPullGP_Y_ts[title.str()]->Fill( pullGPY_ts );
721 // title.str("");
722 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts";
723 // hPullGP_Z_ts[title.str()]->Fill( pullGPZ_ts );
724 
725 // double pullGMX_ts = (tsosGMom.x()-shitGMom.x())/sqrt(tsosGMEr.cxx());
726 // double pullGMY_ts = (tsosGMom.y()-shitGMom.y())/sqrt(tsosGMEr.cyy());
727 // double pullGMZ_ts = (tsosGMom.z()-shitGMom.z())/sqrt(tsosGMEr.czz());
728 // // double pullGMX_ts = (tsosGMom.x()-shitGMom.x())/*/sqrt(tsosGMEr.cxx())*/;
729 // // double pullGMY_ts = (tsosGMom.y()-shitGMom.y())/*/sqrt(tsosGMEr.cyy())*/;
730 // // double pullGMZ_ts = (tsosGMom.z()-shitGMom.z())/*/sqrt(tsosGMEr.czz())*/;
731 
732 // LogTrace("TestHits") << "ts2" << std::endl;
733 
734 // title.str("");
735 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts";
736 // hPullGM_X_ts[title.str()]->Fill( pullGMX_ts );
737 // title.str("");
738 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts";
739 // hPullGM_Y_ts[title.str()]->Fill( pullGMY_ts );
740 // title.str("");
741 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts";
742 // hPullGM_Z_ts[title.str()]->Fill( pullGMZ_ts );
743 
744 // if (dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())) {
745 // //mono
746 // LogTrace("TestHits") << "MONO HIT" << std::endl;
747 // CTTRHp tMonoHit =
748 // theBuilder->build(dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())->monoHit());
749 // if (tMonoHit==0) continue;
750 // vector<PSimHit> assMonoSimHits = hitAssociator->associateHit(*tMonoHit->hit());
751 // if (assMonoSimHits.size()==0) continue;
752 // const PSimHit sMonoHit = *(assSimHits.begin());
753 // const Surface * monoSurf = &( tMonoHit->det()->surface() );
754 // if (monoSurf==0) continue;
755 // TSOS monoState = thePropagator->propagate(lastState,*monoSurf);
756 // if (monoState.isValid()==0) continue;
757 
758 // LocalVector monoShitLMom = sMonoHit.momentumAtEntry();
759 // GlobalVector monoShitGMom = monoSurf->toGlobal(monoShitLMom);
760 // LocalPoint monoShitLPos = sMonoHit.localPosition();
761 // GlobalPoint monoShitGPos = monoSurf->toGlobal(monoShitLPos);
762 
763 // GlobalVector monoTsosGMom = monoState.globalMomentum();
764 // GlobalError monoTsosGMEr(monoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
765 // GlobalPoint monoTsosGPos = monoState.globalPosition();
766 // GlobalError monoTsosGPEr = monoState.cartesianError().position();
767 
768 // GlobalPoint monoRhitGPos = tMonoHit->globalPosition();
769 // GlobalError monoRhitGPEr = tMonoHit->globalPositionError();
770 
771 // double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x())/sqrt(monoRhitGPEr.cxx());
772 // double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y())/sqrt(monoRhitGPEr.cyy());
773 // double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z())/sqrt(monoRhitGPEr.czz());
774 // // double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x())/*/sqrt(monoRhitGPEr.cxx())*/;
775 // // double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y())/*/sqrt(monoRhitGPEr.cyy())*/;
776 // // double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z())/*/sqrt(monoRhitGPEr.czz())*/;
777 
778 // title.str("");
779 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_mono";
780 // hPullGP_X_rs_mono[title.str()]->Fill( pullGPX_rs_mono );
781 // title.str("");
782 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_mono";
783 // hPullGP_Y_rs_mono[title.str()]->Fill( pullGPY_rs_mono );
784 // title.str("");
785 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_mono";
786 // hPullGP_Z_rs_mono[title.str()]->Fill( pullGPZ_rs_mono );
787 
788 // double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x())/sqrt(monoTsosGPEr.cxx()+monoRhitGPEr.cxx());
789 // double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y())/sqrt(monoTsosGPEr.cyy()+monoRhitGPEr.cyy());
790 // double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z())/sqrt(monoTsosGPEr.czz()+monoRhitGPEr.czz());
791 // // double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x())/*/sqrt(monoTsosGPEr.cxx()+monoRhitGPEr.cxx())*/;
792 // // double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y())/*/sqrt(monoTsosGPEr.cyy()+monoRhitGPEr.cyy())*/;
793 // // double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z())/*/sqrt(monoTsosGPEr.czz()+monoRhitGPEr.czz())*/;
794 
795 // title.str("");
796 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_mono";
797 // hPullGP_X_tr_mono[title.str()]->Fill( pullGPX_tr_mono );
798 // title.str("");
799 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_mono";
800 // hPullGP_Y_tr_mono[title.str()]->Fill( pullGPY_tr_mono );
801 // title.str("");
802 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_mono";
803 // hPullGP_Z_tr_mono[title.str()]->Fill( pullGPZ_tr_mono );
804 
805 // double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x())/sqrt(monoTsosGPEr.cxx());
806 // double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y())/sqrt(monoTsosGPEr.cyy());
807 // double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z())/sqrt(monoTsosGPEr.czz());
808 // // double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x())/*/sqrt(monoTsosGPEr.cxx())*/;
809 // // double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y())/*/sqrt(monoTsosGPEr.cyy())*/;
810 // // double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z())/*/sqrt(monoTsosGPEr.czz())*/;
811 
812 // title.str("");
813 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_mono";
814 // hPullGP_X_ts_mono[title.str()]->Fill( pullGPX_ts_mono );
815 // title.str("");
816 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_mono";
817 // hPullGP_Y_ts_mono[title.str()]->Fill( pullGPY_ts_mono );
818 // title.str("");
819 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_mono";
820 // hPullGP_Z_ts_mono[title.str()]->Fill( pullGPZ_ts_mono );
821 
822 // double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x())/sqrt(monoTsosGMEr.cxx());
823 // double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y())/sqrt(monoTsosGMEr.cyy());
824 // double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z())/sqrt(monoTsosGMEr.czz());
825 // // double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x())/*/sqrt(monoTsosGMEr.cxx())*/;
826 // // double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y())/*/sqrt(monoTsosGMEr.cyy())*/;
827 // // double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z())/*/sqrt(monoTsosGMEr.czz())*/;
828 
829 // title.str("");
830 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_mono";
831 // hPullGM_X_ts_mono[title.str()]->Fill( pullGMX_ts_mono );
832 // title.str("");
833 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_mono";
834 // hPullGM_Y_ts_mono[title.str()]->Fill( pullGMY_ts_mono );
835 // title.str("");
836 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_mono";
837 // hPullGM_Z_ts_mono[title.str()]->Fill( pullGMZ_ts_mono );
838 
839 // //stereo
840 // LogTrace("TestHits") << "STEREO HIT" << std::endl;
841 // CTTRHp tStereoHit =
842 // theBuilder->build(dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())->stereoHit());
843 // if (tStereoHit==0) continue;
844 // vector<PSimHit> assStereoSimHits = hitAssociator->associateHit(*tStereoHit->hit());
845 // if (assStereoSimHits.size()==0) continue;
846 // const PSimHit sStereoHit = *(assSimHits.begin());
847 // const Surface * stereoSurf = &( tStereoHit->det()->surface() );
848 // if (stereoSurf==0) continue;
849 // TSOS stereoState = thePropagator->propagate(lastState,*stereoSurf);
850 // if (stereoState.isValid()==0) continue;
851 
852 // LocalVector stereoShitLMom = sStereoHit.momentumAtEntry();
853 // GlobalVector stereoShitGMom = stereoSurf->toGlobal(stereoShitLMom);
854 // LocalPoint stereoShitLPos = sStereoHit.localPosition();
855 // GlobalPoint stereoShitGPos = stereoSurf->toGlobal(stereoShitLPos);
856 
857 // GlobalVector stereoTsosGMom = stereoState.globalMomentum();
858 // GlobalError stereoTsosGMEr(stereoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
859 // GlobalPoint stereoTsosGPos = stereoState.globalPosition();
860 // GlobalError stereoTsosGPEr = stereoState.cartesianError().position();
861 
862 // GlobalPoint stereoRhitGPos = tStereoHit->globalPosition();
863 // GlobalError stereoRhitGPEr = tStereoHit->globalPositionError();
864 
865 // double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x())/sqrt(stereoRhitGPEr.cxx());
866 // double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y())/sqrt(stereoRhitGPEr.cyy());
867 // double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z())/sqrt(stereoRhitGPEr.czz());
868 // // double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x())/*/sqrt(stereoRhitGPEr.cxx())*/;
869 // // double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y())/*/sqrt(stereoRhitGPEr.cyy())*/;
870 // // double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z())/*/sqrt(stereoRhitGPEr.czz())*/;
871 
872 // title.str("");
873 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_stereo";
874 // hPullGP_X_rs_stereo[title.str()]->Fill( pullGPX_rs_stereo );
875 // title.str("");
876 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_stereo";
877 // hPullGP_Y_rs_stereo[title.str()]->Fill( pullGPY_rs_stereo );
878 // title.str("");
879 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_stereo";
880 // hPullGP_Z_rs_stereo[title.str()]->Fill( pullGPZ_rs_stereo );
881 
882 // double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x())/sqrt(stereoTsosGPEr.cxx()+stereoRhitGPEr.cxx());
883 // double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y())/sqrt(stereoTsosGPEr.cyy()+stereoRhitGPEr.cyy());
884 // double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z())/sqrt(stereoTsosGPEr.czz()+stereoRhitGPEr.czz());
885 // // double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x())/*/sqrt(stereoTsosGPEr.cxx()+stereoRhitGPEr.cxx())*/;
886 // // double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y())/*/sqrt(stereoTsosGPEr.cyy()+stereoRhitGPEr.cyy())*/;
887 // // double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z())/*/sqrt(stereoTsosGPEr.czz()+stereoRhitGPEr.czz())*/;
888 
889 // title.str("");
890 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_stereo";
891 // hPullGP_X_tr_stereo[title.str()]->Fill( pullGPX_tr_stereo );
892 // title.str("");
893 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_stereo";
894 // hPullGP_Y_tr_stereo[title.str()]->Fill( pullGPY_tr_stereo );
895 // title.str("");
896 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_stereo";
897 // hPullGP_Z_tr_stereo[title.str()]->Fill( pullGPZ_tr_stereo );
898 
899 // double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x())/sqrt(stereoTsosGPEr.cxx());
900 // double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y())/sqrt(stereoTsosGPEr.cyy());
901 // double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z())/sqrt(stereoTsosGPEr.czz());
902 // // double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x())/*/sqrt(stereoTsosGPEr.cxx())*/;
903 // // double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y())/*/sqrt(stereoTsosGPEr.cyy())*/;
904 // // double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z())/*/sqrt(stereoTsosGPEr.czz())*/;
905 
906 // title.str("");
907 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_stereo";
908 // hPullGP_X_ts_stereo[title.str()]->Fill( pullGPX_ts_stereo );
909 // title.str("");
910 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_stereo";
911 // hPullGP_Y_ts_stereo[title.str()]->Fill( pullGPY_ts_stereo );
912 // title.str("");
913 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_stereo";
914 // hPullGP_Z_ts_stereo[title.str()]->Fill( pullGPZ_ts_stereo );
915 
916 // double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x())/sqrt(stereoTsosGMEr.cxx());
917 // double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y())/sqrt(stereoTsosGMEr.cyy());
918 // double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z())/sqrt(stereoTsosGMEr.czz());
919 // // double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x())/*/sqrt(stereoTsosGMEr.cxx())*/;
920 // // double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y())/*/sqrt(stereoTsosGMEr.cyy())*/;
921 // // double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z())/*/sqrt(stereoTsosGMEr.czz())*/;
922 
923 // title.str("");
924 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_stereo";
925 // hPullGM_X_ts_stereo[title.str()]->Fill( pullGMX_ts_stereo );
926 // title.str("");
927 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_stereo";
928 // hPullGM_Y_ts_stereo[title.str()]->Fill( pullGMY_ts_stereo );
929 // title.str("");
930 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_stereo";
931 // hPullGM_Z_ts_stereo[title.str()]->Fill( pullGMZ_ts_stereo );
932 // }
933 // }
934 // }
935 // delete hitAssociator;
936 // LogTrace("TestHits") << "end of event" << std::endl;
937 // }
938 
940  //file->Write();
941  TDirectory * chi2i = file->mkdir("Chi2_Increment");
942 
943  TDirectory * gp_ts = file->mkdir("GP_TSOS-SimHit");
944  TDirectory * gm_ts = file->mkdir("GM_TSOS-SimHit");
945  TDirectory * gp_tr = file->mkdir("GP_TSOS-RecHit");
946  TDirectory * gp_rs = file->mkdir("GP_RecHit-SimHit");
947 
948  TDirectory * gp_tsx = gp_ts->mkdir("X");
949  TDirectory * gp_tsy = gp_ts->mkdir("Y");
950  TDirectory * gp_tsz = gp_ts->mkdir("Z");
951  TDirectory * gm_tsx = gm_ts->mkdir("X");
952  TDirectory * gm_tsy = gm_ts->mkdir("Y");
953  TDirectory * gm_tsz = gm_ts->mkdir("Z");
954  TDirectory * gp_trx = gp_tr->mkdir("X");
955  TDirectory * gp_try = gp_tr->mkdir("Y");
956  TDirectory * gp_trz = gp_tr->mkdir("Z");
957  TDirectory * gp_rsx = gp_rs->mkdir("X");
958  TDirectory * gp_rsy = gp_rs->mkdir("Y");
959  TDirectory * gp_rsz = gp_rs->mkdir("Z");
960 
961  TDirectory * gp_tsx_mono = gp_ts->mkdir("MONOX");
962  TDirectory * gp_tsy_mono = gp_ts->mkdir("MONOY");
963  TDirectory * gp_tsz_mono = gp_ts->mkdir("MONOZ");
964  TDirectory * gm_tsx_mono = gm_ts->mkdir("MONOX");
965  TDirectory * gm_tsy_mono = gm_ts->mkdir("MONOY");
966  TDirectory * gm_tsz_mono = gm_ts->mkdir("MONOZ");
967  TDirectory * gp_trx_mono = gp_tr->mkdir("MONOX");
968  TDirectory * gp_try_mono = gp_tr->mkdir("MONOY");
969  TDirectory * gp_trz_mono = gp_tr->mkdir("MONOZ");
970  TDirectory * gp_rsx_mono = gp_rs->mkdir("MONOX");
971  TDirectory * gp_rsy_mono = gp_rs->mkdir("MONOY");
972  TDirectory * gp_rsz_mono = gp_rs->mkdir("MONOZ");
973 
974  TDirectory * gp_tsx_stereo = gp_ts->mkdir("STEREOX");
975  TDirectory * gp_tsy_stereo = gp_ts->mkdir("STEREOY");
976  TDirectory * gp_tsz_stereo = gp_ts->mkdir("STEREOZ");
977  TDirectory * gm_tsx_stereo = gm_ts->mkdir("STEREOX");
978  TDirectory * gm_tsy_stereo = gm_ts->mkdir("STEREOY");
979  TDirectory * gm_tsz_stereo = gm_ts->mkdir("STEREOZ");
980  TDirectory * gp_trx_stereo = gp_tr->mkdir("STEREOX");
981  TDirectory * gp_try_stereo = gp_tr->mkdir("STEREOY");
982  TDirectory * gp_trz_stereo = gp_tr->mkdir("STEREOZ");
983  TDirectory * gp_rsx_stereo = gp_rs->mkdir("STEREOX");
984  TDirectory * gp_rsy_stereo = gp_rs->mkdir("STEREOY");
985  TDirectory * gp_rsz_stereo = gp_rs->mkdir("STEREOZ");
986 
987  chi2i->cd();
988  hTotChi2Increment->Write();
989  hProcess_vs_Chi2->Write();
990  hClsize_vs_Chi2->Write();
991  for (int i=0; i!=6; i++)
992  for (int j=0; j!=9; j++){
993  if (i==0 && j>2) break;
994  if (i==1 && j>1) break;
995  if (i==2 && j>3) break;
996  if (i==3 && j>2) break;
997  if (i==4 && j>5) break;
998  if (i==5 && j>8) break;
999  chi2i->cd();
1000  title.str("");
1001  title << "Chi2Increment_" << i+1 << "-" << j+1;
1002  hChi2Increment[title.str()]->Write();
1003 
1004  gp_ts->cd();
1005  gp_tsx->cd();
1006  title.str("");
1007  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts";
1008  hPullGP_X_ts[title.str()]->Write();
1009  gp_tsy->cd();
1010  title.str("");
1011  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts";
1012  hPullGP_Y_ts[title.str()]->Write();
1013  gp_tsz->cd();
1014  title.str("");
1015  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts";
1016  hPullGP_Z_ts[title.str()]->Write();
1017 
1018  gm_ts->cd();
1019  gm_tsx->cd();
1020  title.str("");
1021  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts";
1022  hPullGM_X_ts[title.str()]->Write();
1023  gm_tsy->cd();
1024  title.str("");
1025  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts";
1026  hPullGM_Y_ts[title.str()]->Write();
1027  gm_tsz->cd();
1028  title.str("");
1029  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts";
1030  hPullGM_Z_ts[title.str()]->Write();
1031 
1032  gp_tr->cd();
1033  gp_trx->cd();
1034  title.str("");
1035  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr";
1036  hPullGP_X_tr[title.str()]->Write();
1037  gp_try->cd();
1038  title.str("");
1039  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr";
1040  hPullGP_Y_tr[title.str()]->Write();
1041  gp_trz->cd();
1042  title.str("");
1043  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr";
1044  hPullGP_Z_tr[title.str()]->Write();
1045 
1046  gp_rs->cd();
1047  gp_rsx->cd();
1048  title.str("");
1049  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs";
1050  hPullGP_X_rs[title.str()]->Write();
1051  gp_rsy->cd();
1052  title.str("");
1053  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs";
1054  hPullGP_Y_rs[title.str()]->Write();
1055  gp_rsz->cd();
1056  title.str("");
1057  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs";
1058  hPullGP_Z_rs[title.str()]->Write();
1059 
1060  if ( ((i==2||i==4)&&(j==0||j==1)) || (i==3||i==5) ){
1061  //mono
1062  gp_ts->cd();
1063  gp_tsx_mono->cd();
1064  title.str("");
1065  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_mono";
1066  hPullGP_X_ts_mono[title.str()]->Write();
1067  gp_tsy_mono->cd();
1068  title.str("");
1069  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_mono";
1070  hPullGP_Y_ts_mono[title.str()]->Write();
1071  gp_tsz_mono->cd();
1072  title.str("");
1073  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_mono";
1074  hPullGP_Z_ts_mono[title.str()]->Write();
1075 
1076  gm_ts->cd();
1077  gm_tsx_mono->cd();
1078  title.str("");
1079  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_mono";
1080  hPullGM_X_ts_mono[title.str()]->Write();
1081  gm_tsy_mono->cd();
1082  title.str("");
1083  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_mono";
1084  hPullGM_Y_ts_mono[title.str()]->Write();
1085  gm_tsz_mono->cd();
1086  title.str("");
1087  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_mono";
1088  hPullGM_Z_ts_mono[title.str()]->Write();
1089 
1090  gp_tr->cd();
1091  gp_trx_mono->cd();
1092  title.str("");
1093  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_mono";
1094  hPullGP_X_tr_mono[title.str()]->Write();
1095  gp_try_mono->cd();
1096  title.str("");
1097  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_mono";
1098  hPullGP_Y_tr_mono[title.str()]->Write();
1099  gp_trz_mono->cd();
1100  title.str("");
1101  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_mono";
1102  hPullGP_Z_tr_mono[title.str()]->Write();
1103 
1104  gp_rs->cd();
1105  gp_rsx_mono->cd();
1106  title.str("");
1107  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_mono";
1108  hPullGP_X_rs_mono[title.str()]->Write();
1109  gp_rsy_mono->cd();
1110  title.str("");
1111  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_mono";
1112  hPullGP_Y_rs_mono[title.str()]->Write();
1113  gp_rsz_mono->cd();
1114  title.str("");
1115  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_mono";
1116  hPullGP_Z_rs_mono[title.str()]->Write();
1117 
1118  //stereo
1119  gp_ts->cd();
1120  gp_tsx_stereo->cd();
1121  title.str("");
1122  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_stereo";
1123  hPullGP_X_ts_stereo[title.str()]->Write();
1124  gp_tsy_stereo->cd();
1125  title.str("");
1126  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
1127  hPullGP_Y_ts_stereo[title.str()]->Write();
1128  gp_tsz_stereo->cd();
1129  title.str("");
1130  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
1131  hPullGP_Z_ts_stereo[title.str()]->Write();
1132 
1133  gm_ts->cd();
1134  gm_tsx_stereo->cd();
1135  title.str("");
1136  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_stereo";
1137  hPullGM_X_ts_stereo[title.str()]->Write();
1138  gm_tsy_stereo->cd();
1139  title.str("");
1140  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
1141  hPullGM_Y_ts_stereo[title.str()]->Write();
1142  gm_tsz_stereo->cd();
1143  title.str("");
1144  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
1145  hPullGM_Z_ts_stereo[title.str()]->Write();
1146 
1147  gp_tr->cd();
1148  gp_trx_stereo->cd();
1149  title.str("");
1150  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_stereo";
1151  hPullGP_X_tr_stereo[title.str()]->Write();
1152  gp_try_stereo->cd();
1153  title.str("");
1154  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_stereo";
1155  hPullGP_Y_tr_stereo[title.str()]->Write();
1156  gp_trz_stereo->cd();
1157  title.str("");
1158  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_stereo";
1159  hPullGP_Z_tr_stereo[title.str()]->Write();
1160 
1161  gp_rs->cd();
1162  gp_rsx_stereo->cd();
1163  title.str("");
1164  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_stereo";
1165  hPullGP_X_rs_stereo[title.str()]->Write();
1166  gp_rsy_stereo->cd();
1167  title.str("");
1168  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_stereo";
1169  hPullGP_Y_rs_stereo[title.str()]->Write();
1170  gp_rsz_stereo->cd();
1171  title.str("");
1172  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_stereo";
1173  hPullGP_Z_rs_stereo[title.str()]->Write();
1174  }
1175  }
1176 
1177  file->Close();
1178 }
1179 
1180 //needed by to do the residual for matched hits
1181 //taken from SiStripTrackingRecHitsValid.cc
1182 std::pair<LocalPoint,LocalVector>
1183 TestHits::projectHit( const PSimHit& hit, const StripGeomDetUnit* stripDet, const BoundPlane& plane)
1184 {
1185  const StripTopology& topol = stripDet->specificTopology();
1186  GlobalPoint globalpos= stripDet->surface().toGlobal(hit.localPosition());
1187  LocalPoint localHit = plane.toLocal(globalpos);
1188  //track direction
1189  LocalVector locdir=hit.localDirection();
1190  //rotate track in new frame
1191 
1192  GlobalVector globaldir= stripDet->surface().toGlobal(locdir);
1193  LocalVector dir=plane.toLocal(globaldir);
1194  float scale = -localHit.z() / dir.z();
1195 
1196  LocalPoint projectedPos = localHit + scale*dir;
1197 
1198  float selfAngle = topol.stripAngle( topol.strip( hit.localPosition()));
1199 
1200  LocalVector stripDir( sin(selfAngle), cos(selfAngle), 0); // vector along strip in hit frame
1201 
1202  LocalVector localStripDir( plane.toLocal(stripDet->surface().toGlobal( stripDir)));
1203 
1204  return std::pair<LocalPoint,LocalVector>( projectedPos, localStripDir);
1205 }
1206 
1209 
edm::Handle< TrackCandidateCollection > theTCCollection
Definition: TestHits.h:76
dbl * delta
Definition: mlp_gen.cc:36
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:114
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
std::pair< LocalPoint, LocalVector > projectHit(const PSimHit &, const StripGeomDetUnit *, const BoundPlane &)
Definition: TestHits.cc:1183
virtual void beginRun(edm::Run &run, const edm::EventSetup &)
Definition: TestHits.cc:37
std::map< std::string, TH1F * > hPullGP_Y_tr_mono
Definition: TestHits.h:106
std::map< std::string, TH1F * > hPullGP_X_rs_mono
Definition: TestHits.h:102
std::map< std::string, TH1F * > hPullGP_Z_tr_stereo
Definition: TestHits.h:120
TH1F * hTotChi2Increment
Definition: TestHits.h:93
virtual float stripAngle(float strip) const =0
range recHits() const
edm::ESHandle< TransientTrackingRecHitBuilder > theBuilder
Definition: TestHits.h:74
std::map< std::string, TH1F * > hPullGP_Z_ts_mono
Definition: TestHits.h:98
LocalVector momentumAtEntry() const
The momentum of the track that produced the hit, at entry point.
Definition: PSimHit.h:47
std::map< std::string, TH1F * > hPullGM_X_ts_stereo
Definition: TestHits.h:112
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::map< std::string, TH1F * > hPullGM_X_ts_mono
Definition: TestHits.h:99
std::string builderName
Definition: TestHits.h:67
double mineta
Definition: TestHits.h:64
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
TrajectorySeed const & seed() const
const CartesianTrajectoryError cartesianError() const
T y() const
Definition: PV3DBase.h:63
GlobalPoint globalPosition() const
std::map< std::string, TH1F * > hPullGP_Y_ts
Definition: TestHits.h:81
std::map< std::string, TH1F * > hChi2Increment
Definition: TestHits.h:92
std::pair< const_iterator, const_iterator > range
std::map< std::string, TH1F * > hPullGP_Y_ts_stereo
Definition: TestHits.h:110
std::map< std::string, TH1F * > hPullGP_Z_rs
Definition: TestHits.h:88
virtual const StripTopology & specificTopology() const
Returns a reference to the strip proxy topology.
edm::ESHandle< Propagator > thePropagator
Definition: TestHits.h:73
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:35
std::map< std::string, TH1F * > hPullGP_Y_rs
Definition: TestHits.h:87
std::vector< ConstRecHitPointer > RecHitContainer
std::map< std::string, TH1F * > hPullGP_X_tr_stereo
Definition: TestHits.h:118
virtual float strip(const LocalPoint &) const =0
std::map< std::string, TH1F * > hPullGP_Z_rs_stereo
Definition: TestHits.h:117
PTrajectoryStateOnDet const & trajectoryStateOnDet() const
TrackerHitAssociator * hitAssociator
Definition: TestHits.h:62
int iEvent
Definition: GenABIO.cc:243
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
std::map< std::string, TH1F * > hPullGP_Y_tr
Definition: TestHits.h:90
Local3DPoint localPosition() const
Definition: PSimHit.h:44
std::string propagatorName
Definition: TestHits.h:66
T sqrt(T t)
Definition: SSEVec.h:48
std::map< std::string, TH1F * > hPullGP_X_rs_stereo
Definition: TestHits.h:115
T z() const
Definition: PV3DBase.h:64
tuple result
Definition: query.py:137
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
int j
Definition: DBlmapReader.cc:9
virtual void endJob()
Definition: TestHits.cc:939
std::map< std::string, TH1F * > hPullGP_Y_tr_stereo
Definition: TestHits.h:119
TransientTrackingRecHit::ConstRecHitPointer CTTRHp
Definition: CkfDebugger.h:39
std::map< std::string, TH1F * > hPullGP_Y_rs_mono
Definition: TestHits.h:103
unsigned int detId() const
std::map< std::string, TH1F * > hPullGM_Z_ts
Definition: TestHits.h:85
std::map< std::string, TH1F * > hPullGM_Y_ts_mono
Definition: TestHits.h:100
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
std::map< std::string, TH1F * > hPullGP_Z_rs_mono
Definition: TestHits.h:104
#define LogTrace(id)
std::map< std::string, TH1F * > hPullGP_X_ts_stereo
Definition: TestHits.h:109
std::map< std::string, TH1F * > hPullGP_Y_rs_stereo
Definition: TestHits.h:116
const AlgebraicSymMatrix66 & matrix() const
edm::ESHandle< TrackerGeometry > theG
Definition: TestHits.h:71
edm::ESHandle< TrajectoryFitter > fit
Definition: TestHits.h:75
LocalVector localDirection() const
Obsolete. Same as momentumAtEntry().unit(), for backward compatibility.
Definition: PSimHit.h:52
Definition: DetId.h:18
std::map< std::string, TH1F * > hPullGM_Z_ts_stereo
Definition: TestHits.h:114
TrajectoryStateOnSurface TSOS
Definition: TestHits.cc:19
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
~TestHits()
Definition: TestHits.cc:35
TH2F * hProcess_vs_Chi2
Definition: TestHits.h:94
const GlobalError position() const
Position error submatrix.
virtual void analyze(const edm::Event &, const edm::EventSetup &)
Definition: TestHits.cc:188
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
std::map< std::string, TH1F * > hPullGP_Z_tr
Definition: TestHits.h:91
std::map< std::string, TH1F * > hPullGP_Y_ts_mono
Definition: TestHits.h:97
unsigned short processType() const
Definition: PSimHit.h:118
std::map< std::string, TH1F * > hPullGM_Y_ts_stereo
Definition: TestHits.h:113
edm::ESHandle< MagneticField > theMF
Definition: TestHits.h:72
const edm::ParameterSet conf_
Definition: TestHits.h:61
std::map< std::string, TH1F * > hPullGP_X_tr_mono
Definition: TestHits.h:105
TH2F * hClsize_vs_Chi2
Definition: TestHits.h:94
TFile * file
Definition: TestHits.h:78
GlobalVector globalMomentum() const
std::map< std::string, TH1F * > hPullGM_X_ts
Definition: TestHits.h:83
std::map< std::string, TH1F * > hPullGP_X_ts
Definition: TestHits.h:80
std::vector< PSimHit > associateHit(const TrackingRecHit &thit)
std::string fname
Definition: TestHits.h:69
std::string srcName
Definition: TestHits.h:68
std::map< std::string, TH1F * > hPullGP_Z_ts
Definition: TestHits.h:82
dbl *** dir
Definition: mlp_gen.cc:35
TestHits(const edm::ParameterSet &)
Definition: TestHits.cc:24
std::map< std::string, TH1F * > hPullGP_Z_tr_mono
Definition: TestHits.h:107
std::map< std::string, TH1F * > hPullGP_X_ts_mono
Definition: TestHits.h:96
T x() const
Definition: PV3DBase.h:62
const PositionType & position() const
std::map< std::string, TH1F * > hPullGM_Z_ts_mono
Definition: TestHits.h:101
std::map< std::string, TH1F * > hPullGM_Y_ts
Definition: TestHits.h:84
std::map< std::string, TH1F * > hPullGP_X_tr
Definition: TestHits.h:89
Definition: Run.h:41
std::stringstream title
Definition: TestHits.h:79
Pixel Reconstructed Hit.
double maxeta
Definition: TestHits.h:64
std::map< std::string, TH1F * > hPullGP_Z_ts_stereo
Definition: TestHits.h:111
std::map< std::string, TH1F * > hPullGP_X_rs
Definition: TestHits.h:86