/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/CastorReco/src/CastorCluster.cc
28 строк
1 KB
Cms Build
Clang-Format
03 июн 2019, 06:54
03 июн 2019, 06:54
48df110
Код
Авторство
О чём код?
#include "DataFormats/CastorReco/interface/CastorCluster.h" reco::CastorCluster::CastorCluster(const double energy, const ROOT::Math::XYZPoint& position, const double emEnergy, const double hadEnergy, const double fem, const double width, const double depth, const double fhot, const double sigmaz, const reco::CastorTowerRefVector& usedTowers) { position_ = position; energy_ = energy; emEnergy_ = emEnergy; hadEnergy_ = hadEnergy; fem_ = fem; width_ = width; depth_ = depth; fhot_ = fhot; sigmaz_ = sigmaz; for (reco::CastorTowerRefVector::const_iterator towerit = usedTowers.begin(); towerit != usedTowers.end(); ++towerit) { usedTowers_.push_back((*towerit)); } } reco::CastorCluster::~CastorCluster() {}