/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/ParticleFlow/interface/PFClusterWidthAlgo.h
24 строки
676 B
Jonas Rembser
Move PFClusterWidthAlgo to CommonTools/ParticleFlow
18 апр 2021, 12:14
18 апр 2021, 12:14
45f5bec
Код
Авторство
О чём код?
#ifndef CommonTools_ParticleFlow_PFClusterWidthAlgo_H #define CommonTools_ParticleFlow_PFClusterWidthAlgo_H #include "DataFormats/ParticleFlowReco/interface/PFCluster.h" #include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h" class PFClusterWidthAlgo { public: //constructor PFClusterWidthAlgo(const std::vector<const reco::PFCluster*>& pfclust); //destructor ~PFClusterWidthAlgo(); inline double pflowPhiWidth() const { return phiWidth_; } inline double pflowEtaWidth() const { return etaWidth_; } inline double pflowSigmaEtaEta() const { return sigmaEtaEta_; } private: double phiWidth_; double etaWidth_; double sigmaEtaEta_; }; #endif