/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DPGAnalysis/SiStripTools/interface/EventShape.h
23 строки
661 B
Cms Build
Clang-Format
31 май 2019, 14:09
31 май 2019, 14:09
c029a52
Код
Авторство
О чём код?
#include <DataFormats/TrackReco/interface/TrackFwd.h> #include <DataFormats/Math/interface/LorentzVectorFwd.h> #include <TVector3.h> #include <vector> class EventShape { public: static math::XYZTLorentzVectorF thrust(const reco::TrackCollection&); static float sphericity(const reco::TrackCollection&); static float aplanarity(const reco::TrackCollection&); static float planarity(const reco::TrackCollection&); EventShape(reco::TrackCollection&); math::XYZTLorentzVectorF thrust() const; float sphericity() const; float aplanarity() const; float planarity() const; private: std::vector<TVector3> p; std::vector<float> eigenvalues; };