/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoParticleFlow/PFClusterTools/interface/LinkByRecHit.h
32 строки
1 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef RecoParticleFlow_PFClusterTools_LinkByRecHit_h #define RecoParticleFlow_PFClusterTools_LinkByRecHit_h #include "DataFormats/ParticleFlowReco/interface/PFCluster.h" #include "DataFormats/ParticleFlowReco/interface/PFRecTrack.h" class LinkByRecHit { public: LinkByRecHit() {} ~LinkByRecHit() {} /// computes a chisquare static double computeDist(double eta1, double phi1, double eta2, double phi2, bool etaPhi = true); //tests association between a track and a cluster by rechit static double testTrackAndClusterByRecHit(const reco::PFRecTrack& track, const reco::PFCluster& cluster, bool isBrem = false, bool debug = false); //tests association between ECAL and PS clusters by rechit static double testECALAndPSByRecHit(const reco::PFCluster& clusterECAL, const reco::PFCluster& clusterPS, bool debug = false); /// test association between HFEM and HFHAD, by rechit static double testHFEMAndHFHADByRecHit(const reco::PFCluster& clusterHFEM, const reco::PFCluster& clusterHFHAD, bool debug = false); }; #endif