29 displacedVertexCandidates_(
nullptr),
33 primaryVertexCut_(0.0),
46 if (displacedVertexCandidates.
isValid()){
60 if (
debug_)
cout <<
"========= Start Find Displaced Vertices =========" << endl;
69 edm::LogInfo(
"EmptyVertexInput")<<
"displacedVertexCandidates are not set or the setInput was called with invalid vertex";
80 cout <<
"1) Parsing displacedVertexCandidates into displacedVertexSeeds" << endl;
91 cout <<
"Analyse Vertex Candidate " << i << endl;
98 if (
debug_)
cout <<
"2) Merging Vertex Seeds" << endl;
103 vector<bool> bLockedSeeds;
104 bLockedSeeds.resize(tempDisplacedVertexSeeds.size());
105 mergeSeeds(tempDisplacedVertexSeeds, bLockedSeeds);
107 if (
debug_)
cout <<
"3) Fitting Vertices From Seeds" << endl;
110 for(
unsigned idv = 0; idv < tempDisplacedVertexSeeds.size(); idv++){
112 if (!tempDisplacedVertexSeeds[idv].isEmpty() && !bLockedSeeds[idv]) {
114 bLockedSeeds[idv] =
fitVertexFromSeed(tempDisplacedVertexSeeds[idv], displacedVertex);
115 if (!bLockedSeeds[idv]) tempDisplacedVertices.emplace_back(displacedVertex);
119 if (
debug_)
cout <<
"4) Rejecting Bad Vertices and label them" << endl;
122 vector<bool> bLocked;
123 bLocked.resize(tempDisplacedVertices.size());
126 if (
debug_)
cout <<
"5) Fill the Displaced Vertices" << endl;
131 for(
unsigned idv = 0; idv < tempDisplacedVertices.size(); idv++)
134 if (
debug_)
cout <<
"========= End Find Displaced Vertices =========" << endl;
146 bool bNeedNewCandidate =
false;
152 for (PFDisplacedVertexCandidate::DistMap::const_iterator imap = r2Map.begin();
153 imap != r2Map.end(); imap++){
155 unsigned ie1 = (*imap).second.first;
156 unsigned ie2 = (*imap).second.second;
158 if (
debug_)
cout <<
"ie1 = " << ie1 <<
" ie2 = " << ie2 <<
" radius = " <<
sqrt((*imap).first) << endl;
161 if (fabs(dcaPoint.
x()) > 1e9)
continue;
163 bNeedNewCandidate =
true;
164 for (idvc_current = tempDisplacedVertexSeeds.begin(); idvc_current != tempDisplacedVertexSeeds.end(); idvc_current++){
165 if ((*idvc_current).isEmpty()) {
166 bNeedNewCandidate =
false;
169 const GlobalPoint vertexPoint = (*idvc_current).seedPoint();
173 bNeedNewCandidate =
false;
176 if (bNeedNewCandidate) {
177 if (
debug_)
cout <<
"create new displaced vertex" << endl;
179 idvc_current = tempDisplacedVertexSeeds.end();
185 (*idvc_current).updateSeedPoint(dcaPoint, vertexCandidate.
tref(ie1), vertexCandidate.
tref(ie2));
202 for(
unsigned idv_mother = 0;idv_mother < tempDisplacedVertexSeeds.size(); idv_mother++){
203 if (!bLocked[idv_mother]){
205 for (
unsigned idv_daughter = idv_mother+1;idv_daughter < tempDisplacedVertexSeeds.size(); idv_daughter++){
207 if (!bLocked[idv_daughter]){
208 if (
isCloseTo(tempDisplacedVertexSeeds[idv_mother], tempDisplacedVertexSeeds[idv_daughter])) {
210 tempDisplacedVertexSeeds[idv_mother].mergeWith(tempDisplacedVertexSeeds[idv_daughter]);
211 bLocked[idv_daughter] =
true;
212 if (
debug_)
cout <<
"Seeds " << idv_mother <<
" and " << idv_daughter <<
" merged" << endl;
232 if (
debug_)
cout <<
"== Start vertexing procedure ==" << endl;
237 auto const& tracksToFit = displacedVertexSeed.
elements();
240 vector<TransientTrack> transTracks;
241 vector<TransientTrack> transTracksRaw;
242 vector<TrackBaseRef> transTracksRef;
244 transTracks.reserve(tracksToFit.size());
245 transTracksRaw.reserve(tracksToFit.size());
246 transTracksRef.reserve(tracksToFit.size());
257 if (tracksToFit.size() < 2) {
258 if (
debug_)
cout <<
"Only one to Fit Track" << endl;
262 double rho =
sqrt(seedPoint.
x()*seedPoint.
x()+seedPoint.
y()*seedPoint.
y());
263 double z = seedPoint.
z();
266 if (
debug_)
cout <<
"Seed Point out of the tracker rho = " << rho <<
" z = "<< z <<
" nTracks = " << tracksToFit.size() << endl;
273 int nNotIterative = 0;
276 for(
auto const& ie : tracksToFit){
278 transTracksRaw.emplace_back( tmpTk );
293 if (rho > 25 && nStep45 + nNotIterative < 1){
294 if (
debug_)
cout <<
"Seed point at rho > 25 cm but no step 4-5 tracks" << endl;
307 if ( transTracksRaw.size() == 2 ){
309 if (
debug_)
cout <<
"No raw fit done" << endl;
312 cout <<
"Due to probably high pile-up conditions 2 track vertices switched off" << endl;
318 theVertexAdaptiveRaw =
TransientVertex(seedPoint, globalError, transTracksRaw, 1.);
334 if (transTracksRaw.size() == 3){
336 theVertexAdaptiveRaw = theAdaptiveFitterRaw.
vertex(transTracksRaw, seedPoint);
339 else if ( transTracksRaw.size() < 1000){
343 if (
debug_)
cout <<
"First test with KFT" << endl;
346 theVertexAdaptiveRaw = theKalmanFitter.
vertex(transTracksRaw, seedPoint);
354 if (
debug_)
cout <<
"We use KFT instead of seed point to set up a point for AVF " 355 <<
" x = " << theVertexAdaptiveRaw.
position().
x()
356 <<
" y = " << theVertexAdaptiveRaw.
position().
y()
357 <<
" z = " << theVertexAdaptiveRaw.
position().
z()
368 if (rho < primaryVertexCut_ || rho > 100) {
369 if (
debug_)
cout <<
"KFT Vertex geometrically rejected with tracks #rho = " << rho << endl;
375 theVertexAdaptiveRaw = theAdaptiveFitterRaw.
vertex(transTracksRaw, theVertexAdaptiveRaw.
position());
379 edm::LogWarning(
"TooManyPFDVCandidates")<<
"gave up vertex reco for "<< transTracksRaw.size() <<
" tracks";
395 if (
debug_)
cout <<
"Vertex " <<
" geometrically rejected with " << transTracksRaw.size() <<
" tracks #rho = " << rho << endl;
410 for (
unsigned i = 0;
i < transTracksRaw.size();
i++) {
412 if (
debug_)
cout <<
"Raw Weight track " <<
i <<
" = " << theVertexAdaptiveRaw.
trackWeight(transTracksRaw[
i]) << endl;
420 if (vertexTrackType != PFDisplacedVertex::T_NOT_FROM_VERTEX){
425 transTracks.push_back(transTracksRaw[i]);
426 transTracksRef.push_back(tracksToFit[i]);
429 cout <<
"Track rejected nChi2 = " << transTracksRaw[
i].track().normalizedChi2()
430 <<
" pt = " << transTracksRaw[
i].track().pt()
431 <<
" dxy (wrt (0,0,0)) = " << transTracksRaw[
i].track().dxy()
432 <<
" nHits = " << transTracksRaw[
i].track().numberOfValidHits()
433 <<
" nOuterHits = " << transTracksRaw[
i].track().hitPattern().numberOfLostHits(HitPattern::MISSING_OUTER_HITS) << endl;
438 cout <<
"Remove track because too far away from the vertex:" << endl;
449 if (
debug_)
cout <<
"All Tracks " << transTracksRaw.size()
450 <<
" with good weight " << transTracks.size() << endl;
456 if (transTracks.size() < 2)
return true;
457 else if (transTracks.size() == 2){
461 cout <<
"Due to probably high pile-up conditions 2 track vertices switched off" << endl;
466 else if (transTracks.size() > 2 && transTracksRaw.size() > transTracks.size())
468 else if (transTracks.size() > 2 && transTracksRaw.size() == transTracks.size())
472 if (
debug_)
cout <<
"Vertex Fitter " << vtxFitter << endl;
477 theRecoVertex = theKalmanFitter.
vertex(transTracks, seedPoint);
488 theRecoVertex = theAdaptiveFitter.
vertex(transTracks, seedPoint);
491 theRecoVertex = theVertexAdaptiveRaw;
507 Vertex theRecoVtx = theRecoVertex;
510 double ndf = theRecoVtx.
ndof();
513 if (chi2 > TMath::ChisquareQuantile(0.95, ndf)) {
515 cout <<
"Rejected because of chi2 = " << chi2 <<
" ndf = " << ndf <<
" confid. level: " << TMath::ChisquareQuantile(0.95, ndf) << endl;
528 displacedVertex = theRecoVtx;
531 for(
unsigned i = 0;
i < transTracks.size();
i++) {
550 cout <<
"Vertex Track Type = " << vertexTrackType << endl;
552 cout <<
"nHitBeforeVertex = " << pattern.first.first
553 <<
" nHitAfterVertex = " << pattern.second.first
554 <<
" nMissHitBeforeVertex = " << pattern.first.second
555 <<
" nMissHitAfterVertex = " << pattern.second.second
556 <<
" Weight = " << weight << endl;
561 pattern, vertexTrackType, weight);
570 if (
debug_)
cout <<
"== End vertexing procedure ==" << endl;
584 if (
debug_)
cout <<
" 4.1) Reject vertices " << endl;
586 for(
unsigned idv = 0; idv < tempDisplacedVertices.size(); idv++){
593 const float rho = tempDisplacedVertices[idv].position().rho();
594 const float z = tempDisplacedVertices[idv].position().z();
598 <<
" geometrically rejected #rho = " << rho
599 <<
" z = " << z << endl;
606 unsigned nPrimary = tempDisplacedVertices[idv].nPrimaryTracks();
607 unsigned nMerged = tempDisplacedVertices[idv].nMergedTracks();
608 unsigned nSecondary = tempDisplacedVertices[idv].nSecondaryTracks();
610 if (nPrimary + nMerged > 1) {
613 <<
" rejected because two primary or merged tracks" << endl;
618 if (nPrimary + nMerged + nSecondary < 2){
621 <<
" rejected because only one track related to the vertex" << endl;
628 if (
debug_)
cout <<
" 4.2) Check for common vertices" << endl;
633 for(
unsigned idv_mother = 0; idv_mother < tempDisplacedVertices.size(); idv_mother++){
634 for(
unsigned idv_daughter = idv_mother+1;
635 idv_daughter < tempDisplacedVertices.size(); idv_daughter++){
637 if(!bLocked[idv_daughter] && !bLocked[idv_mother]){
639 const unsigned commonTrks =
commonTracks(tempDisplacedVertices[idv_daughter], tempDisplacedVertices[idv_mother]);
641 if (commonTrks > 1) {
643 if (
debug_)
cout <<
"Vertices " << idv_daughter <<
" and " << idv_mother
644 <<
" has many common tracks" << endl;
648 const int mother_size = tempDisplacedVertices[idv_mother].nTracks();
649 const int daughter_size = tempDisplacedVertices[idv_daughter].nTracks();
651 if (mother_size > daughter_size) bLocked[idv_daughter] =
true;
652 else if (mother_size < daughter_size) bLocked[idv_mother] =
true;
657 const float mother_normChi2 = tempDisplacedVertices[idv_mother].normalizedChi2();
658 const float daughter_normChi2 = tempDisplacedVertices[idv_daughter].normalizedChi2();
659 if (mother_normChi2 < daughter_normChi2) bLocked[idv_daughter] =
true;
660 else bLocked[idv_mother] =
true;
668 for(
unsigned idv = 0; idv < tempDisplacedVertices.size(); idv++)
694 if (diffs.second >
longSize_)
return false;
703 std::pair<float,float>
708 float vRefMag2 = vRef.
mag2();
709 float oneOverMag = 1.0f/
sqrt(vRefMag2);
711 return std::make_pair(fabs(vRef.cross(vToProject).mag()*oneOverMag),fabs((vRef.dot(vToProject)-vRefMag2)*oneOverMag));
718 unsigned int nHitBeforeVertex = pairTrackHitInfo.first.first;
719 unsigned int nHitAfterVertex = pairTrackHitInfo.second.first;
721 unsigned int nMissHitBeforeVertex = pairTrackHitInfo.first.second;
722 unsigned int nMissHitAfterVertex = pairTrackHitInfo.second.second;
726 if (nHitBeforeVertex <= 1 && nHitAfterVertex >= 3 && nMissHitAfterVertex <= 1)
727 return PFDisplacedVertex::T_FROM_VERTEX;
728 else if (nHitBeforeVertex >= 3 && nHitAfterVertex <= 1 && nMissHitBeforeVertex <= 1)
729 return PFDisplacedVertex::T_TO_VERTEX;
730 else if ((nHitBeforeVertex >= 2 && nHitAfterVertex >= 3)
732 (nHitBeforeVertex >= 3 && nHitAfterVertex >= 2))
733 return PFDisplacedVertex::T_MERGED;
735 return PFDisplacedVertex::T_NOT_FROM_VERTEX;
746 for (
unsigned il1 = 0; il1 < vt1.size(); il1++){
749 for (
unsigned il2 = 0; il2 < vt2.size(); il2++)
760 if(! out)
return out;
761 out << setprecision(3) << setw(5) << endl;
763 out <<
" ====================================== " << endl;
764 out <<
" ====== Displaced Vertex Finder ======= " << endl;
765 out <<
" ====================================== " << endl;
770 <<
" Adaptive Vertex Fitter parameters are :"<< endl
771 <<
" sigmacut = " << a.
sigmacut_ <<
" T_ini = " 778 if(!displacedVertices_.get() ) {
779 out<<
"displacedVertex already transfered"<<endl;
783 out<<
"Number of displacedVertices found : "<< displacedVertices_->size()<<endl<<endl;
788 idv != displacedVertices_->end(); idv++){
790 out << i <<
" "; idv->Dump(); out <<
"" << endl;
std::vector< PFDisplacedVertex > PFDisplacedVertexCollection
collection of PFDisplacedVertex objects
edm::Ref< Container > Ref
A block of tracks linked together.
void setPrimaryDirection(const math::XYZPoint &pvtx)
reco::PFDisplacedVertexSeedCollection::iterator IDVS
-----— Useful Types -----— ///
TrackBaseRef originalTrack(const Track &refTrack) const
edm::ESHandle< GlobalTrackingGeometry > globTkGeomHandle_
Tracker geometry for discerning hit positions.
const TrackerTopology * tkerTopo_
doc?
float totalChiSquared() const
void Dump(std::ostream &out=std::cout) const
bool fitVertexFromSeed(const reco::PFDisplacedVertexSeed &, reco::PFDisplacedVertex &)
Fit one by one the vertex points with associated tracks to get displaced vertices.
bool rejectAndLabelVertex(reco::PFDisplacedVertex &dv)
CachingVertex< 5 > vertex(const std::vector< reco::TransientTrack > &) const override
std::map< float, std::pair< int, int > > DistMap
const std::vector< Track > & refittedTracks() const
Returns the container of refitted tracks.
void findDisplacedVertices()
-----— Main function which find vertices -----— ///
bool debug_
If true, debug printouts activated.
const Point & position() const
position
std::pair< PFTrackHitInfo, PFTrackHitInfo > PFTrackHitFullInfo
unsigned commonTracks(const reco::PFDisplacedVertex &, const reco::PFDisplacedVertex &) const
void mergeSeeds(reco::PFDisplacedVertexSeedCollection &, std::vector< bool > &bLocked)
Sometimes two vertex candidates can be quite close and coming from the same vertex.
reco::TransientTrack refittedTrack(const reco::TransientTrack &track) const
~PFDisplacedVertexFinder()
void Dump(std::ostream &out=std::cout) const
cout function
bool switchOff2TrackVertex_
PFDisplacedVertexFinder()
void addElement(const TrackBaseRef &r, const Track &refTrack, const PFTrackHitFullInfo &hitInfo, VertexTrackType trackType=T_NOT_FROM_VERTEX, float w=1.0)
Add a new track to the vertex.
bool isTrackSelected(const reco::Track &trk, const reco::PFDisplacedVertex::VertexTrackType vertexTrackType) const
Select tracks tool.
PFTrackHitFullInfo analyze(const TrackerTopology *tkerTopo, const TrackerGeometry *tkerGeom, const reco::TrackBaseRef track, const TransientVertex &vert)
const TrackBaseRef & tref(unsigned ie) const
void setVertexType(VertexType vertexType)
Set the type of this vertex.
const GlobalPoint dcaPoint(unsigned ie1, unsigned ie2) const
std::vector< PFDisplacedVertexSeed > PFDisplacedVertexSeedCollection
collection of PFDisplacedVertexSeed objects
reco::PFDisplacedVertexCandidateCollection const * displacedVertexCandidates_
-----— Members -----— ///
reco::PFDisplacedVertex::VertexType identifyVertex(const reco::PFDisplacedVertex &v) const
Vertex identification tool.
GlobalPoint position() const
void findSeedsFromCandidate(const reco::PFDisplacedVertexCandidate &, reco::PFDisplacedVertexSeedCollection &)
--—— Different steps of the finder algorithm --—— ///
void selectAndLabelVertices(reco::PFDisplacedVertexCollection &, std::vector< bool > &)
Remove potentially fakes displaced vertices.
const MagneticField * magField_
to be able to extrapolate tracks f
double chi2() const
chi-squares
friend std::ostream & operator<<(std::ostream &, const PFDisplacedVertexFinder &)
CachingVertex< 5 > vertex(const std::vector< reco::TransientTrack > &tracks) const override
DistMap r2Map() const
--—— Provide useful information --—— ///
std::unique_ptr< reco::PFDisplacedVertexCollection > displacedVertices_
void setInput(const edm::Handle< reco::PFDisplacedVertexCandidateCollection > &)
Set input collections of tracks.
float trackWeight(const reco::TransientTrack &track) const
std::pair< float, float > getTransvLongDiff(const GlobalPoint &, const GlobalPoint &) const
const GlobalPoint & seedPoint() const
T const * product() const
const Track & track() const
double sigmacut_
Adaptive Vertex Fitter parameters.
reco::PFDisplacedVertexCollection::iterator IDV
math::XYZPoint primaryVertex() const
Set Vertex direction using the primary vertex.
const std::unique_ptr< reco::PFDisplacedVertexCollection > & displacedVertices() const
float transvSize_
--—— Parameters --—— ///
const TrackerGeometry * tkerGeom_
bool isCloseTo(const reco::PFDisplacedVertexSeed &, const reco::PFDisplacedVertexSeed &) const
-----— Tools -----— ///
PFCheckHitPattern hitPattern_
const std::vector< TrackBaseRef > & elements() const
const BasicVectorType & basicVector() const
reco::PFDisplacedVertex::VertexTrackType getVertexTrackType(PFTrackHitFullInfo &) const
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
PFDisplacedVertexHelper helper_