141 if (
DEBUG)
cout <<
"beginning analyze from HitEff" << endl;
144 using namespace reco;
147 int run_nr = e.
id().
run();
158 e.
getByLabel(TkTrajCKF,TrajectoryCollectionCKF);
173 es.get<
TkStripCPERecord>().
get(
"StripCPEfromTrackAngle", parameterestimator);
197 e.
getByLabel(
"MeasurementTrackerEvent", measurementTrackerEvent);
204 const Propagator* thePropagator = prop.product();
239 if (
DEBUG)
cout <<
"number ckf tracks found = " << tracksCKF->size() << endl;
241 if (tracksCKF->size() > 0 && tracksCKF->size()<100) {
242 if (
DEBUG)
cout <<
"starting checking good event with < 100 tracks" << endl;
264 if(e.
getByLabel(
"muonsWitht0Correction",muH)){
266 if(muonsT0.size()!=0) {
272 bool hasCaloEnergyInfo = muonsT0[0].isEnergyValid();
273 if (hasCaloEnergyInfo)
timeECAL = muonsT0[0].calEnergy().ecal_time;
281 for (vector<Trajectory>::const_iterator itraj = TrajectoryCollectionCKF.product()->begin();
282 itraj != TrajectoryCollectionCKF.product()->end();
286 nHits = itraj->foundHits();
288 chi2 = (itraj->chiSquared()/itraj->ndof());
289 pT =
sqrt( ( itraj->lastMeasurement().updatedState().globalMomentum().x() *
290 itraj->lastMeasurement().updatedState().globalMomentum().x()) +
291 ( itraj->lastMeasurement().updatedState().globalMomentum().y() *
292 itraj->lastMeasurement().updatedState().globalMomentum().y()) );
293 p = itraj->lastMeasurement().updatedState().globalMomentum().mag();
298 std::vector<TrajectoryMeasurement> TMeas=itraj->measurements();
299 vector<TrajectoryMeasurement>::iterator itm;
304 double angleX = -999.;
305 double angleY = -999.;
306 double xglob,yglob,zglob;
308 for (itm=TMeas.begin();itm!=TMeas.end();itm++){
310 theInHit = (*itm).recHit();
312 if(
DEBUG)
cout <<
"theInHit is valid = " << theInHit->isValid() << endl;
314 unsigned int iidd = theInHit->geographicalId().rawId();
316 unsigned int TKlayers =
checkLayer(iidd, tTopo);
317 if (
DEBUG)
cout <<
"TKlayer from trajectory: " << TKlayers <<
" from module = " << iidd <<
" matched/stereo/rphi = " << ((iidd & 0x3)==0) <<
"/" << ((iidd & 0x3)==1) <<
"/" << ((iidd & 0x3)==2) << endl;
320 if ( TKlayers == 10 || TKlayers == 22 ) {
321 if (
DEBUG)
cout <<
"skipping original TM for TOB 6 or TEC 9" << endl;
326 std::vector<TrajectoryAtInvalidHit> TMs;
344 if (
DEBUG)
cout <<
" found a hit with a missing partner" << endl;
356 bool isValid = theInHit->isValid();
357 bool isLast = (itm==(TMeas.end()-1));
358 bool isLastTOB5 =
true;
360 if (
checkLayer((++itm)->recHit()->geographicalId().rawId(), tTopo) == 9 ) isLastTOB5 =
false;
361 else isLastTOB5 =
true;
365 if ( TKlayers==9 && isValid && isLastTOB5 ) {
368 std::vector< BarrelDetLayer*> barrelTOBLayers = measurementTrackerHandle->geometricSearchTracker()->tobLayers() ;
369 const DetLayer* tob6 = barrelTOBLayers[barrelTOBLayers.size()-1];
373 vector<TrajectoryMeasurement>
tmp = theLayerMeasurements->
measurements(*tob6, tsosTOB5, *thePropagator, *estimator);
376 if (
DEBUG)
cout <<
"size of TM from propagation = " << tmp.size() << endl;
383 tob6Hit = tob6TM.recHit();
385 if (tob6Hit->geographicalId().rawId()!=0) {
386 if (
DEBUG)
cout <<
"tob6 hit actually being added to TM vector" << endl;
392 bool isLastTEC8 =
true;
394 if (
checkLayer((++itm)->recHit()->geographicalId().rawId(), tTopo) == 21 ) isLastTEC8 =
false;
395 else isLastTEC8 =
true;
399 if ( TKlayers==21 && isValid && isLastTEC8 ) {
401 std::vector< ForwardDetLayer*> posTecLayers = measurementTrackerHandle->geometricSearchTracker()->posTecLayers() ;
402 const DetLayer* tec9pos = posTecLayers[posTecLayers.size()-1];
403 std::vector< ForwardDetLayer*> negTecLayers = measurementTrackerHandle->geometricSearchTracker()->negTecLayers() ;
404 const DetLayer* tec9neg = negTecLayers[negTecLayers.size()-1];
414 vector<TrajectoryMeasurement>
tmp;
415 if ( tTopo->
tecSide(iidd) == 1 ) {
416 tmp = theLayerMeasurements->
measurements(*tec9neg, tsosTEC9, *thePropagator, *estimator);
419 if ( tTopo->
tecSide(iidd) == 2 ) {
420 tmp = theLayerMeasurements->
measurements(*tec9pos, tsosTEC9, *thePropagator, *estimator);
430 tec9Hit = tec9TM.recHit();
432 unsigned int tec9id = tec9Hit->geographicalId().rawId();
433 if (
DEBUG)
cout <<
"tec9id = " << tec9id <<
" is Double sided = " <<
isDoubleSided(tec9id, tTopo) <<
" and 0x3 = " << (tec9id & 0x3) << endl;
435 if (tec9Hit->geographicalId().rawId()!=0) {
436 if (
DEBUG)
cout <<
"tec9 hit actually being added to TM vector" << endl;
452 for(std::vector<TrajectoryAtInvalidHit>::const_iterator TM=TMs.begin();TM!=TMs.end();++TM) {
455 iidd = TM->monodet_id();
456 if (
DEBUG)
cout <<
"setting iidd = " << iidd <<
" before checking efficiency and ";
461 xErr = TM->localErrorX();
462 yErr = TM->localErrorY();
464 angleX = atan( TM->localDxDz() );
465 angleY = atan( TM->localDyDz() );
467 xglob = TM->globalX();
468 yglob = TM->globalY();
469 zglob = TM->globalZ();
479 if (
DEBUG)
cout <<
"Looking at layer under study" << endl;
488 if (
input.size() > 0 ) {
489 if (
DEBUG)
cout <<
"Checking clusters with size = " <<
input.size() << endl;
491 std::vector< std::vector<float> > VCluster_info;
495 unsigned int ClusterId = DSViter->id();
496 if (ClusterId == iidd) {
497 if (
DEBUG)
cout <<
"found (ClusterId == iidd) with ClusterId = " << ClusterId <<
" and iidd = " << iidd << endl;
498 DetId ClusterDetId(ClusterId);
504 float res = (parameters.first.x() - xloc);
516 std::vector< float > cluster_info;
517 cluster_info.push_back(res);
518 cluster_info.push_back(sigma);
519 cluster_info.push_back(parameters.first.x());
520 cluster_info.push_back(
sqrt(parameters.second.xx()));
521 cluster_info.push_back(parameters.first.y());
522 cluster_info.push_back(
sqrt(parameters.second.yy()));
525 VCluster_info.push_back(cluster_info);
527 if (
DEBUG)
cout <<
"Have ID match. residual = " << VCluster_info.back()[0] <<
" res sigma = " << VCluster_info.back()[1] << endl;
528 if (
DEBUG)
cout <<
"trajectory measurement compatability estimate = " << (*itm).estimate() << endl;
529 if (
DEBUG)
cout <<
"hit position = " << parameters.first.x() <<
" hit error = " <<
sqrt(parameters.second.xx()) <<
" trajectory position = " << xloc <<
" traj error = " << xErr << endl;
533 float FinalResSig = 1000.0;
534 float FinalCluster[7]= {1000.0, 1000.0, 0.0, 0.0, 0.0, 0.0, 0.0};
536 if (
DEBUG)
cout <<
"found clusters > 0" << endl;
539 vector< vector<float> >::iterator
ires;
540 for (ires=VCluster_info.begin(); ires!=VCluster_info.end(); ires++){
541 if (
abs((*ires)[1]) <
abs(FinalResSig)) {
542 FinalResSig = (*ires)[1];
543 for (
unsigned int i = 0;
i<ires->size();
i++) {
544 if (
DEBUG)
cout <<
"filling final cluster. i = " <<
i <<
" before fill FinalCluster[i]=" << FinalCluster[
i] <<
" and (*ires)[i] =" << (*ires)[
i] << endl;
545 FinalCluster[
i] = (*ires)[
i];
546 if (
DEBUG)
cout <<
"filling final cluster. i = " <<
i <<
" after fill FinalCluster[i]=" << FinalCluster[
i] <<
" and (*ires)[i] =" << (*ires)[
i] << endl;
549 if (
DEBUG)
cout <<
"iresidual = " << (*ires)[0] <<
" isigma = " << (*ires)[1] <<
" and FinalRes = " << FinalCluster[0] << endl;
553 FinalResSig = VCluster_info.at(0)[1];
554 for (
unsigned int i = 0;
i<VCluster_info.at(0).size();
i++) {
555 FinalCluster[
i] = VCluster_info.at(0)[
i];
559 VCluster_info.clear();
562 if (
DEBUG)
cout <<
"Final residual in X = " << FinalCluster[0] <<
"+-" << (FinalCluster[0]/FinalResSig) << endl;
563 if (
DEBUG)
cout <<
"Checking location of trajectory: abs(yloc) = " <<
abs(yloc) <<
" abs(xloc) = " <<
abs(xloc) << endl;
564 if (
DEBUG)
cout <<
"Checking location of cluster hit: yloc = " << FinalCluster[4] <<
"+-" << FinalCluster[5] <<
" xloc = " << FinalCluster[2] <<
"+-" << FinalCluster[3] << endl;
565 if (
DEBUG)
cout <<
"Final cluster signal to noise = " << FinalCluster[6] << endl;
567 float exclusionWidth = 0.4;
568 float TOBexclusion = 0.0;
569 float TECexRing5 = -0.89;
570 float TECexRing6 = -0.56;
571 float TECexRing7 = 0.60;
573 int subdetector = ((iidd>>25) & 0x7);
574 int ringnumber = ((iidd>>5) & 0x7);
577 if((TKlayers >= 5 && TKlayers < 11)||((subdetector == 6)&&( (ringnumber >= 5)&&(ringnumber <=7) ))) {
579 float highzone = 0.0;
581 float higherr = yloc + 5.0*yErr;
582 float lowerr = yloc - 5.0*yErr;
583 if(TKlayers >= 5 && TKlayers < 11) {
585 highzone = TOBexclusion + exclusionWidth;
586 lowzone = TOBexclusion - exclusionWidth;
587 }
else if (ringnumber == 5) {
589 highzone = TECexRing5 + exclusionWidth;
590 lowzone = TECexRing5 - exclusionWidth;
591 }
else if (ringnumber == 6) {
593 highzone = TECexRing6 + exclusionWidth;
594 lowzone = TECexRing6 - exclusionWidth;
595 }
else if (ringnumber == 7) {
597 highzone = TECexRing7 + exclusionWidth;
598 lowzone = TECexRing7 - exclusionWidth;
617 if ( SiStripQuality_->getBadApvs(iidd)!=0 ) {
619 if(
DEBUG)
cout <<
"strip is bad from SiStripQuality" << endl;
622 if(
DEBUG)
cout <<
"strip is good from SiStripQuality" << endl;
626 for (
unsigned int ii=0;
ii< fedErrorIds->size();
ii++) {
627 if (iidd == (*fedErrorIds)[
ii].rawId() )
637 ResX = FinalCluster[0];
639 if (FinalResSig != FinalCluster[1])
if (
DEBUG)
cout <<
"Problem with best cluster selection because FinalResSig = " << FinalResSig <<
" and FinalCluster[1] = " << FinalCluster[1] << endl;
646 if (
DEBUG)
cout <<
"before check good" << endl;
648 if ( FinalResSig < 999.0) {
650 if (
DEBUG)
cout <<
"hit being counted as good " << FinalCluster[0] <<
" FinalRecHit " <<
651 iidd <<
" TKlayers " << TKlayers <<
" xloc " << xloc <<
" yloc " << yloc <<
" module " << iidd <<
652 " matched/stereo/rphi = " << ((iidd & 0x3)==0) <<
"/" << ((iidd & 0x3)==1) <<
"/" << ((iidd & 0x3)==2) << endl;
657 if (
DEBUG)
cout <<
"hit being counted as bad ######### Invalid RPhi FinalResX " << FinalCluster[0] <<
" FinalRecHit " <<
658 iidd <<
" TKlayers " << TKlayers <<
" xloc " << xloc <<
" yloc " << yloc <<
" module " << iidd <<
659 " matched/stereo/rphi = " << ((iidd & 0x3)==0) <<
"/" << ((iidd & 0x3)==1) <<
"/" << ((iidd & 0x3)==2) << endl;
663 if (
DEBUG)
cout <<
" RPhi Error " <<
sqrt(xErr*xErr + yErr*yErr) <<
" ErrorX " << xErr <<
" yErr " << yErr << endl;
664 }
if (
DEBUG)
cout <<
"after good location check" << endl;
665 }
if (
DEBUG)
cout <<
"after list of clusters" << endl;
666 }
if (
DEBUG)
cout <<
"After layers=TKLayers if" << endl;
667 }
if (
DEBUG)
cout <<
"After looping over TrajAtValidHit list" << endl;
668 }
if (
DEBUG)
cout <<
"end TMeasurement loop" << endl;
669 }
if (
DEBUG)
cout <<
"end of trajectories loop" << endl;
T getParameter(std::string const &) const
EventNumber_t event() const
std::vector< TrajectoryMeasurement > measurements(const DetLayer &layer, const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
bool check2DPartner(unsigned int iidd, const std::vector< TrajectoryMeasurement > &traj)
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
std::vector< Track > TrackCollection
collection of Tracks
int bunchCrossing() const
data_type const * const_iterator
std::pair< LocalPoint, LocalError > LocalValues
std::vector< Muon > MuonCollection
collection of Muon objects
static std::string const input
float signalOverNoise() const
bool isDoubleSided(unsigned int iidd, const TrackerTopology *tTopo) const
int nDof
number of muon stations used
Abs< T >::type abs(const T &t)
unsigned int trajHitValid
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
double checkConsistency(const StripClusterParameterEstimator::LocalValues ¶meters, double xx, double xerr)
unsigned int checkLayer(unsigned int iidd, const TrackerTopology *tTopo)
T const * product() const
T const * product() const
unsigned int SiStripQualBad
std::vector< std::vector< double > > tmp
tuple AnalyticalPropagator
unsigned int tecSide(const DetId &id) const