51 #ifdef COUNT_ElectronSeeds
56 ~Count() {
std::cout <<
"ElectronSeeds res " <<
s<<
'/'<<
n << std::endl;}
67 : dynamicphiroad_(pset.getParameter<bool>(
"dynamicPhiRoad")),
68 fromTrackerSeeds_(pset.getParameter<bool>(
"fromTrackerSeeds")),
69 useRecoVertex_(
false),
70 verticesTag_(ts.token_vtx),
71 beamSpotTag_(ts.token_bs),
72 lowPtThreshold_(pset.getParameter<double>(
"LowPtThreshold")),
73 highPtThreshold_(pset.getParameter<double>(
"HighPtThreshold")),
74 nSigmasDeltaZ1_(pset.getParameter<double>(
"nSigmasDeltaZ1")),
75 deltaZ1WithVertex_(0.5),
76 sizeWindowENeg_(pset.getParameter<double>(
"SizeWindowENeg")),
77 deltaPhi1Low_(pset.getParameter<double>(
"DeltaPhi1Low")),
78 deltaPhi1High_(pset.getParameter<double>(
"DeltaPhi1High")),
79 deltaPhi1Coef1_(0.), deltaPhi1Coef2_(0.),
80 myMatchEle(0), myMatchPos(0),
82 theMeasurementTracker(0),
83 theMeasurementTrackerEventTag(ts.token_measTrkEvt),
85 cacheIDMagField_(0),cacheIDNavSchool_(0),cacheIDCkfComp_(0),cacheIDTrkGeom_(0)
114 phiMin2B_, phiMax2B_, phiMin2F_, phiMax2F_,
126 phiMin2B_, phiMax2B_, phiMin2F_, phiMax2F_,
210 for ( i1=r1.first, i2=
r2.first, nHits=0 ; i1!=r1.second ; ++i1, ++i2, ++nHits )
212 if ( !i1->isValid() || !i2->isValid() )
return false ;
213 if ( i1->geographicalId()!=i2->geographicalId() )
return false ;
214 if ( ! ( i1->localPosition()==i2->localPosition() ) )
return false ;
225 theInitialSeedColl = seeds ;
259 e.
getByToken(theMeasurementTrackerEventTag, data);
260 myMatchEle->setEvent(*data);
261 myMatchPos->setEvent(*data);
271 if (useRecoVertex_) e.
getByToken(verticesTag_,theVertices);
273 if (!fromTrackerSeeds_)
274 {
throw cms::Exception(
"NotSupported") <<
"Here in ElectronSeedGenerator " << __FILE__ <<
":" << __LINE__ <<
" I would like to do theMeasurementTracker->update(e); but that no longer makes sense.\n";
277 for (
unsigned int i=0;
i<sclRefs.
size();++
i) {
281 LogDebug (
"ElectronSeedGenerator") <<
"new cluster, calling seedsFromThisCluster";
282 seedsFromThisCluster(sclRefs[
i],hoe1s[i],hoe2s[i],out,tTopo);
285 LogDebug (
"ElectronSeedGenerator") <<
": For event "<<e.
id();
286 LogDebug (
"ElectronSeedGenerator") <<
"Nr of superclusters after filter: "<<sclRefs.
size()
287 <<
", no. of ElectronSeeds found = " << out.size();
289 #ifdef COUNT_ElectronSeeds
290 stcount.s+=sclRefs.
size();
291 stcount.n+=out.size();
298 float hoe1,
float hoe2,
301 float clusterEnergy = seedCluster->energy() ;
303 ( seedCluster->position().x(),
304 seedCluster->position().y(),
305 seedCluster->position().z() ) ;
313 float clusterEnergyT = clusterEnergy / cosh(
EleRelPoint(clusterPos,theBeamSpot->position()).
eta() ) ;
316 if (clusterEnergyT < lowPtThreshold_)
317 { deltaPhi1= deltaPhi1Low_ ; }
318 else if (clusterEnergyT > highPtThreshold_)
319 { deltaPhi1= deltaPhi1High_ ; }
321 { deltaPhi1 = deltaPhi1Coef1_ + deltaPhi1Coef2_/clusterEnergyT ; }
323 float ephimin1 = -deltaPhi1*sizeWindowENeg_ ;
324 float ephimax1 = deltaPhi1*(1.-sizeWindowENeg_);
325 float pphimin1 = -deltaPhi1*(1.-sizeWindowENeg_);
326 float pphimax1 = deltaPhi1*sizeWindowENeg_;
328 float phimin2B = -deltaPhi2B_/2. ;
329 float phimax2B = deltaPhi2B_/2. ;
330 float phimin2F = -deltaPhi2F_/2. ;
331 float phimax2F = deltaPhi2F_/2. ;
334 myMatchEle->set1stLayer(ephimin1,ephimax1);
335 myMatchPos->set1stLayer(pphimin1,pphimax1);
336 myMatchEle->set2ndLayer(phimin2B,phimax2B, phimin2F,phimax2F);
337 myMatchPos->set2ndLayer(phimin2B,phimax2B, phimin2F,phimax2F);
344 double sigmaZ=theBeamSpot->sigmaZ();
345 double sigmaZ0Error=theBeamSpot->sigmaZ0Error();
346 double sq=
sqrt(sigmaZ*sigmaZ+sigmaZ0Error*sigmaZ0Error);
347 double myZmin1=theBeamSpot->position().z()-nSigmasDeltaZ1_*sq;
348 double myZmax1=theBeamSpot->position().z()+nSigmasDeltaZ1_*sq;
353 myMatchEle->set1stLayerZRange(myZmin1,myZmax1);
354 myMatchPos->set1stLayerZRange(myZmin1,myZmax1);
356 if (!fromTrackerSeeds_)
359 std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> > elePixelHits
360 = myMatchEle->compatibleHits(clusterPos,vertexPos,
361 clusterEnergy,-1., tTopo, *theNavigationSchool) ;
362 GlobalPoint eleVertex(theBeamSpot->position().x(),theBeamSpot->position().y(),myMatchEle->getVertex()) ;
363 seedsFromRecHits(elePixelHits,dir,eleVertex,caloCluster,out,
false) ;
365 std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> > posPixelHits
366 = myMatchPos->compatibleHits(clusterPos,vertexPos,clusterEnergy,1.,tTopo, *theNavigationSchool) ;
367 GlobalPoint posVertex(theBeamSpot->position().x(),theBeamSpot->position().y(),myMatchPos->getVertex()) ;
368 seedsFromRecHits(posPixelHits,dir,posVertex,caloCluster,out,
true) ;
373 std::vector<SeedWithInfo> elePixelSeeds
374 = myMatchEle->compatibleSeeds(theInitialSeedColl,clusterPos,vertexPos,clusterEnergy,-1.) ;
375 seedsFromTrajectorySeeds(elePixelSeeds,caloCluster,hoe1,hoe2,out,
false) ;
377 std::vector<SeedWithInfo> posPixelSeeds
378 = myMatchPos->compatibleSeeds(theInitialSeedColl,clusterPos,vertexPos,clusterEnergy,1.) ;
379 seedsFromTrajectorySeeds(posPixelSeeds,caloCluster,hoe1,hoe2,out,
true) ;
386 myMatchEle->setUseRecoVertex(
true) ;
387 myMatchPos->setUseRecoVertex(
true) ;
389 const std::vector<reco::Vertex> * vtxCollection = theVertices.product() ;
390 std::vector<reco::Vertex>::const_iterator vtxIter ;
391 for (vtxIter = vtxCollection->begin(); vtxIter != vtxCollection->end() ; vtxIter++)
394 GlobalPoint vertexPos(vtxIter->position().x(),vtxIter->position().y(),vtxIter->position().z());
395 double myZmin1, myZmax1 ;
396 if (vertexPos.z()==theBeamSpot->position().z())
398 double sigmaZ=theBeamSpot->sigmaZ();
399 double sigmaZ0Error=theBeamSpot->sigmaZ0Error();
400 double sq=
sqrt(sigmaZ*sigmaZ+sigmaZ0Error*sigmaZ0Error);
401 myZmin1=theBeamSpot->position().z()-nSigmasDeltaZ1_*sq;
402 myZmax1=theBeamSpot->position().z()+nSigmasDeltaZ1_*sq;
406 myZmin1=vtxIter->position().z()-deltaZ1WithVertex_;
407 myZmax1=vtxIter->position().z()+deltaZ1WithVertex_;
410 myMatchEle->set1stLayerZRange(myZmin1,myZmax1);
411 myMatchPos->set1stLayerZRange(myZmin1,myZmax1);
413 if (!fromTrackerSeeds_)
416 std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> > elePixelHits
417 = myMatchEle->compatibleHits(clusterPos,vertexPos,clusterEnergy,-1.,tTopo, *theNavigationSchool) ;
418 seedsFromRecHits(elePixelHits,dir,vertexPos,caloCluster,out,
false) ;
420 std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> > posPixelHits
421 = myMatchPos->compatibleHits(clusterPos,vertexPos,clusterEnergy,1.,tTopo, *theNavigationSchool) ;
422 seedsFromRecHits(posPixelHits,dir,vertexPos,caloCluster,out,
true) ;
427 std::vector<SeedWithInfo> elePixelSeeds
428 = myMatchEle->compatibleSeeds(theInitialSeedColl,clusterPos,vertexPos,clusterEnergy,-1.) ;
429 seedsFromTrajectorySeeds(elePixelSeeds,caloCluster,hoe1,hoe2,out,
false) ;
431 std::vector<SeedWithInfo> posPixelSeeds
432 = myMatchPos->compatibleSeeds(theInitialSeedColl,clusterPos,vertexPos,clusterEnergy,1.) ;
433 seedsFromTrajectorySeeds(posPixelSeeds,caloCluster,hoe1,hoe2,out,
true) ;
442 ( std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> > & pixelHits,
448 if (!pixelHits.empty())
449 {
LogDebug(
"ElectronSeedGenerator") <<
"Compatible "<<(positron?
"positron":
"electron")<<
" hits found." ; }
451 std::vector<std::pair<RecHitWithDist,ConstRecHitPointer> >::iterator
v ;
452 for ( v = pixelHits.begin() ; v != pixelHits.end() ; v++ )
455 { (*v).first.invert() ; }
456 if (!prepareElTrackSeed((*v).first.recHit(),(*v).second,vertexPos))
460 addSeed(seed,0,positron,out) ;
465 (
const std::vector<SeedWithInfo> & pixelSeeds,
467 float hoe1,
float hoe2,
471 if (!pixelSeeds.empty())
472 {
LogDebug(
"ElectronSeedGenerator") <<
"Compatible "<<(positron?
"positron":
"electron")<<
" seeds found." ; }
474 std::vector<SeedWithInfo>::const_iterator
s;
475 for ( s = pixelSeeds.begin() ; s != pixelSeeds.end() ; s++ )
478 seed.setCaloCluster(cluster,s->hitsMask(),s->subDet2(),s->subDet1(),hoe1,hoe2) ;
479 addSeed(
seed,&*s,positron,out) ;
490 { out.emplace_back(seed) ;
return ; }
496 reco::ElectronSeedCollection::iterator resItr ;
497 for ( resItr=out.begin() ; resItr!=out.end() ; ++resItr )
500 (seed.
hitsMask()==resItr->hitsMask()) &&
509 seed.
setNegAttributes(resItr->dRz2(),resItr->dPhi2(),resItr->dRz1(),resItr->dPhi1()) ;
516 if ( resItr->dRz2Pos()!=seed.
dRz2Pos() )
519 <<
"this similar old seed already has another dRz2Pos"
520 <<
"\nold seed mask/dRz2/dPhi2/dRz2Pos/dPhi2Pos: "<<(
unsigned int)resItr->hitsMask()<<
"/"<<resItr->dRz2()<<
"/"<<resItr->dPhi2()<<
"/"<<resItr->dRz2Pos()<<
"/"<<resItr->dPhi2Pos()
521 <<
"\nnew seed mask/dRz2/dPhi2/dRz2Pos/dPhi2Pos: "<<(
unsigned int)seed.
hitsMask()<<
"/"<<seed.
dRz2()<<
"/"<<seed.
dPhi2()<<
"/"<<seed.
dRz2Pos()<<
"/"<<seed.
dPhi2Pos() ;
546 seed.
setPosAttributes(resItr->dRz2Pos(),resItr->dPhi2Pos(),resItr->dRz1Pos(),resItr->dPhi1Pos()) ;
553 if (resItr->dRz2()!=seed.
dRz2())
556 <<
"this old seed already has another dRz2"
557 <<
"\nold seed mask/dRz2/dPhi2/dRz2Pos/dPhi2Pos: "<<(
unsigned int)resItr->hitsMask()<<
"/"<<resItr->dRz2()<<
"/"<<resItr->dPhi2()<<
"/"<<resItr->dRz2Pos()<<
"/"<<resItr->dPhi2Pos()
558 <<
"\nnew seed mask/dRz2/dPhi2/dRz2Pos/dPhi2Pos: "<<(
unsigned int)seed.
hitsMask()<<
"/"<<seed.
dRz2()<<
"/"<<seed.
dPhi2()<<
"/"<<seed.
dRz2Pos()<<
"/"<<seed.
dPhi2Pos() ;
581 out.emplace_back(seed) ;
591 LogDebug(
"") <<
"[ElectronSeedGenerator::prepareElTrackSeed] inner PixelHit x,y,z "<<innerhit->globalPosition();
592 LogDebug(
"") <<
"[ElectronSeedGenerator::prepareElTrackSeed] outer PixelHit x,y,z "<<outerhit->globalPosition();
601 recHits_.push_back(pixhit);
603 constpixhit = dynamic_cast <
const SiPixelRecHit *> (outerhit->hit());
606 recHits_.push_back(pixhit);
611 recHits_.push_back(striphit);
620 float nomField = bfield->nominalValue();
623 FastHelix helix(outerhit->globalPosition(),innerhit->globalPosition(),vertexPos,nomField,&*bfield);
624 if ( !helix.isValid()) {
628 TSOS propagatedState = thePropagator->propagate(fts,innerhit->det()->surface()) ;
629 if (!propagatedState.isValid())
631 TSOS updatedState = theUpdator->update(propagatedState, *innerhit);
633 TSOS propagatedState_out = thePropagator->propagate(updatedState,outerhit->det()->
surface()) ;
634 if (!propagatedState_out.
isValid())
636 TSOS updatedState_out = theUpdator->update(propagatedState_out, *outerhit);
PropagationDirection direction() const
void setCaloCluster(const CaloClusterRef &, unsigned char hitsMask=0, int subDet2=0, int subDet1=0, float hoe1=std::numeric_limits< float >::infinity(), float hoe2=std::numeric_limits< float >::infinity())
T getParameter(std::string const &) const
unsigned long long cacheIdentifier() const
unsigned long long cacheIDNavSchool_
PixelHitMatcher * myMatchEle
void setupES(const edm::EventSetup &setup)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
LocalPoint position() const
Local x and y position coordinates.
TransientTrackingRecHit::ConstRecHitPointer ConstRecHitPointer
void setES(const MagneticField *, const MeasurementTracker *theMeasurementTracker, const TrackerGeometry *trackerGeometry)
const NavigationSchool * theNavigationSchool
GlobalPoint globalPosition() const
const CaloClusterRef & caloCluster() const
unsigned long long cacheIDMagField_
void run(edm::Event &, const edm::EventSetup &setup, const reco::SuperClusterRefVector &, const std::vector< float > &hoe1s, const std::vector< float > &hoe2s, TrajectorySeedCollection *seeds, reco::ElectronSeedCollection &)
unsigned long long cacheIDTrkGeom_
const SurfaceType & surface() const
edm::ESHandle< TrackerGeometry > theTrackerGeometry
void seedsFromThisCluster(edm::Ref< reco::SuperClusterCollection > seedCluster, float hoe1, float hoe2, reco::ElectronSeedCollection &out, const TrackerTopology *tTopo)
std::vector< TrajectorySeed > TrajectorySeedCollection
recHitContainer::const_iterator const_iterator
std::pair< const_iterator, const_iterator > range
void setNegAttributes(float dRz2=std::numeric_limits< float >::infinity(), float dPhi2=std::numeric_limits< float >::infinity(), float dRz1=std::numeric_limits< float >::infinity(), float dPhi1=std::numeric_limits< float >::infinity())
unsigned int detId() const
PropagatorWithMaterial * thePropagator
LocalVector momentum() const
Momentum vector in the local frame.
std::vector< ElectronSeed > ElectronSeedCollection
collection of ElectronSeed objects
PixelHitMatcher * myMatchPos
void seedsFromRecHits(std::vector< std::pair< RecHitWithDist, ConstRecHitPointer > > &elePixelHits, PropagationDirection &dir, const GlobalPoint &vertexPos, const reco::ElectronSeed::CaloClusterRef &cluster, reco::ElectronSeedCollection &out, bool positron)
bool prepareElTrackSeed(ConstRecHitPointer outerhit, ConstRecHitPointer innerhit, const GlobalPoint &vertexPos)
TrajectoryStateOnSurface TSOS
PTrajectoryStateOnDet const & startingState() const
void addSeed(reco::ElectronSeed &seed, const SeedWithInfo *info, bool positron, reco::ElectronSeedCollection &out)
T const * product() const
ElectronSeedGenerator(const edm::ParameterSet &, const Tokens &)
void ele_convert(const Type1 &obj1, Type2 &obj2)
TrackCharge charge() const
Charge (-1, 0 or 1)
edm::ESHandle< MagneticField > theMagField
return(e1-e2)*(e1-e2)+dp *dp
bool equivalent(const TrajectorySeed &s1, const TrajectorySeed &s2)
unsigned int nHits() const
char data[epos_bytes_allocation]
GlobalVector globalMomentum() const
void display_seed(const std::string &title1, const std::string &title2, const reco::ElectronSeed &seed, edm::ESHandle< TrackerGeometry > trackerGeometry)
const MeasurementTracker * theMeasurementTracker
size_type size() const
Size of the RefVector.
volatile std::atomic< bool > shutdown_flag false
void setPosAttributes(float dRz2=std::numeric_limits< float >::infinity(), float dPhi2=std::numeric_limits< float >::infinity(), float dRz1=std::numeric_limits< float >::infinity(), float dPhi1=std::numeric_limits< float >::infinity())
void seedsFromTrajectorySeeds(const std::vector< SeedWithInfo > &elePixelSeeds, const reco::ElectronSeed::CaloClusterRef &cluster, float hoe1, float hoe2, reco::ElectronSeedCollection &out, bool positron)
std::string theMeasurementTrackerName
const LocalTrajectoryParameters & parameters() const
unsigned char hitsMask() const
unsigned long long cacheIDCkfComp_