CMS 3D CMS Logo

TestHits.cc
Go to the documentation of this file.
1 #include "TestHits.h"
2 
11 #include <TDirectory.h>
14 
18 
21 using namespace std;
22 using namespace edm;
23 
25  trackerHitAssociatorConfig_(consumesCollector()) {
26  LogTrace("TestHits") << iConfig<< std::endl;
27  propagatorName = iConfig.getParameter<std::string>("Propagator");
28  builderName = iConfig.getParameter<std::string>("TTRHBuilder");
29  srcName = iConfig.getParameter<std::string>("src");
30  fname = iConfig.getParameter<std::string>("Fitter");
31  mineta = iConfig.getParameter<double>("mineta");
32  maxeta = iConfig.getParameter<double>("maxeta");
33 }
34 
36 
37 void TestHits::beginRun(edm::Run const& run, const edm::EventSetup& iSetup)
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<TrackerTopologyRcd>().get(tTopo);
193 
194 
195  LogTrace("TestHits") << "\nnew event";
196 
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=
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.empty()) 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()!=nullptr) 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.empty()) 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==nullptr) continue;
405  vector<PSimHit> assMonoSimHits = hitAssociator.associateHit(*tMonoHit->hit());
406  if (assMonoSimHits.empty()) continue;
407  const PSimHit sMonoHit = *(assSimHits.begin());
408  const Surface * monoSurf = &( tMonoHit->det()->surface() );
409  if (monoSurf==nullptr) 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==nullptr) continue;
500  vector<PSimHit> assStereoSimHits = hitAssociator.associateHit(*tStereoHit->hit());
501  if (assStereoSimHits.empty()) continue;
502  const PSimHit sStereoHit = *(assSimHits.begin());
503  const Surface * stereoSurf = &( tStereoHit->det()->surface() );
504  if (stereoSurf==nullptr) 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  LogTrace("TestHits") << "end of event" << std::endl;
595 }
596 // TSOS lastState = theTSOS;
597 // for (std::vector<TrajectoryMeasurement>::iterator tm=vtm.begin(); tm!=vtm.end();tm++){
598 
599 // TransientTrackingRecHit::ConstRecHitPointer rhit = tm->recHit();
600 // if ((rhit)->isValid()==0&&rhit->det()!=0) continue;
601 
602 // // //test hits
603 // // TSOS lastState, currentState, updatedState;
604 // // updatedState=theTSOS;
605 // // for (TransientTrackingRecHit::RecHitContainer::iterator rhit=hits.begin()+1;rhit!=hits.end();++rhit){
606 
607 // lastState=updatedState;
608 
609 // LogTrace("TestHits") << "new hit" << std::endl;
610 
611 // if ((*rhit)->isValid()==0) continue;
612 
613 // int subdetId = (*rhit)->det()->geographicalId().subdetId();
614 // int layerId = 0;
615 // DetId id = (*rhit)->det()->geographicalId();
616 // if (id.subdetId()==3) layerId = ((tTopo->tibLayer(id);
617 // if (id.subdetId()==5) layerId = ((tTopo->tobLayer(id);
618 // if (id.subdetId()==1) layerId = ((tTopo->pxbLayer(id);
619 // if (id.subdetId()==4) layerId = ((tTopo->tidWheel(id);
620 // if (id.subdetId()==6) layerId = ((tTopo->tecWheel(id);
621 // if (id.subdetId()==2) layerId = ((tTopo->pxfDisk(id);
622 // const Surface * surf = &( (*rhit)->det()->surface() );
623 // currentState=thePropagator->propagate(lastState,*surf);
624 // if (currentState.isValid()==0) continue;
625 // updatedState=theUpdator->update(currentState,**rhit);
626 
627 // double delta = 99999;
628 // LocalPoint rhitLP = rhit->localPosition();
629 
630 // std::vector<PSimHit> assSimHits = hitAssociator.associateHit(*(*rhit)->hit());
631 // if (assSimHits.size()==0) continue;
632 // PSimHit shit;
633 // for(std::vector<PSimHit>::const_iterator m=assSimHits.begin(); m<assSimHits.end(); m++){
634 // if ((*m-rhitLP).mag()<delta) {
635 // shit=*m;
636 // delta = (*m-rhitLP).mag();
637 // }
638 // }
639 
640 // LocalVector shitLMom = shit.momentumAtEntry();
641 // GlobalVector shitGMom = surf->toGlobal(shitLMom);
642 // LocalPoint shitLPos = shit.localPosition();
643 // GlobalPoint shitGPos = surf->toGlobal(shitLPos);
644 
645 // GlobalVector tsosGMom = currentState.globalMomentum();
646 // GlobalError tsosGMEr(currentState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
647 // GlobalPoint tsosGPos = currentState.globalPosition();
648 // GlobalError tsosGPEr = currentState.cartesianError().position();
649 
650 // GlobalPoint rhitGPos = (*rhit)->globalPosition();
651 // GlobalError rhitGPEr = (*rhit)->globalPositionError();
652 
653 // double pullGPX_rs = (rhitGPos.x()-shitGPos.x())/sqrt(rhitGPEr.cxx());
654 // double pullGPY_rs = (rhitGPos.y()-shitGPos.y())/sqrt(rhitGPEr.cyy());
655 // double pullGPZ_rs = (rhitGPos.z()-shitGPos.z())/sqrt(rhitGPEr.czz());
656 // // double pullGPX_rs = (rhitGPos.x()-shitGPos.x())/*/sqrt(rhitGPEr.cxx())*/;
657 // // double pullGPY_rs = (rhitGPos.y()-shitGPos.y())/*/sqrt(rhitGPEr.cyy())*/;
658 // // double pullGPZ_rs = (rhitGPos.z()-shitGPos.z())/*/sqrt(rhitGPEr.czz())*/;
659 
660 // //plot chi2 increment
661 // MeasurementExtractor me(currentState);
662 // double chi2increment = computeChi2Increment(me,*rhit);
663 // LogTrace("TestHits") << "chi2increment=" << chi2increment << std::endl;
664 // title.str("");
665 // title << "Chi2Increment_" << subdetId << "-" << layerId;
666 // hChi2Increment[title.str()]->Fill( chi2increment );
667 // hTotChi2Increment->Fill( chi2increment );
668 // hChi2_vs_Process->Fill( chi2increment, shit.processType() );
669 // if (dynamic_cast<const SiPixelRecHit*>((*rhit)->hit()))
670 // hChi2_vs_clsize->Fill( chi2increment, ((const SiPixelRecHit*)(*rhit)->hit())->cluster()->size() );
671 // if (dynamic_cast<const SiStripRecHit2D*>((*rhit)->hit()))
672 // hChi2_vs_clsize->Fill( chi2increment, ((const SiStripRecHit2D*)(*rhit)->hit())->cluster()->amplitudes().size() );
673 
674 // LogTrace("TestHits") << "rs" << std::endl;
675 
676 // title.str("");
677 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs";
678 // hPullGP_X_rs[title.str()]->Fill( pullGPX_rs );
679 // title.str("");
680 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs";
681 // hPullGP_Y_rs[title.str()]->Fill( pullGPY_rs );
682 // title.str("");
683 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs";
684 // hPullGP_Z_rs[title.str()]->Fill( pullGPZ_rs );
685 
686 // double pullGPX_tr = (tsosGPos.x()-rhitGPos.x())/sqrt(tsosGPEr.cxx()+rhitGPEr.cxx());
687 // double pullGPY_tr = (tsosGPos.y()-rhitGPos.y())/sqrt(tsosGPEr.cyy()+rhitGPEr.cyy());
688 // double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z())/sqrt(tsosGPEr.czz()+rhitGPEr.czz());
689 // // double pullGPX_tr = (tsosGPos.x()-rhitGPos.x())/*/sqrt(tsosGPEr.cxx()+rhitGPEr.cxx())*/;
690 // // double pullGPY_tr = (tsosGPos.y()-rhitGPos.y())/*/sqrt(tsosGPEr.cyy()+rhitGPEr.cyy())*/;
691 // // double pullGPZ_tr = (tsosGPos.z()-rhitGPos.z())/*/sqrt(tsosGPEr.czz()+rhitGPEr.czz())*/;
692 
693 // LogTrace("TestHits") << "tr" << std::endl;
694 
695 // title.str("");
696 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr";
697 // hPullGP_X_tr[title.str()]->Fill( pullGPX_tr );
698 // title.str("");
699 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr";
700 // hPullGP_Y_tr[title.str()]->Fill( pullGPY_tr );
701 // title.str("");
702 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr";
703 // hPullGP_Z_tr[title.str()]->Fill( pullGPZ_tr );
704 
705 // double pullGPX_ts = (tsosGPos.x()-shitGPos.x())/sqrt(tsosGPEr.cxx());
706 // double pullGPY_ts = (tsosGPos.y()-shitGPos.y())/sqrt(tsosGPEr.cyy());
707 // double pullGPZ_ts = (tsosGPos.z()-shitGPos.z())/sqrt(tsosGPEr.czz());
708 // // double pullGPX_ts = (tsosGPos.x()-shitGPos.x())/*/sqrt(tsosGPEr.cxx())*/;
709 // // double pullGPY_ts = (tsosGPos.y()-shitGPos.y())/*/sqrt(tsosGPEr.cyy())*/;
710 // // double pullGPZ_ts = (tsosGPos.z()-shitGPos.z())/*/sqrt(tsosGPEr.czz())*/;
711 
712 // LogTrace("TestHits") << "ts1" << std::endl;
713 
714 // title.str("");
715 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts";
716 // hPullGP_X_ts[title.str()]->Fill( pullGPX_ts );
717 // title.str("");
718 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts";
719 // hPullGP_Y_ts[title.str()]->Fill( pullGPY_ts );
720 // title.str("");
721 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts";
722 // hPullGP_Z_ts[title.str()]->Fill( pullGPZ_ts );
723 
724 // double pullGMX_ts = (tsosGMom.x()-shitGMom.x())/sqrt(tsosGMEr.cxx());
725 // double pullGMY_ts = (tsosGMom.y()-shitGMom.y())/sqrt(tsosGMEr.cyy());
726 // double pullGMZ_ts = (tsosGMom.z()-shitGMom.z())/sqrt(tsosGMEr.czz());
727 // // double pullGMX_ts = (tsosGMom.x()-shitGMom.x())/*/sqrt(tsosGMEr.cxx())*/;
728 // // double pullGMY_ts = (tsosGMom.y()-shitGMom.y())/*/sqrt(tsosGMEr.cyy())*/;
729 // // double pullGMZ_ts = (tsosGMom.z()-shitGMom.z())/*/sqrt(tsosGMEr.czz())*/;
730 
731 // LogTrace("TestHits") << "ts2" << std::endl;
732 
733 // title.str("");
734 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts";
735 // hPullGM_X_ts[title.str()]->Fill( pullGMX_ts );
736 // title.str("");
737 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts";
738 // hPullGM_Y_ts[title.str()]->Fill( pullGMY_ts );
739 // title.str("");
740 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts";
741 // hPullGM_Z_ts[title.str()]->Fill( pullGMZ_ts );
742 
743 // if (dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())) {
744 // //mono
745 // LogTrace("TestHits") << "MONO HIT" << std::endl;
746 // CTTRHp tMonoHit =
747 // theBuilder->build(dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())->monoHit());
748 // if (tMonoHit==0) continue;
749 // vector<PSimHit> assMonoSimHits = hitAssociator.associateHit(*tMonoHit->hit());
750 // if (assMonoSimHits.size()==0) continue;
751 // const PSimHit sMonoHit = *(assSimHits.begin());
752 // const Surface * monoSurf = &( tMonoHit->det()->surface() );
753 // if (monoSurf==0) continue;
754 // TSOS monoState = thePropagator->propagate(lastState,*monoSurf);
755 // if (monoState.isValid()==0) continue;
756 
757 // LocalVector monoShitLMom = sMonoHit.momentumAtEntry();
758 // GlobalVector monoShitGMom = monoSurf->toGlobal(monoShitLMom);
759 // LocalPoint monoShitLPos = sMonoHit.localPosition();
760 // GlobalPoint monoShitGPos = monoSurf->toGlobal(monoShitLPos);
761 
762 // GlobalVector monoTsosGMom = monoState.globalMomentum();
763 // GlobalError monoTsosGMEr(monoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
764 // GlobalPoint monoTsosGPos = monoState.globalPosition();
765 // GlobalError monoTsosGPEr = monoState.cartesianError().position();
766 
767 // GlobalPoint monoRhitGPos = tMonoHit->globalPosition();
768 // GlobalError monoRhitGPEr = tMonoHit->globalPositionError();
769 
770 // double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x())/sqrt(monoRhitGPEr.cxx());
771 // double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y())/sqrt(monoRhitGPEr.cyy());
772 // double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z())/sqrt(monoRhitGPEr.czz());
773 // // double pullGPX_rs_mono = (monoRhitGPos.x()-monoShitGPos.x())/*/sqrt(monoRhitGPEr.cxx())*/;
774 // // double pullGPY_rs_mono = (monoRhitGPos.y()-monoShitGPos.y())/*/sqrt(monoRhitGPEr.cyy())*/;
775 // // double pullGPZ_rs_mono = (monoRhitGPos.z()-monoShitGPos.z())/*/sqrt(monoRhitGPEr.czz())*/;
776 
777 // title.str("");
778 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_mono";
779 // hPullGP_X_rs_mono[title.str()]->Fill( pullGPX_rs_mono );
780 // title.str("");
781 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_mono";
782 // hPullGP_Y_rs_mono[title.str()]->Fill( pullGPY_rs_mono );
783 // title.str("");
784 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_mono";
785 // hPullGP_Z_rs_mono[title.str()]->Fill( pullGPZ_rs_mono );
786 
787 // double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x())/sqrt(monoTsosGPEr.cxx()+monoRhitGPEr.cxx());
788 // double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y())/sqrt(monoTsosGPEr.cyy()+monoRhitGPEr.cyy());
789 // double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z())/sqrt(monoTsosGPEr.czz()+monoRhitGPEr.czz());
790 // // double pullGPX_tr_mono = (monoTsosGPos.x()-monoRhitGPos.x())/*/sqrt(monoTsosGPEr.cxx()+monoRhitGPEr.cxx())*/;
791 // // double pullGPY_tr_mono = (monoTsosGPos.y()-monoRhitGPos.y())/*/sqrt(monoTsosGPEr.cyy()+monoRhitGPEr.cyy())*/;
792 // // double pullGPZ_tr_mono = (monoTsosGPos.z()-monoRhitGPos.z())/*/sqrt(monoTsosGPEr.czz()+monoRhitGPEr.czz())*/;
793 
794 // title.str("");
795 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_mono";
796 // hPullGP_X_tr_mono[title.str()]->Fill( pullGPX_tr_mono );
797 // title.str("");
798 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_mono";
799 // hPullGP_Y_tr_mono[title.str()]->Fill( pullGPY_tr_mono );
800 // title.str("");
801 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_mono";
802 // hPullGP_Z_tr_mono[title.str()]->Fill( pullGPZ_tr_mono );
803 
804 // double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x())/sqrt(monoTsosGPEr.cxx());
805 // double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y())/sqrt(monoTsosGPEr.cyy());
806 // double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z())/sqrt(monoTsosGPEr.czz());
807 // // double pullGPX_ts_mono = (monoTsosGPos.x()-monoShitGPos.x())/*/sqrt(monoTsosGPEr.cxx())*/;
808 // // double pullGPY_ts_mono = (monoTsosGPos.y()-monoShitGPos.y())/*/sqrt(monoTsosGPEr.cyy())*/;
809 // // double pullGPZ_ts_mono = (monoTsosGPos.z()-monoShitGPos.z())/*/sqrt(monoTsosGPEr.czz())*/;
810 
811 // title.str("");
812 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_mono";
813 // hPullGP_X_ts_mono[title.str()]->Fill( pullGPX_ts_mono );
814 // title.str("");
815 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_mono";
816 // hPullGP_Y_ts_mono[title.str()]->Fill( pullGPY_ts_mono );
817 // title.str("");
818 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_mono";
819 // hPullGP_Z_ts_mono[title.str()]->Fill( pullGPZ_ts_mono );
820 
821 // double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x())/sqrt(monoTsosGMEr.cxx());
822 // double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y())/sqrt(monoTsosGMEr.cyy());
823 // double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z())/sqrt(monoTsosGMEr.czz());
824 // // double pullGMX_ts_mono = (monoTsosGMom.x()-monoShitGMom.x())/*/sqrt(monoTsosGMEr.cxx())*/;
825 // // double pullGMY_ts_mono = (monoTsosGMom.y()-monoShitGMom.y())/*/sqrt(monoTsosGMEr.cyy())*/;
826 // // double pullGMZ_ts_mono = (monoTsosGMom.z()-monoShitGMom.z())/*/sqrt(monoTsosGMEr.czz())*/;
827 
828 // title.str("");
829 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_mono";
830 // hPullGM_X_ts_mono[title.str()]->Fill( pullGMX_ts_mono );
831 // title.str("");
832 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_mono";
833 // hPullGM_Y_ts_mono[title.str()]->Fill( pullGMY_ts_mono );
834 // title.str("");
835 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_mono";
836 // hPullGM_Z_ts_mono[title.str()]->Fill( pullGMZ_ts_mono );
837 
838 // //stereo
839 // LogTrace("TestHits") << "STEREO HIT" << std::endl;
840 // CTTRHp tStereoHit =
841 // theBuilder->build(dynamic_cast<const SiStripMatchedRecHit2D*>((*rhit)->hit())->stereoHit());
842 // if (tStereoHit==0) continue;
843 // vector<PSimHit> assStereoSimHits = hitAssociator.associateHit(*tStereoHit->hit());
844 // if (assStereoSimHits.size()==0) continue;
845 // const PSimHit sStereoHit = *(assSimHits.begin());
846 // const Surface * stereoSurf = &( tStereoHit->det()->surface() );
847 // if (stereoSurf==0) continue;
848 // TSOS stereoState = thePropagator->propagate(lastState,*stereoSurf);
849 // if (stereoState.isValid()==0) continue;
850 
851 // LocalVector stereoShitLMom = sStereoHit.momentumAtEntry();
852 // GlobalVector stereoShitGMom = stereoSurf->toGlobal(stereoShitLMom);
853 // LocalPoint stereoShitLPos = sStereoHit.localPosition();
854 // GlobalPoint stereoShitGPos = stereoSurf->toGlobal(stereoShitLPos);
855 
856 // GlobalVector stereoTsosGMom = stereoState.globalMomentum();
857 // GlobalError stereoTsosGMEr(stereoState.cartesianError().matrix().Sub<AlgebraicSymMatrix33>(3,3));
858 // GlobalPoint stereoTsosGPos = stereoState.globalPosition();
859 // GlobalError stereoTsosGPEr = stereoState.cartesianError().position();
860 
861 // GlobalPoint stereoRhitGPos = tStereoHit->globalPosition();
862 // GlobalError stereoRhitGPEr = tStereoHit->globalPositionError();
863 
864 // double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x())/sqrt(stereoRhitGPEr.cxx());
865 // double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y())/sqrt(stereoRhitGPEr.cyy());
866 // double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z())/sqrt(stereoRhitGPEr.czz());
867 // // double pullGPX_rs_stereo = (stereoRhitGPos.x()-stereoShitGPos.x())/*/sqrt(stereoRhitGPEr.cxx())*/;
868 // // double pullGPY_rs_stereo = (stereoRhitGPos.y()-stereoShitGPos.y())/*/sqrt(stereoRhitGPEr.cyy())*/;
869 // // double pullGPZ_rs_stereo = (stereoRhitGPos.z()-stereoShitGPos.z())/*/sqrt(stereoRhitGPEr.czz())*/;
870 
871 // title.str("");
872 // title << "PullGP_X_" << subdetId << "-" << layerId << "_rs_stereo";
873 // hPullGP_X_rs_stereo[title.str()]->Fill( pullGPX_rs_stereo );
874 // title.str("");
875 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_rs_stereo";
876 // hPullGP_Y_rs_stereo[title.str()]->Fill( pullGPY_rs_stereo );
877 // title.str("");
878 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_rs_stereo";
879 // hPullGP_Z_rs_stereo[title.str()]->Fill( pullGPZ_rs_stereo );
880 
881 // double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x())/sqrt(stereoTsosGPEr.cxx()+stereoRhitGPEr.cxx());
882 // double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y())/sqrt(stereoTsosGPEr.cyy()+stereoRhitGPEr.cyy());
883 // double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z())/sqrt(stereoTsosGPEr.czz()+stereoRhitGPEr.czz());
884 // // double pullGPX_tr_stereo = (stereoTsosGPos.x()-stereoRhitGPos.x())/*/sqrt(stereoTsosGPEr.cxx()+stereoRhitGPEr.cxx())*/;
885 // // double pullGPY_tr_stereo = (stereoTsosGPos.y()-stereoRhitGPos.y())/*/sqrt(stereoTsosGPEr.cyy()+stereoRhitGPEr.cyy())*/;
886 // // double pullGPZ_tr_stereo = (stereoTsosGPos.z()-stereoRhitGPos.z())/*/sqrt(stereoTsosGPEr.czz()+stereoRhitGPEr.czz())*/;
887 
888 // title.str("");
889 // title << "PullGP_X_" << subdetId << "-" << layerId << "_tr_stereo";
890 // hPullGP_X_tr_stereo[title.str()]->Fill( pullGPX_tr_stereo );
891 // title.str("");
892 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_tr_stereo";
893 // hPullGP_Y_tr_stereo[title.str()]->Fill( pullGPY_tr_stereo );
894 // title.str("");
895 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_tr_stereo";
896 // hPullGP_Z_tr_stereo[title.str()]->Fill( pullGPZ_tr_stereo );
897 
898 // double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x())/sqrt(stereoTsosGPEr.cxx());
899 // double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y())/sqrt(stereoTsosGPEr.cyy());
900 // double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z())/sqrt(stereoTsosGPEr.czz());
901 // // double pullGPX_ts_stereo = (stereoTsosGPos.x()-stereoShitGPos.x())/*/sqrt(stereoTsosGPEr.cxx())*/;
902 // // double pullGPY_ts_stereo = (stereoTsosGPos.y()-stereoShitGPos.y())/*/sqrt(stereoTsosGPEr.cyy())*/;
903 // // double pullGPZ_ts_stereo = (stereoTsosGPos.z()-stereoShitGPos.z())/*/sqrt(stereoTsosGPEr.czz())*/;
904 
905 // title.str("");
906 // title << "PullGP_X_" << subdetId << "-" << layerId << "_ts_stereo";
907 // hPullGP_X_ts_stereo[title.str()]->Fill( pullGPX_ts_stereo );
908 // title.str("");
909 // title << "PullGP_Y_" << subdetId << "-" << layerId << "_ts_stereo";
910 // hPullGP_Y_ts_stereo[title.str()]->Fill( pullGPY_ts_stereo );
911 // title.str("");
912 // title << "PullGP_Z_" << subdetId << "-" << layerId << "_ts_stereo";
913 // hPullGP_Z_ts_stereo[title.str()]->Fill( pullGPZ_ts_stereo );
914 
915 // double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x())/sqrt(stereoTsosGMEr.cxx());
916 // double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y())/sqrt(stereoTsosGMEr.cyy());
917 // double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z())/sqrt(stereoTsosGMEr.czz());
918 // // double pullGMX_ts_stereo = (stereoTsosGMom.x()-stereoShitGMom.x())/*/sqrt(stereoTsosGMEr.cxx())*/;
919 // // double pullGMY_ts_stereo = (stereoTsosGMom.y()-stereoShitGMom.y())/*/sqrt(stereoTsosGMEr.cyy())*/;
920 // // double pullGMZ_ts_stereo = (stereoTsosGMom.z()-stereoShitGMom.z())/*/sqrt(stereoTsosGMEr.czz())*/;
921 
922 // title.str("");
923 // title << "PullGM_X_" << subdetId << "-" << layerId << "_ts_stereo";
924 // hPullGM_X_ts_stereo[title.str()]->Fill( pullGMX_ts_stereo );
925 // title.str("");
926 // title << "PullGM_Y_" << subdetId << "-" << layerId << "_ts_stereo";
927 // hPullGM_Y_ts_stereo[title.str()]->Fill( pullGMY_ts_stereo );
928 // title.str("");
929 // title << "PullGM_Z_" << subdetId << "-" << layerId << "_ts_stereo";
930 // hPullGM_Z_ts_stereo[title.str()]->Fill( pullGMZ_ts_stereo );
931 // }
932 // }
933 // }
934 // LogTrace("TestHits") << "end of event" << std::endl;
935 // }
936 
938  //file->Write();
939  TDirectory * chi2i = file->mkdir("Chi2_Increment");
940 
941  TDirectory * gp_ts = file->mkdir("GP_TSOS-SimHit");
942  TDirectory * gm_ts = file->mkdir("GM_TSOS-SimHit");
943  TDirectory * gp_tr = file->mkdir("GP_TSOS-RecHit");
944  TDirectory * gp_rs = file->mkdir("GP_RecHit-SimHit");
945 
946  TDirectory * gp_tsx = gp_ts->mkdir("X");
947  TDirectory * gp_tsy = gp_ts->mkdir("Y");
948  TDirectory * gp_tsz = gp_ts->mkdir("Z");
949  TDirectory * gm_tsx = gm_ts->mkdir("X");
950  TDirectory * gm_tsy = gm_ts->mkdir("Y");
951  TDirectory * gm_tsz = gm_ts->mkdir("Z");
952  TDirectory * gp_trx = gp_tr->mkdir("X");
953  TDirectory * gp_try = gp_tr->mkdir("Y");
954  TDirectory * gp_trz = gp_tr->mkdir("Z");
955  TDirectory * gp_rsx = gp_rs->mkdir("X");
956  TDirectory * gp_rsy = gp_rs->mkdir("Y");
957  TDirectory * gp_rsz = gp_rs->mkdir("Z");
958 
959  TDirectory * gp_tsx_mono = gp_ts->mkdir("MONOX");
960  TDirectory * gp_tsy_mono = gp_ts->mkdir("MONOY");
961  TDirectory * gp_tsz_mono = gp_ts->mkdir("MONOZ");
962  TDirectory * gm_tsx_mono = gm_ts->mkdir("MONOX");
963  TDirectory * gm_tsy_mono = gm_ts->mkdir("MONOY");
964  TDirectory * gm_tsz_mono = gm_ts->mkdir("MONOZ");
965  TDirectory * gp_trx_mono = gp_tr->mkdir("MONOX");
966  TDirectory * gp_try_mono = gp_tr->mkdir("MONOY");
967  TDirectory * gp_trz_mono = gp_tr->mkdir("MONOZ");
968  TDirectory * gp_rsx_mono = gp_rs->mkdir("MONOX");
969  TDirectory * gp_rsy_mono = gp_rs->mkdir("MONOY");
970  TDirectory * gp_rsz_mono = gp_rs->mkdir("MONOZ");
971 
972  TDirectory * gp_tsx_stereo = gp_ts->mkdir("STEREOX");
973  TDirectory * gp_tsy_stereo = gp_ts->mkdir("STEREOY");
974  TDirectory * gp_tsz_stereo = gp_ts->mkdir("STEREOZ");
975  TDirectory * gm_tsx_stereo = gm_ts->mkdir("STEREOX");
976  TDirectory * gm_tsy_stereo = gm_ts->mkdir("STEREOY");
977  TDirectory * gm_tsz_stereo = gm_ts->mkdir("STEREOZ");
978  TDirectory * gp_trx_stereo = gp_tr->mkdir("STEREOX");
979  TDirectory * gp_try_stereo = gp_tr->mkdir("STEREOY");
980  TDirectory * gp_trz_stereo = gp_tr->mkdir("STEREOZ");
981  TDirectory * gp_rsx_stereo = gp_rs->mkdir("STEREOX");
982  TDirectory * gp_rsy_stereo = gp_rs->mkdir("STEREOY");
983  TDirectory * gp_rsz_stereo = gp_rs->mkdir("STEREOZ");
984 
985  chi2i->cd();
986  hTotChi2Increment->Write();
987  hProcess_vs_Chi2->Write();
988  hClsize_vs_Chi2->Write();
989  for (int i=0; i!=6; i++)
990  for (int j=0; j!=9; j++){
991  if (i==0 && j>2) break;
992  if (i==1 && j>1) break;
993  if (i==2 && j>3) break;
994  if (i==3 && j>2) break;
995  if (i==4 && j>5) break;
996  if (i==5 && j>8) break;
997  chi2i->cd();
998  title.str("");
999  title << "Chi2Increment_" << i+1 << "-" << j+1;
1000  hChi2Increment[title.str()]->Write();
1001 
1002  gp_ts->cd();
1003  gp_tsx->cd();
1004  title.str("");
1005  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts";
1006  hPullGP_X_ts[title.str()]->Write();
1007  gp_tsy->cd();
1008  title.str("");
1009  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts";
1010  hPullGP_Y_ts[title.str()]->Write();
1011  gp_tsz->cd();
1012  title.str("");
1013  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts";
1014  hPullGP_Z_ts[title.str()]->Write();
1015 
1016  gm_ts->cd();
1017  gm_tsx->cd();
1018  title.str("");
1019  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts";
1020  hPullGM_X_ts[title.str()]->Write();
1021  gm_tsy->cd();
1022  title.str("");
1023  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts";
1024  hPullGM_Y_ts[title.str()]->Write();
1025  gm_tsz->cd();
1026  title.str("");
1027  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts";
1028  hPullGM_Z_ts[title.str()]->Write();
1029 
1030  gp_tr->cd();
1031  gp_trx->cd();
1032  title.str("");
1033  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr";
1034  hPullGP_X_tr[title.str()]->Write();
1035  gp_try->cd();
1036  title.str("");
1037  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr";
1038  hPullGP_Y_tr[title.str()]->Write();
1039  gp_trz->cd();
1040  title.str("");
1041  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr";
1042  hPullGP_Z_tr[title.str()]->Write();
1043 
1044  gp_rs->cd();
1045  gp_rsx->cd();
1046  title.str("");
1047  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs";
1048  hPullGP_X_rs[title.str()]->Write();
1049  gp_rsy->cd();
1050  title.str("");
1051  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs";
1052  hPullGP_Y_rs[title.str()]->Write();
1053  gp_rsz->cd();
1054  title.str("");
1055  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs";
1056  hPullGP_Z_rs[title.str()]->Write();
1057 
1058  if ( ((i==2||i==4)&&(j==0||j==1)) || (i==3||i==5) ){
1059  //mono
1060  gp_ts->cd();
1061  gp_tsx_mono->cd();
1062  title.str("");
1063  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_mono";
1064  hPullGP_X_ts_mono[title.str()]->Write();
1065  gp_tsy_mono->cd();
1066  title.str("");
1067  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_mono";
1068  hPullGP_Y_ts_mono[title.str()]->Write();
1069  gp_tsz_mono->cd();
1070  title.str("");
1071  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_mono";
1072  hPullGP_Z_ts_mono[title.str()]->Write();
1073 
1074  gm_ts->cd();
1075  gm_tsx_mono->cd();
1076  title.str("");
1077  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_mono";
1078  hPullGM_X_ts_mono[title.str()]->Write();
1079  gm_tsy_mono->cd();
1080  title.str("");
1081  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_mono";
1082  hPullGM_Y_ts_mono[title.str()]->Write();
1083  gm_tsz_mono->cd();
1084  title.str("");
1085  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_mono";
1086  hPullGM_Z_ts_mono[title.str()]->Write();
1087 
1088  gp_tr->cd();
1089  gp_trx_mono->cd();
1090  title.str("");
1091  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_mono";
1092  hPullGP_X_tr_mono[title.str()]->Write();
1093  gp_try_mono->cd();
1094  title.str("");
1095  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_mono";
1096  hPullGP_Y_tr_mono[title.str()]->Write();
1097  gp_trz_mono->cd();
1098  title.str("");
1099  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_mono";
1100  hPullGP_Z_tr_mono[title.str()]->Write();
1101 
1102  gp_rs->cd();
1103  gp_rsx_mono->cd();
1104  title.str("");
1105  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_mono";
1106  hPullGP_X_rs_mono[title.str()]->Write();
1107  gp_rsy_mono->cd();
1108  title.str("");
1109  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_mono";
1110  hPullGP_Y_rs_mono[title.str()]->Write();
1111  gp_rsz_mono->cd();
1112  title.str("");
1113  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_mono";
1114  hPullGP_Z_rs_mono[title.str()]->Write();
1115 
1116  //stereo
1117  gp_ts->cd();
1118  gp_tsx_stereo->cd();
1119  title.str("");
1120  title << "PullGP_X_" << i+1 << "-" << j+1 << "_ts_stereo";
1121  hPullGP_X_ts_stereo[title.str()]->Write();
1122  gp_tsy_stereo->cd();
1123  title.str("");
1124  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
1125  hPullGP_Y_ts_stereo[title.str()]->Write();
1126  gp_tsz_stereo->cd();
1127  title.str("");
1128  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
1129  hPullGP_Z_ts_stereo[title.str()]->Write();
1130 
1131  gm_ts->cd();
1132  gm_tsx_stereo->cd();
1133  title.str("");
1134  title << "PullGM_X_" << i+1 << "-" << j+1 << "_ts_stereo";
1135  hPullGM_X_ts_stereo[title.str()]->Write();
1136  gm_tsy_stereo->cd();
1137  title.str("");
1138  title << "PullGM_Y_" << i+1 << "-" << j+1 << "_ts_stereo";
1139  hPullGM_Y_ts_stereo[title.str()]->Write();
1140  gm_tsz_stereo->cd();
1141  title.str("");
1142  title << "PullGM_Z_" << i+1 << "-" << j+1 << "_ts_stereo";
1143  hPullGM_Z_ts_stereo[title.str()]->Write();
1144 
1145  gp_tr->cd();
1146  gp_trx_stereo->cd();
1147  title.str("");
1148  title << "PullGP_X_" << i+1 << "-" << j+1 << "_tr_stereo";
1149  hPullGP_X_tr_stereo[title.str()]->Write();
1150  gp_try_stereo->cd();
1151  title.str("");
1152  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_tr_stereo";
1153  hPullGP_Y_tr_stereo[title.str()]->Write();
1154  gp_trz_stereo->cd();
1155  title.str("");
1156  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_tr_stereo";
1157  hPullGP_Z_tr_stereo[title.str()]->Write();
1158 
1159  gp_rs->cd();
1160  gp_rsx_stereo->cd();
1161  title.str("");
1162  title << "PullGP_X_" << i+1 << "-" << j+1 << "_rs_stereo";
1163  hPullGP_X_rs_stereo[title.str()]->Write();
1164  gp_rsy_stereo->cd();
1165  title.str("");
1166  title << "PullGP_Y_" << i+1 << "-" << j+1 << "_rs_stereo";
1167  hPullGP_Y_rs_stereo[title.str()]->Write();
1168  gp_rsz_stereo->cd();
1169  title.str("");
1170  title << "PullGP_Z_" << i+1 << "-" << j+1 << "_rs_stereo";
1171  hPullGP_Z_rs_stereo[title.str()]->Write();
1172  }
1173  }
1174 
1175  file->Close();
1176 }
1177 
1178 //needed by to do the residual for matched hits
1179 //taken from SiStripTrackingRecHitsValid.cc
1180 std::pair<LocalPoint,LocalVector>
1181 TestHits::projectHit( const PSimHit& hit, const StripGeomDetUnit* stripDet, const BoundPlane& plane)
1182 {
1183  const StripTopology& topol = stripDet->specificTopology();
1184  GlobalPoint globalpos= stripDet->surface().toGlobal(hit.localPosition());
1185  LocalPoint localHit = plane.toLocal(globalpos);
1186  //track direction
1187  LocalVector locdir=hit.localDirection();
1188  //rotate track in new frame
1189 
1190  GlobalVector globaldir= stripDet->surface().toGlobal(locdir);
1191  LocalVector dir=plane.toLocal(globaldir);
1192  float scale = -localHit.z() / dir.z();
1193 
1194  LocalPoint projectedPos = localHit + scale*dir;
1195 
1196  float selfAngle = topol.stripAngle( topol.strip( hit.localPosition()));
1197 
1198  LocalVector stripDir( sin(selfAngle), cos(selfAngle), 0); // vector along strip in hit frame
1199 
1200  LocalVector localStripDir( plane.toLocal(stripDet->surface().toGlobal( stripDir)));
1201 
1202  return std::pair<LocalPoint,LocalVector>( projectedPos, localStripDir);
1203 }
1204 
1207 
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:106
T getParameter(std::string const &) const
std::pair< LocalPoint, LocalVector > projectHit(const PSimHit &, const StripGeomDetUnit *, const BoundPlane &)
Definition: TestHits.cc:1181
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
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:55
std::map< std::string, TH1F * > hPullGM_X_ts_stereo
Definition: TestHits.h:112
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
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
virtual float strip(const LocalPoint &) const =0
std::vector< ConstRecHitPointer > RecHitContainer
void beginRun(edm::Run const &run, const edm::EventSetup &) override
Definition: TestHits.cc:37
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
TrackerHitAssociator::Config trackerHitAssociatorConfig_
Definition: TestHits.h:62
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:42
std::map< std::string, TH1F * > hPullGP_Y_rs
Definition: TestHits.h:87
std::map< std::string, TH1F * > hPullGP_X_tr_stereo
Definition: TestHits.h:118
std::map< std::string, TH1F * > hPullGP_Z_rs_stereo
Definition: TestHits.h:117
PTrajectoryStateOnDet const & trajectoryStateOnDet() const
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
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:52
virtual float stripAngle(float strip) const =0
std::string propagatorName
Definition: TestHits.h:66
std::shared_ptr< TrackingRecHit const > ConstRecHitPointer
T sqrt(T t)
Definition: SSEVec.h:18
std::map< std::string, TH1F * > hPullGP_X_rs_stereo
Definition: TestHits.h:115
T z() const
Definition: PV3DBase.h:64
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
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:480
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
virtual RecHitPointer build(const TrackingRecHit *p) const =0
build a tracking rechit from an existing rechit
const AlgebraicSymMatrix66 & matrix() const
edm::ESHandle< TrackerGeometry > theG
Definition: TestHits.h:71
LocalVector localDirection() const
Obsolete. Same as momentumAtEntry().unit(), for backward compatibility.
Definition: PSimHit.h:58
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() override
Definition: TestHits.cc:35
TH2F * hProcess_vs_Chi2
Definition: TestHits.h:94
const GlobalError position() const
Position error submatrix.
TransientTrackingRecHit::ConstRecHitPointer CTTRHp
Definition: TestHits.cc:20
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
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:53
unsigned short processType() const
Definition: PSimHit.h:120
unsigned int layer(const DetId &id) const
std::map< std::string, TH1F * > hPullGM_Y_ts_stereo
Definition: TestHits.h:113
edm::ESHandle< MagneticField > theMF
Definition: TestHits.h:72
std::map< std::string, TH1F * > hPullGP_X_tr_mono
Definition: TestHits.h:105
TH2F * hClsize_vs_Chi2
Definition: TestHits.h:94
HLT enums.
TFile * file
Definition: TestHits.h:78
GlobalVector globalMomentum() const
std::map< std::string, TH1F * > hPullGM_X_ts
Definition: TestHits.h:83
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: TestHits.cc:188
T get() const
Definition: EventSetup.h:71
std::map< std::string, TH1F * > hPullGP_X_ts
Definition: TestHits.h:80
const TrackerGeomDet * idToDet(DetId) const override
std::vector< PSimHit > associateHit(const TrackingRecHit &thit) const
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
T const * product() const
Definition: ESHandle.h:86
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:45
std::stringstream title
Definition: TestHits.h:79
Our base class.
Definition: SiPixelRecHit.h:23
double maxeta
Definition: TestHits.h:64
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:39
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
void endJob() override
Definition: TestHits.cc:937